Skip to main content

UndoRedoManager

Struct UndoRedoManager 

Source
pub struct UndoRedoManager {
    pub node_stacks: Vec<NodeUndoRedoStack>,
}
Expand description

Manager for undo/redo operations across all text nodes

Fields§

§node_stacks: Vec<NodeUndoRedoStack>

Per-node undo/redo stacks Using Vec instead of HashMap for no_std compatibility

Implementations§

Source§

impl UndoRedoManager

Source

pub fn new() -> Self

Create a new empty undo/redo manager

Source

pub fn get_or_create_stack_mut( &mut self, node_id: NodeId, ) -> &mut NodeUndoRedoStack

Get or create a stack for a specific node

Source

pub fn get_stack(&self, node_id: NodeId) -> Option<&NodeUndoRedoStack>

Get a stack for a specific node (immutable)

Source

pub fn record_operation( &mut self, changeset: TextChangeset, pre_state: NodeStateSnapshot, )

Record a text operation (push to undo stack)

This should be called AFTER a changeset has been successfully applied. The pre_state should contain the node state BEFORE the changeset was applied.

§Arguments
  • changeset - The changeset that was applied
  • pre_state - Node state before the changeset
Source

pub fn can_undo(&self, node_id: NodeId) -> bool

Check if undo is available for a node

Source

pub fn can_redo(&self, node_id: NodeId) -> bool

Check if redo is available for a node

Source

pub fn peek_undo(&self, node_id: NodeId) -> Option<&UndoableOperation>

Peek at the next undo operation for a node (without removing it)

This allows user callbacks to inspect what would be undone.

Source

pub fn peek_redo(&self, node_id: NodeId) -> Option<&UndoableOperation>

Peek at the next redo operation for a node (without removing it)

This allows user callbacks to inspect what would be redone.

Source

pub fn pop_undo(&mut self, node_id: NodeId) -> Option<UndoableOperation>

Pop an operation from the undo stack

This should be called during undo processing to get the operation to revert. After reverting, the operation should be pushed to the redo stack.

§Returns
  • Some(operation) - The operation to undo
  • None - No undo history available
Source

pub fn pop_redo(&mut self, node_id: NodeId) -> Option<UndoableOperation>

Pop an operation from the redo stack

This should be called during redo processing to get the operation to re-apply. After re-applying, the operation should be pushed to the undo stack.

§Returns
  • Some(operation) - The operation to redo
  • None - No redo history available
Source

pub fn push_redo(&mut self, operation: UndoableOperation)

Push an operation to the redo stack (after successful undo)

This should be called AFTER an undo operation has been successfully applied.

Source

pub fn push_undo(&mut self, operation: UndoableOperation)

Push an operation to the undo stack (after successful redo)

This should be called AFTER a redo operation has been successfully applied.

Source

pub fn clear_node(&mut self, node_id: NodeId)

Clear all undo/redo history for a specific node

Source

pub fn clear_all(&mut self)

Clear all undo/redo history for all nodes

Source

pub fn undo_depth(&self, node_id: NodeId) -> usize

Get the total number of operations in undo stack for a node

Source

pub fn redo_depth(&self, node_id: NodeId) -> usize

Get the total number of operations in redo stack for a node

Trait Implementations§

Source§

impl Clone for UndoRedoManager

Source§

fn clone(&self) -> UndoRedoManager

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for UndoRedoManager

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for UndoRedoManager

Source§

fn default() -> UndoRedoManager

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<G1, G2> Within<G2> for G1
where G2: Contains<G1>,

Source§

fn is_within(&self, b: &G2) -> bool