Struct wayland_protocols::wp::input_method::zv1::server::zwp_input_method_context_v1::ZwpInputMethodContextV1
source · pub struct ZwpInputMethodContextV1 { /* private fields */ }
Expand description
input method context
Corresponds to a text input on the input method side. An input method context is created on text input activation on the input method side. It allows receiving information about the text input from the application via events. Input method contexts do not keep state after deactivation and should be destroyed after deactivation is handled.
Text is generally UTF-8 encoded, indices and lengths are in bytes.
Serials are used to synchronize the state between the text input and an input method. New serials are sent by the text input in the commit_state request and are used by the input method to indicate the known text input state in events like preedit_string, commit_string, and keysym. The text input can then ignore events from the input method which are based on an outdated state (for example after a reset).
Warning! The protocol described in this file is experimental and backward incompatible changes may be made. Backward compatible changes may be added together with the corresponding interface version bump. Backward incompatible changes are done by bumping the version number in the protocol and interface names and resetting the interface version. Once the protocol is to be declared stable, the ‘z’ prefix and the version number in the protocol and interface names are removed and the interface version number is reset.
See also the Request enum for this interface.
Implementations§
source§impl ZwpInputMethodContextV1
impl ZwpInputMethodContextV1
sourcepub fn surrounding_text(&self, text: String, cursor: u32, anchor: u32)
pub fn surrounding_text(&self, text: String, cursor: u32, anchor: u32)
surrounding text event
The plain surrounding text around the input position. Cursor is the position in bytes within the surrounding text relative to the beginning of the text. Anchor is the position in bytes of the selection anchor within the surrounding text relative to the beginning of the text. If there is no selected text then anchor is the same as cursor.
pub fn reset(&self)
pub fn content_type(&self, hint: u32, purpose: u32)
pub fn invoke_action(&self, button: u32, index: u32)
pub fn commit_state(&self, serial: u32)
pub fn preferred_language(&self, language: String)
Trait Implementations§
source§impl Borrow<ObjectId> for ZwpInputMethodContextV1
impl Borrow<ObjectId> for ZwpInputMethodContextV1
source§impl Clone for ZwpInputMethodContextV1
impl Clone for ZwpInputMethodContextV1
source§fn clone(&self) -> ZwpInputMethodContextV1
fn clone(&self) -> ZwpInputMethodContextV1
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ZwpInputMethodContextV1
impl Debug for ZwpInputMethodContextV1
source§impl Hash for ZwpInputMethodContextV1
impl Hash for ZwpInputMethodContextV1
source§impl PartialEq<Weak<ZwpInputMethodContextV1>> for ZwpInputMethodContextV1
impl PartialEq<Weak<ZwpInputMethodContextV1>> for ZwpInputMethodContextV1
source§impl PartialEq for ZwpInputMethodContextV1
impl PartialEq for ZwpInputMethodContextV1
source§impl Resource for ZwpInputMethodContextV1
impl Resource for ZwpInputMethodContextV1
source§fn object_data(&self) -> Option<&Arc<dyn Any + Send + Sync>>
fn object_data(&self) -> Option<&Arc<dyn Any + Send + Sync>>
source§fn handle(&self) -> &WeakHandle
fn handle(&self) -> &WeakHandle
source§fn from_id(conn: &DisplayHandle, id: ObjectId) -> Result<Self, InvalidId>
fn from_id(conn: &DisplayHandle, id: ObjectId) -> Result<Self, InvalidId>
source§fn send_event(&self, evt: Self::Event<'_>) -> Result<(), InvalidId>
fn send_event(&self, evt: Self::Event<'_>) -> Result<(), InvalidId>
source§fn parse_request(
conn: &DisplayHandle,
msg: Message<ObjectId, OwnedFd>,
) -> Result<(Self, Self::Request), DispatchError>
fn parse_request( conn: &DisplayHandle, msg: Message<ObjectId, OwnedFd>, ) -> Result<(Self, Self::Request), DispatchError>
source§fn write_event<'a>(
&self,
conn: &DisplayHandle,
msg: Self::Event<'a>,
) -> Result<Message<ObjectId, BorrowedFd<'a>>, InvalidId>
fn write_event<'a>( &self, conn: &DisplayHandle, msg: Self::Event<'a>, ) -> Result<Message<ObjectId, BorrowedFd<'a>>, InvalidId>
source§fn is_alive(&self) -> bool
fn is_alive(&self) -> bool
impl Eq for ZwpInputMethodContextV1
Auto Trait Implementations§
impl Freeze for ZwpInputMethodContextV1
impl !RefUnwindSafe for ZwpInputMethodContextV1
impl Send for ZwpInputMethodContextV1
impl Sync for ZwpInputMethodContextV1
impl Unpin for ZwpInputMethodContextV1
impl !UnwindSafe for ZwpInputMethodContextV1
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
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
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.