Struct wayland_protocols::unstable::text_input::v1::client::zwp_text_input_v1::ZwpTextInputV1
source · [−]pub struct ZwpTextInputV1(_);
Implementations
sourceimpl ZwpTextInputV1
impl ZwpTextInputV1
sourcepub fn activate(&self, seat: &WlSeat, surface: &WlSurface)
pub fn activate(&self, seat: &WlSeat, surface: &WlSurface)
request activation
Requests the text_input object to be activated (typically when the text entry gets focus).
The seat argument is a wl_seat which maintains the focus for this activation. The surface argument is a wl_surface assigned to the text_input object and tracked for focus lost. The enter event is emitted on successful activation.
sourcepub fn deactivate(&self, seat: &WlSeat)
pub fn deactivate(&self, seat: &WlSeat)
request deactivation
Requests the text_input object to be deactivated (typically when the text entry lost focus). The seat argument is a wl_seat which was used for activation.
sourcepub fn show_input_panel(&self)
pub fn show_input_panel(&self)
show input panels
Requests input panels (virtual keyboard) to show.
sourcepub fn hide_input_panel(&self)
pub fn hide_input_panel(&self)
hide input panels
Requests input panels (virtual keyboard) to hide.
sourcepub fn reset(&self)
pub fn reset(&self)
reset
Should be called by an editor widget when the input state should be reset, for example after the text was changed outside of the normal input method flow.
sourcepub fn set_surrounding_text(&self, text: String, cursor: u32, anchor: u32)
pub fn set_surrounding_text(&self, text: String, cursor: u32, anchor: u32)
sets the surrounding text
Sets the plain surrounding text around the input position. Text is UTF-8 encoded. Cursor is the byte offset within the surrounding text. Anchor is the byte offset of the selection anchor within the surrounding text. If there is no selected text anchor, then it is the same as cursor.
sourcepub fn set_content_type(&self, hint: ContentHint, purpose: ContentPurpose)
pub fn set_content_type(&self, hint: ContentHint, purpose: ContentPurpose)
set content purpose and hint
Sets the content purpose and content hint. While the purpose is the basic purpose of an input field, the hint flags allow to modify some of the behavior.
When no content type is explicitly set, a normal content purpose with default hints (auto completion, auto correction, auto capitalization) should be assumed.
sourcepub fn set_preferred_language(&self, language: String)
pub fn set_preferred_language(&self, language: String)
sets preferred language
Sets a specific language. This allows for example a virtual keyboard to show a language specific layout. The “language” argument is an RFC-3066 format language tag.
It could be used for example in a word processor to indicate the language of the currently edited document or in an instant message application which tracks languages of contacts.
sourcepub fn commit_state(&self, serial: u32)
pub fn commit_state(&self, serial: u32)
sourcepub fn invoke_action(&self, button: u32, index: u32)
pub fn invoke_action(&self, button: u32, index: u32)
Trait Implementations
sourceimpl AsRef<Proxy<ZwpTextInputV1>> for ZwpTextInputV1
impl AsRef<Proxy<ZwpTextInputV1>> for ZwpTextInputV1
sourceimpl Clone for ZwpTextInputV1
impl Clone for ZwpTextInputV1
sourcefn clone(&self) -> ZwpTextInputV1
fn clone(&self) -> ZwpTextInputV1
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ZwpTextInputV1
impl Debug for ZwpTextInputV1
sourceimpl From<Proxy<ZwpTextInputV1>> for ZwpTextInputV1
impl From<Proxy<ZwpTextInputV1>> for ZwpTextInputV1
sourceimpl From<ZwpTextInputV1> for Proxy<ZwpTextInputV1>
impl From<ZwpTextInputV1> for Proxy<ZwpTextInputV1>
sourcefn from(value: ZwpTextInputV1) -> Self
fn from(value: ZwpTextInputV1) -> Self
Converts to this type from the input type.
sourceimpl Interface for ZwpTextInputV1
impl Interface for ZwpTextInputV1
sourcefn c_interface() -> *const wl_interface
fn c_interface() -> *const wl_interface
Pointer to the C representation of this interface
sourceimpl PartialEq<ZwpTextInputV1> for ZwpTextInputV1
impl PartialEq<ZwpTextInputV1> for ZwpTextInputV1
sourcefn eq(&self, other: &ZwpTextInputV1) -> bool
fn eq(&self, other: &ZwpTextInputV1) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl Eq for ZwpTextInputV1
impl StructuralEq for ZwpTextInputV1
impl StructuralPartialEq for ZwpTextInputV1
Auto Trait Implementations
impl !RefUnwindSafe for ZwpTextInputV1
impl Send for ZwpTextInputV1
impl Sync for ZwpTextInputV1
impl Unpin for ZwpTextInputV1
impl !UnwindSafe for ZwpTextInputV1
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: Any,
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read more
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert &Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert &mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more