summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qapplication.h
diff options
context:
space:
mode:
authoraxis <qt-info@nokia.com>2009-04-07 14:26:37 (GMT)
committeraxis <qt-info@nokia.com>2009-05-04 13:22:21 (GMT)
commit8d08c42c6a5478e8890d59f58483f4eff3d286ca (patch)
tree6ca7be5a50290b8c9161f1bf37ab82847cba2725 /src/gui/kernel/qapplication.h
parent9e838079f5f8d62aebb542f2415cd77ef9d71df2 (diff)
downloadQt-8d08c42c6a5478e8890d59f58483f4eff3d286ca.zip
Qt-8d08c42c6a5478e8890d59f58483f4eff3d286ca.tar.gz
Qt-8d08c42c6a5478e8890d59f58483f4eff3d286ca.tar.bz2
Added QApplication::autoSipOnMouseFocus.
RevBy: denis
Diffstat (limited to 'src/gui/kernel/qapplication.h')
-rw-r--r--src/gui/kernel/qapplication.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/kernel/qapplication.h b/src/gui/kernel/qapplication.h
index 807d347..64b33bf 100644
--- a/src/gui/kernel/qapplication.h
+++ b/src/gui/kernel/qapplication.h
@@ -96,6 +96,8 @@ class Q_GUI_EXPORT QApplication : public QCoreApplication
Q_PROPERTY(int cursorFlashTime READ cursorFlashTime WRITE setCursorFlashTime)
Q_PROPERTY(int doubleClickInterval READ doubleClickInterval WRITE setDoubleClickInterval)
Q_PROPERTY(int keyboardInputInterval READ keyboardInputInterval WRITE setKeyboardInputInterval)
+ Q_PROPERTY(bool autoSipOnMouseFocus READ autoSipOnMouseFocus
+ WRITE setAutoSipOnMouseFocus)
#ifndef QT_NO_WHEELEVENT
Q_PROPERTY(int wheelScrollLines READ wheelScrollLines WRITE setWheelScrollLines)
#endif
@@ -198,6 +200,9 @@ public:
static void setKeyboardInputInterval(int);
static int keyboardInputInterval();
+ static void setAutoSipOnMouseFocus(bool);
+ static bool autoSipOnMouseFocus();
+
#ifndef QT_NO_WHEELEVENT
static void setWheelScrollLines(int);
static int wheelScrollLines();