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) -> Self

source

pub fn rope(&self) -> &Rope

Trait Implementations§

source§

impl Clone for RopeEditor

source§

fn clone(&self) -> RopeEditor

Returns a copy 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 Display for RopeEditor

source§

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

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

impl TextEditor for RopeEditor

§

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

source§

fn lines(&self) -> Self::LinesIterator<'_>

Iterator over all the lines in the text.
source§

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

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

fn insert(&mut self, text: &str, char_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 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 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 Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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.

§

impl<T> Instrument for T

§

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

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

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 Twhere 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.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

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

Initializes a with the given initializer. Read more
§

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

Dereferences the given pointer. Read more
§

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

Mutably dereferences the given pointer. Read more
§

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
§

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

§

fn super_from(input: T) -> O

Convert from a type to another type.
§

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

§

fn super_into(self) -> O

Convert from a type to another type.
source§

impl<T> ToOwned for Twhere T: Clone,

§

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> ToString for Twhere 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 Twhere 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 Twhere 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.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

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

impl<T> CloneAny for Twhere T: Any + Clone,