Trait webkit6::prelude::InputMethodContextExt
source · pub trait InputMethodContextExt: IsA<InputMethodContext> + Sealed + 'static {
Show 18 methods
// Provided methods
fn filter_key_event(&self, key_event: impl AsRef<Event>) -> bool { ... }
fn input_hints(&self) -> InputHints { ... }
fn input_purpose(&self) -> InputPurpose { ... }
fn notify_cursor_area(&self, x: i32, y: i32, width: i32, height: i32) { ... }
fn notify_focus_in(&self) { ... }
fn notify_focus_out(&self) { ... }
fn notify_surrounding(
&self,
text: &str,
cursor_index: u32,
selection_index: u32,
) { ... }
fn reset(&self) { ... }
fn set_enable_preedit(&self, enabled: bool) { ... }
fn set_input_hints(&self, hints: InputHints) { ... }
fn set_input_purpose(&self, purpose: InputPurpose) { ... }
fn connect_committed<F: Fn(&Self, &str) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_delete_surrounding<F: Fn(&Self, i32, u32) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_preedit_changed<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_preedit_finished<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_preedit_started<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_input_hints_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_input_purpose_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Expand description
Provided Methods§
sourcefn filter_key_event(&self, key_event: impl AsRef<Event>) -> bool
fn filter_key_event(&self, key_event: impl AsRef<Event>) -> bool
sourcefn input_hints(&self) -> InputHints
fn input_hints(&self) -> InputHints
Get the value of the #WebKitInputMethodContext:input-hints property.
§Returns
the #WebKitInputHints of the input associated with @self
sourcefn input_purpose(&self) -> InputPurpose
fn input_purpose(&self) -> InputPurpose
Get the value of the #WebKitInputMethodContext:input-purpose property.
§Returns
the #WebKitInputPurpose of the input associated with @self
sourcefn notify_focus_in(&self)
fn notify_focus_in(&self)
Notify @self that input associated has gained focus.
sourcefn notify_focus_out(&self)
fn notify_focus_out(&self)
Notify @self that input associated has lost focus.
sourcefn notify_surrounding(
&self,
text: &str,
cursor_index: u32,
selection_index: u32,
)
fn notify_surrounding( &self, text: &str, cursor_index: u32, selection_index: u32, )
Notify @self that the context surrounding the cursor has changed.
If there’s no selection @selection_index is the same as @cursor_index.
§text
text surrounding the insertion point
§length
the length of @text, or -1 if @text is nul-terminated
§cursor_index
the byte index of the insertion cursor within @text.
§selection_index
the byte index of the selection cursor within @text.
sourcefn reset(&self)
fn reset(&self)
Reset the @self.
This will typically cause the input to clear the preedit state.
sourcefn set_enable_preedit(&self, enabled: bool)
fn set_enable_preedit(&self, enabled: bool)
sourcefn set_input_hints(&self, hints: InputHints)
fn set_input_hints(&self, hints: InputHints)
sourcefn set_input_purpose(&self, purpose: InputPurpose)
fn set_input_purpose(&self, purpose: InputPurpose)
Set the value of the #WebKitInputMethodContext:input-purpose property.
§purpose
a #WebKitInputPurpose
sourcefn connect_committed<F: Fn(&Self, &str) + 'static>(
&self,
f: F,
) -> SignalHandlerId
fn connect_committed<F: Fn(&Self, &str) + 'static>( &self, f: F, ) -> SignalHandlerId
Emitted when a complete input sequence has been entered by the user. This can be a single character immediately after a key press or the final result of preediting.
§text
the string result
sourcefn connect_delete_surrounding<F: Fn(&Self, i32, u32) + 'static>(
&self,
f: F,
) -> SignalHandlerId
fn connect_delete_surrounding<F: Fn(&Self, i32, u32) + 'static>( &self, f: F, ) -> SignalHandlerId
sourcefn connect_preedit_changed<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId
fn connect_preedit_changed<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
Emitted whenever the preedit sequence currently being entered has changed. It is also emitted at the end of a preedit sequence, in which case webkit_input_method_context_get_preedit() returns the empty string.
sourcefn connect_preedit_finished<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId
fn connect_preedit_finished<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
Emitted when a preediting sequence has been completed or canceled.
sourcefn connect_preedit_started<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId
fn connect_preedit_started<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
Emitted when a new preediting sequence starts.