Enum egui::output::OutputEvent
source · pub enum OutputEvent {
Clicked(WidgetInfo),
DoubleClicked(WidgetInfo),
TripleClicked(WidgetInfo),
FocusGained(WidgetInfo),
TextSelectionChanged(WidgetInfo),
ValueChanged(WidgetInfo),
}
Expand description
Things that happened during this frame that the integration may be interested in.
In particular, these events may be useful for accessibility, i.e. for screen readers.
Variants§
Clicked(WidgetInfo)
A widget was clicked.
DoubleClicked(WidgetInfo)
A widget was double-clicked.
TripleClicked(WidgetInfo)
A widget was triple-clicked.
FocusGained(WidgetInfo)
A widget gained keyboard focus (by tab key).
TextSelectionChanged(WidgetInfo)
Text selection was updated.
ValueChanged(WidgetInfo)
A widget’s value changed.
Implementations§
source§impl OutputEvent
impl OutputEvent
pub fn widget_info(&self) -> &WidgetInfo
Trait Implementations§
source§impl Clone for OutputEvent
impl Clone for OutputEvent
source§fn clone(&self) -> OutputEvent
fn clone(&self) -> OutputEvent
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 OutputEvent
impl Debug for OutputEvent
source§impl PartialEq for OutputEvent
impl PartialEq for OutputEvent
source§fn eq(&self, other: &OutputEvent) -> bool
fn eq(&self, other: &OutputEvent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for OutputEvent
Auto Trait Implementations§
impl RefUnwindSafe for OutputEvent
impl Send for OutputEvent
impl Sync for OutputEvent
impl Unpin for OutputEvent
impl UnwindSafe for OutputEvent
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