Struct zng_ext_input::keyboard::KEYBOARD

source ·
pub struct KEYBOARD;
Expand description

Keyboard service.

§Provider

This service is provided by the KeyboardManager extension.

Implementations§

source§

impl KEYBOARD

source

pub fn modifiers(&self) -> ReadOnlyArcVar<ModifiersState>

Returns a read-only variable that tracks the currently pressed modifier keys.

source

pub fn codes(&self) -> ReadOnlyArcVar<Vec<KeyCode>>

Returns a read-only variable that tracks the KeyCode of the keys currently pressed.

source

pub fn keys(&self) -> ReadOnlyArcVar<Vec<Key>>

Returns a read-only variable that tracks the Key identifier of the keys currently pressed.

source

pub fn repeat_config( &self, ) -> ArcCowVar<KeyRepeatConfig, ArcVar<KeyRepeatConfig>>

Returns a variable that defines key press repeat start delay and repeat speed on the app.

This delay is roughly the time the user must hold a key pressed to start repeating. When a second key press happens without any other keyboard event and within twice this value it increments the repeat_count by the KeyboardManager.

The value is the same as sys_repeat_config, if set the variable disconnects from system config.

source

pub fn sys_repeat_config(&self) -> ReadOnlyArcVar<KeyRepeatConfig>

Returns a read-only variable that tracks the operating system key press repeat start delay and repeat speed.

The variable updates every time the system config changes and on view-process (re)init.

source

pub fn caret_animation_config( &self, ) -> ArcCowVar<(Duration, Duration), ArcVar<(Duration, Duration)>>

Returns a variable that defines the system config for the caret blink speed and timeout for the app.

The first value defines the blink speed interval, the caret is visible for the duration, then not visible for the duration. The second value defines the animation total duration, the caret stops animating and sticks to visible after this timeout is reached.

You can use the caret_animation method to generate a new animation.

The value is the same as sys_repeat_config, if set the variable disconnects from system config.

source

pub fn sys_caret_animation_config(&self) -> ReadOnlyArcVar<(Duration, Duration)>

Returns a read-only variable that tracks the operating system caret blink speed and timeout.

The variable updates every time the system config changes and on view-process (re)init.

source

pub fn caret_animation(&self) -> ReadOnlyArcVar<Factor>

Returns a new read-only variable that animates the caret opacity.

A new animation must be started after each key press. The value is always 1 or 0, no easing is used by default, it can be added using the Var::easing method.

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> 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 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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

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
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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<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
source§

impl<T> StateValue for T
where T: Any + Send + Sync,