SourceEnum OutputEvent
from egui import OutputEventclass OutputEvent: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.
from egui import OutputEventclass OutputEvent: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.
@staticmethod
def Clicked(widget_info: WidgetInfo) -> OutputEvent§@staticmethod
def DoubleClicked(widget_info: WidgetInfo) -> OutputEvent§@staticmethod
def FocusGained(widget_info: WidgetInfo) -> OutputEvent§@staticmethod
def TextSelectionChanged(widget_info: WidgetInfo) -> OutputEvent§@staticmethod
def TripleClicked(widget_info: WidgetInfo) -> OutputEvent§@staticmethod
def ValueChanged(widget_info: WidgetInfo) -> OutputEvent§def kind_name(self, /) -> str§def widget_info(self, /) -> WidgetInfo§