S or /

SourceEnum OutputEvent

from egui import OutputEvent
class 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.

Methods§

@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§
Sourcedef widget_info(self, /) -> WidgetInfo§