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