Struct egui::input_state::InputOptions
source · pub struct InputOptions {
pub max_click_dist: f32,
pub max_click_duration: f64,
pub max_double_click_delay: f64,
}
Expand description
Options for input state handling.
Fields§
§max_click_dist: f32
After a pointer-down event, if the pointer moves more than this, it won’t become a click.
max_click_duration: f64
If the pointer is down for longer than this it will no longer register as a click.
If a touch is held for this many seconds while still, then it will register as a “long-touch” which is equivalent to a secondary click.
This is to support “press and hold for context menu” on touch screens.
max_double_click_delay: f64
The new pointer press must come within this many seconds from previous pointer release for double click (or when this value is doubled, triple click) to count.
Implementations§
Trait Implementations§
source§impl Clone for InputOptions
impl Clone for InputOptions
source§fn clone(&self) -> InputOptions
fn clone(&self) -> InputOptions
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for InputOptions
impl Debug for InputOptions
source§impl Default for InputOptions
impl Default for InputOptions
source§impl PartialEq for InputOptions
impl PartialEq for InputOptions
impl StructuralPartialEq for InputOptions
Auto Trait Implementations§
impl Freeze for InputOptions
impl RefUnwindSafe for InputOptions
impl Send for InputOptions
impl Sync for InputOptions
impl Unpin for InputOptions
impl UnwindSafe for InputOptions
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
Mutably borrows from an owned value. Read more
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)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)