Skip to main content

EditorState

Struct EditorState 

Source
pub struct EditorState { /* private fields */ }
Expand description

The complete editor state.

Implementations§

Source§

impl EditorState

Source

pub fn new(doc: Node, schema: Schema) -> Self

A fresh state for doc, caret at the document start.

Source

pub fn with_plugins(doc: Node, schema: Schema, plugins: PluginSet) -> Self

A fresh state pre-loaded with a PluginSet. Each plugin’s Plugin::init is called with the (partially-initialised) state, so plugins can derive their initial value from the doc.

Source

pub fn with_history(self, history: History) -> Self

Use a custom history depth.

Source

pub fn plugin<P: Plugin>(&self, _key: PluginKey<P>) -> Option<&P::State>

Borrow this state’s plugin value (returns None if no plugin of type P was registered when the state was built).

Source

pub fn doc(&self) -> &Node

The current document.

Source

pub fn selection(&self) -> Selection

The current selection.

Source

pub fn schema(&self) -> &Schema

The schema.

Source

pub fn history(&self) -> &History

Undoable / redoable depth.

Source

pub fn tr(&self) -> Transaction

Begin a transaction from the current state.

Source

pub fn apply(&self, tx: Transaction) -> EditorState

Apply tx, returning the next state. Selection is mapped through the transaction unless the transaction set one explicitly; a changing, history-tracked transaction records an undo group. Transactions carrying a HistoryIntent resolve to undo / redo on this state (and never push another history entry); if the stack is empty the current state is returned unchanged.

Source

pub fn undo(&self) -> Option<EditorState>

Undo the most recent group, or None if nothing to undo.

Source

pub fn redo(&self) -> Option<EditorState>

Redo the most recently undone group, or None.

Trait Implementations§

Source§

impl Clone for EditorState

Source§

fn clone(&self) -> EditorState

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for EditorState

Source§

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

Formats the value using the given formatter. 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> 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.