pub struct Type(/* private fields */);Expand description
This enum type defines the valid event types in Qt. The event types and the specialized classes for each type are as follows:
C++ enum: QEvent::Type.
This enum type defines the valid event types in Qt. The event types and the specialized classes for each type are as follows:
User events should have values between User and MaxUser:
For convenience, you can use the registerEventType() function to register and reserve a custom event type for your application. Doing so will allow you to avoid accidentally re-using a custom event type already in use elsewhere in your application.
Implementations§
Source§impl Type
impl Type
Sourcepub const Timer: Type
pub const Timer: Type
Regular timer events (QTimerEvent). (C++ enum variant: Timer = 1)
Sourcepub const MouseButtonPress: Type
pub const MouseButtonPress: Type
Mouse press (QMouseEvent). (C++ enum variant: MouseButtonPress = 2)
Sourcepub const MouseButtonRelease: Type
pub const MouseButtonRelease: Type
Mouse release (QMouseEvent). (C++ enum variant: MouseButtonRelease = 3)
Sourcepub const MouseButtonDblClick: Type
pub const MouseButtonDblClick: Type
Mouse press again (QMouseEvent). (C++ enum variant: MouseButtonDblClick = 4)
Sourcepub const MouseMove: Type
pub const MouseMove: Type
Mouse move (QMouseEvent). (C++ enum variant: MouseMove = 5)
Sourcepub const KeyRelease: Type
pub const KeyRelease: Type
Key release (QKeyEvent). (C++ enum variant: KeyRelease = 7)
Sourcepub const FocusIn: Type
pub const FocusIn: Type
Widget or Window gains keyboard focus (QFocusEvent). (C++ enum variant: FocusIn = 8)
Sourcepub const FocusOut: Type
pub const FocusOut: Type
Widget or Window loses keyboard focus (QFocusEvent). (C++ enum variant: FocusOut = 9)
Sourcepub const FocusAboutToChange: Type
pub const FocusAboutToChange: Type
Widget or Window focus is about to change (QFocusEvent) (C++ enum variant: FocusAboutToChange = 23)
Sourcepub const Enter: Type
pub const Enter: Type
Mouse enters widget’s boundaries (QEnterEvent). (C++ enum variant: Enter = 10)
Sourcepub const Paint: Type
pub const Paint: Type
Screen update necessary (QPaintEvent). (C++ enum variant: Paint = 12)
Sourcepub const Move: Type
pub const Move: Type
Widget’s position changed (QMoveEvent). (C++ enum variant: Move = 13)
Sourcepub const Resize: Type
pub const Resize: Type
Widget’s size changed (QResizeEvent). (C++ enum variant: Resize = 14)
Sourcepub const Show: Type
pub const Show: Type
Widget was shown on screen (QShowEvent). (C++ enum variant: Show = 17)
Sourcepub const Hide: Type
pub const Hide: Type
Widget was hidden (QHideEvent). (C++ enum variant: Hide = 18)
Sourcepub const Close: Type
pub const Close: Type
Widget was closed (QCloseEvent). (C++ enum variant: Close = 19)
Sourcepub const ParentChange: Type
pub const ParentChange: Type
The widget parent has changed. (C++ enum variant: ParentChange = 21)
Sourcepub const ParentAboutToChange: Type
pub const ParentAboutToChange: Type
The widget parent is about to change. (C++ enum variant: ParentAboutToChange = 131)
Sourcepub const ThreadChange: Type
pub const ThreadChange: Type
The object is moved to another thread. This is the last event sent to this object in the previous thread. See QObject::moveToThread(). (C++ enum variant: ThreadChange = 22)
Sourcepub const WindowActivate: Type
pub const WindowActivate: Type
Window was activated. (C++ enum variant: WindowActivate = 24)
Sourcepub const WindowDeactivate: Type
pub const WindowDeactivate: Type
Window was deactivated. (C++ enum variant: WindowDeactivate = 25)
Sourcepub const ShowToParent: Type
pub const ShowToParent: Type
A child widget has been shown. (C++ enum variant: ShowToParent = 26)
Sourcepub const HideToParent: Type
pub const HideToParent: Type
A child widget has been hidden. (C++ enum variant: HideToParent = 27)
Sourcepub const Wheel: Type
pub const Wheel: Type
Mouse wheel rolled (QWheelEvent). (C++ enum variant: Wheel = 31)
Sourcepub const WindowTitleChange: Type
pub const WindowTitleChange: Type
The window title has changed. (C++ enum variant: WindowTitleChange = 33)
Sourcepub const WindowIconChange: Type
pub const WindowIconChange: Type
The window’s icon has changed. (C++ enum variant: WindowIconChange = 34)
Sourcepub const ApplicationWindowIconChange: Type
pub const ApplicationWindowIconChange: Type
The application’s icon has changed. (C++ enum variant: ApplicationWindowIconChange = 35)
Sourcepub const ApplicationFontChange: Type
pub const ApplicationFontChange: Type
The default application font has changed. (C++ enum variant: ApplicationFontChange = 36)
Sourcepub const ApplicationLayoutDirectionChange: Type
pub const ApplicationLayoutDirectionChange: Type
The default application layout direction has changed. (C++ enum variant: ApplicationLayoutDirectionChange = 37)
Sourcepub const ApplicationPaletteChange: Type
pub const ApplicationPaletteChange: Type
The default application palette has changed. (C++ enum variant: ApplicationPaletteChange = 38)
Sourcepub const PaletteChange: Type
pub const PaletteChange: Type
Palette of the widget changed. (C++ enum variant: PaletteChange = 39)
Sourcepub const Clipboard: Type
pub const Clipboard: Type
The clipboard contents have changed. (C++ enum variant: Clipboard = 40)
Sourcepub const MetaCall: Type
pub const MetaCall: Type
An asynchronous method invocation via QMetaObject::invokeMethod(). (C++ enum variant: MetaCall = 43)
Sourcepub const SockAct: Type
pub const SockAct: Type
Socket activated, used to implement QSocketNotifier. (C++ enum variant: SockAct = 50)
Sourcepub const WinEventAct: Type
pub const WinEventAct: Type
A Windows-specific activation event has occurred. (C++ enum variant: WinEventAct = 132)
Sourcepub const DeferredDelete: Type
pub const DeferredDelete: Type
The object will be deleted after it has cleaned up (QDeferredDeleteEvent) (C++ enum variant: DeferredDelete = 52)
Sourcepub const DragEnter: Type
pub const DragEnter: Type
The cursor enters a widget during a drag and drop operation (QDragEnterEvent). (C++ enum variant: DragEnter = 60)
Sourcepub const DragMove: Type
pub const DragMove: Type
A drag and drop operation is in progress (QDragMoveEvent). (C++ enum variant: DragMove = 61)
Sourcepub const DragLeave: Type
pub const DragLeave: Type
The cursor leaves a widget during a drag and drop operation (QDragLeaveEvent). (C++ enum variant: DragLeave = 62)
Sourcepub const Drop: Type
pub const Drop: Type
A drag and drop operation is completed (QDropEvent). (C++ enum variant: Drop = 63)
Sourcepub const DragResponse: Type
pub const DragResponse: Type
C++ enum variant: DragResponse = 64
Sourcepub const ChildAdded: Type
pub const ChildAdded: Type
An object gets a child (QChildEvent). (C++ enum variant: ChildAdded = 68)
Sourcepub const ChildPolished: Type
pub const ChildPolished: Type
A widget child gets polished (QChildEvent). (C++ enum variant: ChildPolished = 69)
Sourcepub const ChildRemoved: Type
pub const ChildRemoved: Type
An object loses a child (QChildEvent). (C++ enum variant: ChildRemoved = 71)
Sourcepub const ShowWindowRequest: Type
pub const ShowWindowRequest: Type
C++ enum variant: ShowWindowRequest = 73
Sourcepub const PolishRequest: Type
pub const PolishRequest: Type
The widget should be polished. (C++ enum variant: PolishRequest = 74)
Sourcepub const LayoutRequest: Type
pub const LayoutRequest: Type
Widget layout needs to be redone. (C++ enum variant: LayoutRequest = 76)
Sourcepub const UpdateRequest: Type
pub const UpdateRequest: Type
The widget should be repainted. (C++ enum variant: UpdateRequest = 77)
Sourcepub const UpdateLater: Type
pub const UpdateLater: Type
The widget should be queued to be repainted at a later time. (C++ enum variant: UpdateLater = 78)
Sourcepub const EmbeddingControl: Type
pub const EmbeddingControl: Type
C++ enum variant: EmbeddingControl = 79
Sourcepub const ActivateControl: Type
pub const ActivateControl: Type
C++ enum variant: ActivateControl = 80
Sourcepub const DeactivateControl: Type
pub const DeactivateControl: Type
C++ enum variant: DeactivateControl = 81
Sourcepub const ContextMenu: Type
pub const ContextMenu: Type
Context popup menu (QContextMenuEvent). (C++ enum variant: ContextMenu = 82)
Sourcepub const InputMethod: Type
pub const InputMethod: Type
An input method is being used (QInputMethodEvent). (C++ enum variant: InputMethod = 83)
Sourcepub const TabletMove: Type
pub const TabletMove: Type
Wacom tablet move (QTabletEvent). (C++ enum variant: TabletMove = 87)
Sourcepub const LocaleChange: Type
pub const LocaleChange: Type
The system locale has changed. (C++ enum variant: LocaleChange = 88)
Sourcepub const LanguageChange: Type
pub const LanguageChange: Type
The application translation changed. (C++ enum variant: LanguageChange = 89)
Sourcepub const LayoutDirectionChange: Type
pub const LayoutDirectionChange: Type
The direction of layouts changed. (C++ enum variant: LayoutDirectionChange = 90)
Sourcepub const TabletPress: Type
pub const TabletPress: Type
Wacom tablet press (QTabletEvent). (C++ enum variant: TabletPress = 92)
Sourcepub const TabletRelease: Type
pub const TabletRelease: Type
Wacom tablet release (QTabletEvent). (C++ enum variant: TabletRelease = 93)
Sourcepub const HelpRequest: Type
pub const HelpRequest: Type
C++ enum variant: HelpRequest = 95
Sourcepub const IconDrag: Type
pub const IconDrag: Type
The main icon of a window has been dragged away (QIconDragEvent). (C++ enum variant: IconDrag = 96)
Sourcepub const FontChange: Type
pub const FontChange: Type
Widget’s font has changed. (C++ enum variant: FontChange = 97)
Sourcepub const EnabledChange: Type
pub const EnabledChange: Type
Widget’s enabled state has changed. (C++ enum variant: EnabledChange = 98)
Sourcepub const ActivationChange: Type
pub const ActivationChange: Type
A widget’s top-level window activation state has changed. (C++ enum variant: ActivationChange = 99)
Sourcepub const StyleChange: Type
pub const StyleChange: Type
Widget’s style has been changed. (C++ enum variant: StyleChange = 100)
Sourcepub const IconTextChange: Type
pub const IconTextChange: Type
Widget’s icon text has been changed. (Deprecated) (C++ enum variant: IconTextChange = 101)
Sourcepub const ModifiedChange: Type
pub const ModifiedChange: Type
Widgets modification state has been changed. (C++ enum variant: ModifiedChange = 102)
Sourcepub const MouseTrackingChange: Type
pub const MouseTrackingChange: Type
The mouse tracking state has changed. (C++ enum variant: MouseTrackingChange = 109)
Sourcepub const WindowBlocked: Type
pub const WindowBlocked: Type
The window is blocked by a modal dialog. (C++ enum variant: WindowBlocked = 103)
Sourcepub const WindowUnblocked: Type
pub const WindowUnblocked: Type
The window is unblocked after a modal dialog exited. (C++ enum variant: WindowUnblocked = 104)
Sourcepub const WindowStateChange: Type
pub const WindowStateChange: Type
The window’s state (minimized, maximized or full-screen) has changed (QWindowStateChangeEvent). (C++ enum variant: WindowStateChange = 105)
Sourcepub const ReadOnlyChange: Type
pub const ReadOnlyChange: Type
Widget’s read-only state has changed (since Qt 5.4). (C++ enum variant: ReadOnlyChange = 106)
Sourcepub const ToolTip: Type
pub const ToolTip: Type
A tooltip was requested (QHelpEvent). (C++ enum variant: ToolTip = 110)
Sourcepub const WhatsThis: Type
pub const WhatsThis: Type
The widget should reveal “What’s This?” help (QHelpEvent). (C++ enum variant: WhatsThis = 111)
Sourcepub const StatusTip: Type
pub const StatusTip: Type
A status tip is requested (QStatusTipEvent). (C++ enum variant: StatusTip = 112)
Sourcepub const ActionChanged: Type
pub const ActionChanged: Type
An action has been changed (QActionEvent). (C++ enum variant: ActionChanged = 113)
Sourcepub const ActionAdded: Type
pub const ActionAdded: Type
A new action has been added (QActionEvent). (C++ enum variant: ActionAdded = 114)
Sourcepub const ActionRemoved: Type
pub const ActionRemoved: Type
An action has been removed (QActionEvent). (C++ enum variant: ActionRemoved = 115)
Sourcepub const FileOpen: Type
pub const FileOpen: Type
File open request (QFileOpenEvent). (C++ enum variant: FileOpen = 116)
Sourcepub const Shortcut: Type
pub const Shortcut: Type
Key press in child for shortcut key handling (QShortcutEvent). (C++ enum variant: Shortcut = 117)
Sourcepub const ShortcutOverride: Type
pub const ShortcutOverride: Type
Key press in child, for overriding shortcut key handling (QKeyEvent). (C++ enum variant: ShortcutOverride = 51)
Sourcepub const WhatsThisClicked: Type
pub const WhatsThisClicked: Type
A link in a widget’s “What’s This?” help was clicked. (C++ enum variant: WhatsThisClicked = 118)
Sourcepub const ToolBarChange: Type
pub const ToolBarChange: Type
The toolbar button is toggled on macOS. (C++ enum variant: ToolBarChange = 120)
Sourcepub const ApplicationActivate: Type
pub const ApplicationActivate: Type
This enum has been deprecated. Use ApplicationStateChange instead. (C++ enum variant: ApplicationActivate = 121)
Sourcepub const ApplicationActivated: Type
pub const ApplicationActivated: Type
This enum has been deprecated. Use ApplicationStateChange instead. (C++ enum variant: ApplicationActivated = 121)
Sourcepub const ApplicationDeactivate: Type
pub const ApplicationDeactivate: Type
This enum has been deprecated. Use ApplicationStateChange instead. (C++ enum variant: ApplicationDeactivate = 122)
Sourcepub const ApplicationDeactivated: Type
pub const ApplicationDeactivated: Type
C++ enum variant: ApplicationDeactivated = 122
Sourcepub const QueryWhatsThis: Type
pub const QueryWhatsThis: Type
The widget should accept the event if it has “What’s This?” help. (C++ enum variant: QueryWhatsThis = 123)
Sourcepub const EnterWhatsThisMode: Type
pub const EnterWhatsThisMode: Type
Send to toplevel widgets when the application enters “What’s This?” mode. (C++ enum variant: EnterWhatsThisMode = 124)
Sourcepub const LeaveWhatsThisMode: Type
pub const LeaveWhatsThisMode: Type
Send to toplevel widgets when the application leaves “What’s This?” mode. (C++ enum variant: LeaveWhatsThisMode = 125)
Sourcepub const ZOrderChange: Type
pub const ZOrderChange: Type
The widget’s z-order has changed. This event is never sent to top level windows. (C++ enum variant: ZOrderChange = 126)
Sourcepub const HoverEnter: Type
pub const HoverEnter: Type
The mouse cursor enters a hover widget (QHoverEvent). (C++ enum variant: HoverEnter = 127)
Sourcepub const HoverLeave: Type
pub const HoverLeave: Type
The mouse cursor leaves a hover widget (QHoverEvent). (C++ enum variant: HoverLeave = 128)
Sourcepub const HoverMove: Type
pub const HoverMove: Type
The mouse cursor moves inside a hover widget (QHoverEvent). (C++ enum variant: HoverMove = 129)
Sourcepub const AcceptDropsChange: Type
pub const AcceptDropsChange: Type
C++ enum variant: AcceptDropsChange = 152
Sourcepub const ZeroTimerEvent: Type
pub const ZeroTimerEvent: Type
C++ enum variant: ZeroTimerEvent = 154
Sourcepub const GraphicsSceneMouseMove: Type
pub const GraphicsSceneMouseMove: Type
Move mouse in a graphics scene (QGraphicsSceneMouseEvent). (C++ enum variant: GraphicsSceneMouseMove = 155)
Sourcepub const GraphicsSceneMousePress: Type
pub const GraphicsSceneMousePress: Type
Mouse press in a graphics scene (QGraphicsSceneMouseEvent). (C++ enum variant: GraphicsSceneMousePress = 156)
Sourcepub const GraphicsSceneMouseRelease: Type
pub const GraphicsSceneMouseRelease: Type
Mouse release in a graphics scene (QGraphicsSceneMouseEvent). (C++ enum variant: GraphicsSceneMouseRelease = 157)
Sourcepub const GraphicsSceneMouseDoubleClick: Type
pub const GraphicsSceneMouseDoubleClick: Type
Mouse press again (double click) in a graphics scene (QGraphicsSceneMouseEvent). (C++ enum variant: GraphicsSceneMouseDoubleClick = 158)
Sourcepub const GraphicsSceneContextMenu: Type
pub const GraphicsSceneContextMenu: Type
Context popup menu over a graphics scene (QGraphicsSceneContextMenuEvent). (C++ enum variant: GraphicsSceneContextMenu = 159)
Sourcepub const GraphicsSceneHoverEnter: Type
pub const GraphicsSceneHoverEnter: Type
The mouse cursor enters a hover item in a graphics scene (QGraphicsSceneHoverEvent). (C++ enum variant: GraphicsSceneHoverEnter = 160)
Sourcepub const GraphicsSceneHoverMove: Type
pub const GraphicsSceneHoverMove: Type
The mouse cursor moves inside a hover item in a graphics scene (QGraphicsSceneHoverEvent). (C++ enum variant: GraphicsSceneHoverMove = 161)
Sourcepub const GraphicsSceneHoverLeave: Type
pub const GraphicsSceneHoverLeave: Type
The mouse cursor leaves a hover item in a graphics scene (QGraphicsSceneHoverEvent). (C++ enum variant: GraphicsSceneHoverLeave = 162)
Sourcepub const GraphicsSceneHelp: Type
pub const GraphicsSceneHelp: Type
The user requests help for a graphics scene (QHelpEvent). (C++ enum variant: GraphicsSceneHelp = 163)
Sourcepub const GraphicsSceneDragEnter: Type
pub const GraphicsSceneDragEnter: Type
The cursor enters a graphics scene during a drag and drop operation (QGraphicsSceneDragDropEvent). (C++ enum variant: GraphicsSceneDragEnter = 164)
Sourcepub const GraphicsSceneDragMove: Type
pub const GraphicsSceneDragMove: Type
A drag and drop operation is in progress over a scene (QGraphicsSceneDragDropEvent). (C++ enum variant: GraphicsSceneDragMove = 165)
Sourcepub const GraphicsSceneDragLeave: Type
pub const GraphicsSceneDragLeave: Type
The cursor leaves a graphics scene during a drag and drop operation (QGraphicsSceneDragDropEvent). (C++ enum variant: GraphicsSceneDragLeave = 166)
Sourcepub const GraphicsSceneDrop: Type
pub const GraphicsSceneDrop: Type
A drag and drop operation is completed over a scene (QGraphicsSceneDragDropEvent). (C++ enum variant: GraphicsSceneDrop = 167)
Sourcepub const GraphicsSceneWheel: Type
pub const GraphicsSceneWheel: Type
Mouse wheel rolled in a graphics scene (QGraphicsSceneWheelEvent). (C++ enum variant: GraphicsSceneWheel = 168)
Sourcepub const KeyboardLayoutChange: Type
pub const KeyboardLayoutChange: Type
The keyboard layout has changed. (C++ enum variant: KeyboardLayoutChange = 169)
Sourcepub const DynamicPropertyChange: Type
pub const DynamicPropertyChange: Type
A dynamic property was added, changed, or removed from the object. (C++ enum variant: DynamicPropertyChange = 170)
Sourcepub const TabletEnterProximity: Type
pub const TabletEnterProximity: Type
Wacom tablet enter proximity event (QTabletEvent), sent to QApplication. (C++ enum variant: TabletEnterProximity = 171)
Sourcepub const TabletLeaveProximity: Type
pub const TabletLeaveProximity: Type
Wacom tablet leave proximity event (QTabletEvent), sent to QApplication. (C++ enum variant: TabletLeaveProximity = 172)
Sourcepub const NonClientAreaMouseMove: Type
pub const NonClientAreaMouseMove: Type
A mouse move occurred outside the client area (QMouseEvent). (C++ enum variant: NonClientAreaMouseMove = 173)
Sourcepub const NonClientAreaMouseButtonPress: Type
pub const NonClientAreaMouseButtonPress: Type
A mouse button press occurred outside the client area (QMouseEvent). (C++ enum variant: NonClientAreaMouseButtonPress = 174)
Sourcepub const NonClientAreaMouseButtonRelease: Type
pub const NonClientAreaMouseButtonRelease: Type
A mouse button release occurred outside the client area (QMouseEvent). (C++ enum variant: NonClientAreaMouseButtonRelease = 175)
Sourcepub const NonClientAreaMouseButtonDblClick: Type
pub const NonClientAreaMouseButtonDblClick: Type
A mouse double click occurred outside the client area (QMouseEvent). (C++ enum variant: NonClientAreaMouseButtonDblClick = 176)
Sourcepub const MacSizeChange: Type
pub const MacSizeChange: Type
The user changed his widget sizes (macOS only). (C++ enum variant: MacSizeChange = 177)
Sourcepub const ContentsRectChange: Type
pub const ContentsRectChange: Type
The margins of the widget’s content rect changed. (C++ enum variant: ContentsRectChange = 178)
Sourcepub const MacGLWindowChange: Type
pub const MacGLWindowChange: Type
C++ enum variant: MacGLWindowChange = 179
Sourcepub const FutureCallOut: Type
pub const FutureCallOut: Type
C++ enum variant: FutureCallOut = 180
Sourcepub const GraphicsSceneResize: Type
pub const GraphicsSceneResize: Type
Widget was resized (QGraphicsSceneResizeEvent). (C++ enum variant: GraphicsSceneResize = 181)
Sourcepub const GraphicsSceneMove: Type
pub const GraphicsSceneMove: Type
Widget was moved (QGraphicsSceneMoveEvent). (C++ enum variant: GraphicsSceneMove = 182)
Sourcepub const CursorChange: Type
pub const CursorChange: Type
The widget’s cursor has changed. (C++ enum variant: CursorChange = 183)
Sourcepub const ToolTipChange: Type
pub const ToolTipChange: Type
The widget’s tooltip has changed. (C++ enum variant: ToolTipChange = 184)
Sourcepub const NetworkReplyUpdated: Type
pub const NetworkReplyUpdated: Type
C++ enum variant: NetworkReplyUpdated = 185
Sourcepub const GrabMouse: Type
pub const GrabMouse: Type
Item gains mouse grab (QGraphicsItem only). (C++ enum variant: GrabMouse = 186)
Sourcepub const UngrabMouse: Type
pub const UngrabMouse: Type
Item loses mouse grab (QGraphicsItem, QQuickItem). (C++ enum variant: UngrabMouse = 187)
Sourcepub const GrabKeyboard: Type
pub const GrabKeyboard: Type
Item gains keyboard grab (QGraphicsItem only). (C++ enum variant: GrabKeyboard = 188)
Sourcepub const UngrabKeyboard: Type
pub const UngrabKeyboard: Type
Item loses keyboard grab (QGraphicsItem only). (C++ enum variant: UngrabKeyboard = 189)
Sourcepub const MacGLClearDrawable: Type
pub const MacGLClearDrawable: Type
C++ enum variant: MacGLClearDrawable = 191
Sourcepub const StateMachineSignal: Type
pub const StateMachineSignal: Type
A signal delivered to a state machine (QStateMachine::SignalEvent). (C++ enum variant: StateMachineSignal = 192)
Sourcepub const StateMachineWrapped: Type
pub const StateMachineWrapped: Type
The event is a wrapper for, i.e., contains, another event (QStateMachine::WrappedEvent). (C++ enum variant: StateMachineWrapped = 193)
Sourcepub const TouchBegin: Type
pub const TouchBegin: Type
Beginning of a sequence of touch-screen or track-pad events (QTouchEvent). (C++ enum variant: TouchBegin = 194)
Sourcepub const TouchUpdate: Type
pub const TouchUpdate: Type
Touch-screen event (QTouchEvent). (C++ enum variant: TouchUpdate = 195)
Sourcepub const TouchEnd: Type
pub const TouchEnd: Type
End of touch-event sequence (QTouchEvent). (C++ enum variant: TouchEnd = 196)
Sourcepub const NativeGesture: Type
pub const NativeGesture: Type
The system has detected a gesture (QNativeGestureEvent). (C++ enum variant: NativeGesture = 197)
Sourcepub const RequestSoftwareInputPanel: Type
pub const RequestSoftwareInputPanel: Type
A widget wants to open a software input panel (SIP). (C++ enum variant: RequestSoftwareInputPanel = 199)
Sourcepub const CloseSoftwareInputPanel: Type
pub const CloseSoftwareInputPanel: Type
A widget wants to close the software input panel (SIP). (C++ enum variant: CloseSoftwareInputPanel = 200)
Sourcepub const WinIdChange: Type
pub const WinIdChange: Type
The window system identifer for this native widget has changed. (C++ enum variant: WinIdChange = 203)
Sourcepub const Gesture: Type
pub const Gesture: Type
A gesture was triggered (QGestureEvent). (C++ enum variant: Gesture = 198)
Sourcepub const GestureOverride: Type
pub const GestureOverride: Type
A gesture override was triggered (QGestureEvent). (C++ enum variant: GestureOverride = 202)
Sourcepub const ScrollPrepare: Type
pub const ScrollPrepare: Type
The object needs to fill in its geometry information (QScrollPrepareEvent). (C++ enum variant: ScrollPrepare = 204)
Sourcepub const Scroll: Type
pub const Scroll: Type
The object needs to scroll to the supplied position (QScrollEvent). (C++ enum variant: Scroll = 205)
Sourcepub const Expose: Type
pub const Expose: Type
Sent to a window when its on-screen contents are invalidated and need to be flushed from the backing store. (C++ enum variant: Expose = 206)
Sourcepub const InputMethodQuery: Type
pub const InputMethodQuery: Type
A input method query event (QInputMethodQueryEvent) (C++ enum variant: InputMethodQuery = 207)
Sourcepub const OrientationChange: Type
pub const OrientationChange: Type
The screens orientation has changes (QScreenOrientationChangeEvent). (C++ enum variant: OrientationChange = 208)
Sourcepub const TouchCancel: Type
pub const TouchCancel: Type
Cancellation of touch-event sequence (QTouchEvent). (C++ enum variant: TouchCancel = 209)
Sourcepub const ThemeChange: Type
pub const ThemeChange: Type
C++ enum variant: ThemeChange = 210
Sourcepub const PlatformPanel: Type
pub const PlatformPanel: Type
A platform specific panel has been requested. (C++ enum variant: PlatformPanel = 212)
Sourcepub const StyleAnimationUpdate: Type
pub const StyleAnimationUpdate: Type
C++ enum variant: StyleAnimationUpdate = 213
Sourcepub const ApplicationStateChange: Type
pub const ApplicationStateChange: Type
The state of the application has changed. (C++ enum variant: ApplicationStateChange = 214)
Sourcepub const WindowChangeInternal: Type
pub const WindowChangeInternal: Type
C++ enum variant: WindowChangeInternal = 215
Sourcepub const ScreenChangeInternal: Type
pub const ScreenChangeInternal: Type
C++ enum variant: ScreenChangeInternal = 216
Sourcepub const PlatformSurface: Type
pub const PlatformSurface: Type
A native platform surface has been created or is about to be destroyed (QPlatformSurfaceEvent). (C++ enum variant: PlatformSurface = 217)
Sourcepub const TabletTrackingChange: Type
pub const TabletTrackingChange: Type
The Wacom tablet tracking state has changed (since Qt 5.9). (C++ enum variant: TabletTrackingChange = 219)