Module zng::undo

source ·
Expand description

Undo service, commands and other types.

The UNDO service can be used to operate the contextual undo stack, you can also use the service to implement undo/redo for any variable using UNDO.watch_var. The UNDO_CMD and REDO_CMD commands can be used with undo_scoped to control the focused undo scope. The history::UndoHistory! widget visualizes the undo or redo stack of the focused undo scope. The example below demonstrates all of this together to define two widgets that undo and redo and shows the history in a drop-down.

use zng::prelude::*;

fn undo_combo(op: zng::undo::UndoOp) -> impl UiNode {
    let cmd = op.cmd().undo_scoped();

    Toggle! {
        style_fn = toggle::ComboStyle!();

        widget::enabled = cmd.flat_map(|c| c.is_enabled());

        child = Button! {
            child = widget::node::presenter((), cmd.flat_map(|c| c.icon()));
            child_right = Text!(cmd.flat_map(|c| c.name())), 4;
            tooltip = Tip!(Text!(cmd.flat_map(|c|c.name_with_shortcut())));
            on_click = hn!(|a: &gesture::ClickArgs| {
                a.propagation().stop();
                cmd.get().notify();
            });
        };

        checked_popup = wgt_fn!(|_| popup::Popup! {
            child = zng::undo::history::UndoHistory!(op);
        });
    }
}

Wrap! {
    spacing = 5;
    zng::focus::alt_focus_scope = true;
    children = ui_vec![
        undo_combo(zng::undo::UndoOp::Undo),
        undo_combo(zng::undo::UndoOp::Redo),
    ];
}

§Full API

See zng_ext_undo for the full undo API.

Modules§

Structs§

Enums§

  • Represents a full undo/redo action.
  • Represents an undo/redo action.

Statics§

Traits§

Functions§

  • P Enable or disable undo inside the widget.
  • P Sets the time interval that undo and redo cover each call for undo handlers in the widget and descendants.
  • P Sets the maximum length for undo/redo stacks in the widget and descendants.
  • P Sets if the widget is an undo scope.