i_slint_core::window

Struct InputMethodProperties

Source
#[non_exhaustive]
pub struct InputMethodProperties { pub text: SharedString, pub cursor_position: usize, pub anchor_position: Option<usize>, pub preedit_text: SharedString, pub preedit_offset: usize, pub cursor_rect_origin: LogicalPosition, pub cursor_rect_size: LogicalSize, pub anchor_point: LogicalPosition, pub input_type: InputType, }
Expand description

This struct holds properties related to an input method.

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§text: SharedString

The text surrounding the cursor.

This field does not include pre-edit text or composition.

§cursor_position: usize

The position of the cursor in bytes within the text.

§anchor_position: Option<usize>

When there is a selection, this is the position of the second anchor for the beginning (or the end) of the selection.

§preedit_text: SharedString

The current value of the pre-edit text as known by the input method. This is the text currently being edited but not yet committed. When empty, there is no pre-edit text.

§preedit_offset: usize

When the preedit_text is not empty, this is the offset of the pre-edit within the text.

§cursor_rect_origin: LogicalPosition

The top-left corner of the cursor rectangle in window coordinates.

§cursor_rect_size: LogicalSize

The size of the cursor rectangle.

§anchor_point: LogicalPosition

The position of the anchor (bottom). Only meaningful if anchor_position is Some

§input_type: InputType

The type of input for the text edit.

Trait Implementations§

Source§

impl Clone for InputMethodProperties

Source§

fn clone(&self) -> InputMethodProperties

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 Debug for InputMethodProperties

Source§

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

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

impl Default for InputMethodProperties

Source§

fn default() -> InputMethodProperties

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, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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.