19 Q_DECLARE_PRIVATE(QStyleHints)
20 Q_PROPERTY(
int cursorFlashTime READ cursorFlashTime NOTIFY cursorFlashTimeChanged FINAL)
21 Q_PROPERTY(qreal fontSmoothingGamma READ fontSmoothingGamma STORED
false CONSTANT FINAL)
22#if QT_DEPRECATED_SINCE(6
, 5
)
23 Q_PROPERTY(
int keyboardAutoRepeatRate READ keyboardAutoRepeatRate STORED
false CONSTANT FINAL)
25 Q_PROPERTY(qreal keyboardAutoRepeatRateF READ keyboardAutoRepeatRateF STORED
false CONSTANT FINAL)
26 Q_PROPERTY(
int keyboardInputInterval READ keyboardInputInterval
27 NOTIFY keyboardInputIntervalChanged FINAL)
28 Q_PROPERTY(
int mouseDoubleClickInterval READ mouseDoubleClickInterval
29 NOTIFY mouseDoubleClickIntervalChanged FINAL)
30 Q_PROPERTY(
int mousePressAndHoldInterval READ mousePressAndHoldInterval
31 NOTIFY mousePressAndHoldIntervalChanged FINAL)
32 Q_PROPERTY(QChar passwordMaskCharacter READ passwordMaskCharacter STORED
false CONSTANT FINAL)
33 Q_PROPERTY(
int passwordMaskDelay READ passwordMaskDelay STORED
false CONSTANT FINAL)
34 Q_PROPERTY(
bool setFocusOnTouchRelease READ setFocusOnTouchRelease STORED
false CONSTANT FINAL)
35 Q_PROPERTY(
bool showIsFullScreen READ showIsFullScreen STORED
false CONSTANT FINAL)
36 Q_PROPERTY(
bool showIsMaximized READ showIsMaximized STORED
false CONSTANT FINAL)
37 Q_PROPERTY(
bool showShortcutsInContextMenus READ showShortcutsInContextMenus
38 WRITE setShowShortcutsInContextMenus NOTIFY showShortcutsInContextMenusChanged FINAL)
39 Q_PROPERTY(Qt::ContextMenuTrigger contextMenuTrigger READ contextMenuTrigger WRITE
40 setContextMenuTrigger NOTIFY contextMenuTriggerChanged FINAL)
41 Q_PROPERTY(
int startDragDistance READ startDragDistance NOTIFY startDragDistanceChanged FINAL)
42 Q_PROPERTY(
int startDragTime READ startDragTime NOTIFY startDragTimeChanged FINAL)
43 Q_PROPERTY(
int startDragVelocity READ startDragVelocity STORED
false CONSTANT FINAL)
44 Q_PROPERTY(
bool useRtlExtensions READ useRtlExtensions STORED
false CONSTANT FINAL)
45 Q_PROPERTY(Qt::TabFocusBehavior tabFocusBehavior READ tabFocusBehavior
46 NOTIFY tabFocusBehaviorChanged FINAL)
47 Q_PROPERTY(
bool singleClickActivation READ singleClickActivation STORED
false CONSTANT FINAL)
48 Q_PROPERTY(
bool useHoverEffects READ useHoverEffects WRITE setUseHoverEffects
49 NOTIFY useHoverEffectsChanged FINAL)
50 Q_PROPERTY(
int wheelScrollLines READ wheelScrollLines NOTIFY wheelScrollLinesChanged FINAL)
51 Q_PROPERTY(
int mouseQuickSelectionThreshold READ mouseQuickSelectionThreshold
52 WRITE setMouseQuickSelectionThreshold NOTIFY mouseQuickSelectionThresholdChanged
54 Q_PROPERTY(
int mouseDoubleClickDistance READ mouseDoubleClickDistance STORED
false CONSTANT
56 Q_PROPERTY(
int touchDoubleTapDistance READ touchDoubleTapDistance STORED
false CONSTANT FINAL)
57 Q_PROPERTY(Qt::ColorScheme colorScheme READ colorScheme WRITE setColorScheme
58 RESET unsetColorScheme NOTIFY colorSchemeChanged FINAL)
59 Q_PROPERTY(
bool menuSelectionWraps READ menuSelectionWraps STORED
false CONSTANT FINAL REVISION(6, 10))
60 Q_PROPERTY(
const QAccessibilityHints* accessibility READ accessibility CONSTANT FINAL REVISION(6, 10))
63 void setMouseDoubleClickInterval(
int mouseDoubleClickInterval);
64 int mouseDoubleClickInterval()
const;
65 int mouseDoubleClickDistance()
const;
66 int touchDoubleTapDistance()
const;
67 void setMousePressAndHoldInterval(
int mousePressAndHoldInterval);
68 int mousePressAndHoldInterval()
const;
69 void setStartDragDistance(
int startDragDistance);
70 int startDragDistance()
const;
71 void setStartDragTime(
int startDragTime);
72 int startDragTime()
const;
73 int startDragVelocity()
const;
74 void setKeyboardInputInterval(
int keyboardInputInterval);
75 int keyboardInputInterval()
const;
76#if QT_DEPRECATED_SINCE(6
, 5
)
77 QT_DEPRECATED_VERSION_X_6_5(
"Use keyboardAutoRepeatRateF() instead")
78 int keyboardAutoRepeatRate()
const;
80 qreal keyboardAutoRepeatRateF()
const;
81 void setCursorFlashTime(
int cursorFlashTime);
82 int cursorFlashTime()
const;
83 bool showIsFullScreen()
const;
84 bool showIsMaximized()
const;
85 bool showShortcutsInContextMenus()
const;
86 void setShowShortcutsInContextMenus(
bool showShortcutsInContextMenus);
87 Qt::ContextMenuTrigger contextMenuTrigger()
const;
88 void setContextMenuTrigger(Qt::ContextMenuTrigger contextMenuTrigger);
89 bool menuSelectionWraps()
const;
90 int passwordMaskDelay()
const;
91 QChar passwordMaskCharacter()
const;
92 qreal fontSmoothingGamma()
const;
93 bool useRtlExtensions()
const;
94 bool setFocusOnTouchRelease()
const;
95 Qt::TabFocusBehavior tabFocusBehavior()
const;
96 void setTabFocusBehavior(Qt::TabFocusBehavior tabFocusBehavior);
97 bool singleClickActivation()
const;
98 bool useHoverEffects()
const;
99 void setUseHoverEffects(
bool useHoverEffects);
100 int wheelScrollLines()
const;
101 void setWheelScrollLines(
int scrollLines);
102 void setMouseQuickSelectionThreshold(
int threshold);
103 int mouseQuickSelectionThreshold()
const;
104 Qt::ColorScheme colorScheme()
const;
105 void setColorScheme(Qt::ColorScheme scheme);
106 void unsetColorScheme() { setColorScheme(Qt::ColorScheme::Unknown); }
107 const QAccessibilityHints* accessibility()
const;
110 void cursorFlashTimeChanged(
int cursorFlashTime);
111 void keyboardInputIntervalChanged(
int keyboardInputInterval);
112 void mouseDoubleClickIntervalChanged(
int mouseDoubleClickInterval);
113 void mousePressAndHoldIntervalChanged(
int mousePressAndHoldInterval);
114 void startDragDistanceChanged(
int startDragDistance);
115 void startDragTimeChanged(
int startDragTime);
116 void tabFocusBehaviorChanged(Qt::TabFocusBehavior tabFocusBehavior);
117 void useHoverEffectsChanged(
bool useHoverEffects);
118 void showShortcutsInContextMenusChanged(
bool);
119 void contextMenuTriggerChanged(Qt::ContextMenuTrigger contextMenuTrigger);
120 void wheelScrollLinesChanged(
int scrollLines);
121 void mouseQuickSelectionThresholdChanged(
int threshold);
122 void colorSchemeChanged(Qt::ColorScheme colorScheme);
125 friend class QGuiApplication;