Struct freya::hooks::RopeEditor

source ·
pub struct RopeEditor { /* private fields */ }
Expand description

TextEditor implementing a Rope

Implementations§

source§

impl RopeEditor

source

pub fn new( text: String, cursor: TextCursor, mode: EditableMode, clipboard: UseClipboard, history: EditorHistory ) -> RopeEditor

source

pub fn rope(&self) -> &Rope

Trait Implementations§

source§

impl Display for RopeEditor

source§

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

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

impl TextEditor for RopeEditor

§

type LinesIterator<'a> = LinesIterator<'a>

source§

fn lines(&self) -> <RopeEditor as TextEditor>::LinesIterator<'_>

Iterator over all the lines in the text.
source§

fn insert_char(&mut self, char: char, idx: usize)

Insert a character in the text in the given position.
source§

fn insert(&mut self, text: &str, idx: usize)

Insert a string in the text in the given position.
source§

fn remove(&mut self, range: Range<usize>)

Remove a part of the text.
source§

fn char_to_line(&self, char_idx: usize) -> usize

Get line from the given char
source§

fn line_to_char(&self, line_idx: usize) -> usize

Get the first char from the given line
source§

fn line(&self, line_idx: usize) -> Option<Line<'_>>

Get a line from the text
source§

fn len_lines<'a>(&self) -> usize

Total of lines
source§

fn cursor(&self) -> &TextCursor

Get a readable cursor
source§

fn cursor_mut(&mut self) -> &mut TextCursor

Get a mutable cursor
source§

fn move_highlight_to_cursor(&mut self)

source§

fn get_clipboard(&mut self) -> &mut UseClipboard

source§

fn has_any_highlight(&self) -> bool

source§

fn highlights(&self, editor_id: usize) -> Option<(usize, usize)>

source§

fn set(&mut self, text: &str)

source§

fn unhighlight(&mut self)

source§

fn highlight_text(&mut self, from: usize, to: usize, editor_id: usize)

source§

fn get_selected_text(&self) -> Option<String>

source§

fn get_selection(&self) -> Option<(usize, usize)>

source§

fn undo(&mut self) -> Option<usize>

source§

fn redo(&mut self) -> Option<usize>

source§

fn cursor_row(&self) -> usize

Get the cursor row
source§

fn cursor_col(&self) -> usize

Get the cursor column
source§

fn cursor_down(&mut self)

Move the cursor 1 line down
source§

fn cursor_up(&mut self)

Move the cursor 1 line up
source§

fn cursor_right(&mut self)

Move the cursor 1 char to the right
source§

fn cursor_left(&mut self)

Move the cursor 1 char to the left
source§

fn cursor_pos(&self) -> usize

Get the cursor position
source§

fn set_cursor_pos(&mut self, pos: usize)

Set the cursor position
source§

fn process_key( &mut self, key: &Key, code: &Code, modifiers: &Modifiers ) -> TextEvent

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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.
§

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> Same for T

§

type Output = T

Should always be Self
source§

impl<T, O> SuperFrom<T> for O
where O: From<T>,

source§

fn super_from(input: T) -> O

Convert from a type to another type.
source§

impl<T, O, M> SuperInto<O, M> for T
where O: SuperFrom<T, M>,

source§

fn super_into(self) -> O

Convert from a type to another type.
source§

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

source§

fn to<T>(self) -> T
where Self: Into<T>,

Converts to T by calling Into<T>::into.
source§

fn try_to<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,

Tries to convert to T by calling TryInto<T>::try_into.
source§

impl<T> ToSmolStr for T
where T: Display + ?Sized,

source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

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

§

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>,

§

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<Cfg> TryIntoConfig for Cfg

source§

fn into_config(self) -> Option<Cfg>

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more