47 lines
2.0 KiB
Diff
Executable File
47 lines
2.0 KiB
Diff
Executable File
From c71fc3860b0947c3c793578117e9eb0a3eb3fb31 Mon Sep 17 00:00:00 2001
|
|
From: Shawn Rutledge <shawn.rutledge@qt.io>
|
|
Date: Thu, 24 Nov 2016 11:58:19 +0100
|
|
Subject: [PATCH] add docs for QPlatformTheme::WheelScrollLines,
|
|
MouseDoubleClickDistance
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=utf8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
These theme hints were added in fac71528 and 4a2e297b respectively.
|
|
|
|
Change-Id: Ic39f32dae4d0843b1b2398beb27081ad07d75772
|
|
Reviewed-by: Jan Arve Sæther <jan-arve.saether@qt.io>
|
|
(cherry picked from commit 847a152474550e0952d31f15069fb346565938df)
|
|
Reviewed-by: Simo Fält <simo.falt@qt.io>
|
|
---
|
|
src/gui/kernel/qplatformtheme.cpp | 7 +++++++
|
|
1 file changed, 7 insertions(+)
|
|
|
|
diff --git a/src/gui/kernel/qplatformtheme.cpp b/src/gui/kernel/qplatformtheme.cpp
|
|
index 7f74959..2379b23 100644
|
|
--- a/src/gui/kernel/qplatformtheme.cpp
|
|
+++ b/src/gui/kernel/qplatformtheme.cpp
|
|
@@ -79,6 +79,10 @@ QT_BEGIN_NAMESPACE
|
|
\value MouseDoubleClickInterval (int) Mouse double click interval in ms,
|
|
overriding QPlatformIntegration::styleHint.
|
|
|
|
+ \value MouseDoubleClickDistance (int) The maximum distance in logical pixels which the mouse can travel
|
|
+ between clicks in order for the click sequence to be handled as a double click.
|
|
+ The default value is 5 logical pixels.
|
|
+
|
|
\value MousePressAndHoldInterval (int) Mouse press and hold interval in ms,
|
|
overriding QPlatformIntegration::styleHint.
|
|
|
|
@@ -88,6 +92,9 @@ QT_BEGIN_NAMESPACE
|
|
\value StartDragTime (int) Start drag time in ms,
|
|
overriding QPlatformIntegration::styleHint.
|
|
|
|
+ \value WheelScrollLines (int) The number of lines to scroll a widget, when the mouse wheel is rotated.
|
|
+ The default value is 3. \sa QApplication::wheelScrollLines()
|
|
+
|
|
\value KeyboardAutoRepeatRate (int) Keyboard auto repeat rate,
|
|
overriding QPlatformIntegration::styleHint.
|
|
|
|
--
|
|
2.7.4
|