aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/handlers
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@qt.io>2018-07-23 15:15:59 +0200
committerShawn Rutledge <shawn.rutledge@qt.io>2018-07-26 16:32:38 +0000
commit65fd9165162a8498c5bbe71e5372b65770c240b0 (patch)
tree6023664a58e3b6a7767fcde98f0f3c7c77754a9b /src/quick/handlers
parent09b360a1d9c88cc649ebfc4343165464281d917b (diff)
Rearrange docs: Pointer Handlers -> Input Handlers
At QtCS 2018 we decided to rename Pointer Handlers to Input Handlers and include the Keys attached property as part of this set (since we plan to have attached-property pointer handlers too, eventually). It's no longer a module, it's included in Qt Quick 2.12. We need to start promoting Input Handlers and reducing the visibility of legacy stuff like MouseArea and MultiPointTouchArea (in the hope of being able to deprecate them eventually). Task-number: QTBUG-66651 Change-Id: I801351ac2531191cbb1faac9318441c67a109af6 Reviewed-by: Jan Arve Sæther <jan-arve.saether@qt.io> Reviewed-by: Venugopal Shivashankar <Venugopal.Shivashankar@qt.io>
Diffstat (limited to 'src/quick/handlers')
-rw-r--r--src/quick/handlers/qquickdraghandler.cpp4
-rw-r--r--src/quick/handlers/qquickhandlerpoint.cpp3
-rw-r--r--src/quick/handlers/qquickhoverhandler.cpp2
-rw-r--r--src/quick/handlers/qquickmultipointhandler.cpp3
-rw-r--r--src/quick/handlers/qquickpinchhandler.cpp4
-rw-r--r--src/quick/handlers/qquickpointerdevicehandler.cpp3
-rw-r--r--src/quick/handlers/qquickpointerhandler.cpp3
-rw-r--r--src/quick/handlers/qquickpointhandler.cpp4
-rw-r--r--src/quick/handlers/qquicksinglepointhandler.cpp3
-rw-r--r--src/quick/handlers/qquicktaphandler.cpp4
10 files changed, 14 insertions, 19 deletions
diff --git a/src/quick/handlers/qquickdraghandler.cpp b/src/quick/handlers/qquickdraghandler.cpp
index 707b247f72..7c175b472b 100644
--- a/src/quick/handlers/qquickdraghandler.cpp
+++ b/src/quick/handlers/qquickdraghandler.cpp
@@ -51,8 +51,8 @@ Q_LOGGING_CATEGORY(lcDragHandler, "qt.quick.handler.drag")
\qmltype DragHandler
\instantiates QQuickDragHandler
\inherits SinglePointHandler
- \inqmlmodule Qt.labs.handlers
- \ingroup qtquick-handlers
+ \inqmlmodule QtQuick
+ \ingroup qtquick-input-handlers
\brief Handler for dragging.
DragHandler is a handler that is used to interactively move an Item.
diff --git a/src/quick/handlers/qquickhandlerpoint.cpp b/src/quick/handlers/qquickhandlerpoint.cpp
index 663fd23287..be9bad7bea 100644
--- a/src/quick/handlers/qquickhandlerpoint.cpp
+++ b/src/quick/handlers/qquickhandlerpoint.cpp
@@ -46,8 +46,7 @@ Q_DECLARE_LOGGING_CATEGORY(DBG_TOUCH_TARGET)
/*!
\qmltype HandlerPoint
\instantiates QQuickHandlerPoint
- \inqmlmodule Qt.labs.handlers
- \ingroup qtquick-handlers
+ \inqmlmodule QtQuick
\brief An event point.
A QML representation of a QQuickEventPoint.
diff --git a/src/quick/handlers/qquickhoverhandler.cpp b/src/quick/handlers/qquickhoverhandler.cpp
index 430722bd93..817c1348e6 100644
--- a/src/quick/handlers/qquickhoverhandler.cpp
+++ b/src/quick/handlers/qquickhoverhandler.cpp
@@ -47,7 +47,7 @@ Q_LOGGING_CATEGORY(lcHoverHandler, "qt.quick.handler.hover")
\qmltype HoverHandler
\instantiates QQuickHoverHandler
\inqmlmodule QtQuick
- \ingroup qtquick-handlers
+ \ingroup qtquick-input-handlers
\brief Handler for mouse and tablet hover
HoverHandler detects a hovering cursor. Since touchscreens don't generally
diff --git a/src/quick/handlers/qquickmultipointhandler.cpp b/src/quick/handlers/qquickmultipointhandler.cpp
index 4e633276ab..98321e134a 100644
--- a/src/quick/handlers/qquickmultipointhandler.cpp
+++ b/src/quick/handlers/qquickmultipointhandler.cpp
@@ -51,8 +51,7 @@ QT_BEGIN_NAMESPACE
\preliminary
\instantiates QQuickMultiPointHandler
\inherits PointerDeviceHandler
- \inqmlmodule Qt.labs.handlers
- \ingroup qtquick-handlers
+ \inqmlmodule QtQuick
\brief Abstract handler for multi-point Pointer Events.
An intermediate class (not registered as a QML type)
diff --git a/src/quick/handlers/qquickpinchhandler.cpp b/src/quick/handlers/qquickpinchhandler.cpp
index e0b798b638..d6e1a183bb 100644
--- a/src/quick/handlers/qquickpinchhandler.cpp
+++ b/src/quick/handlers/qquickpinchhandler.cpp
@@ -56,8 +56,8 @@ Q_LOGGING_CATEGORY(lcPinchHandler, "qt.quick.handler.pinch")
\qmltype PinchHandler
\instantiates QQuickPinchHandler
\inherits MultiPointHandler
- \inqmlmodule Qt.labs.handlers
- \ingroup qtquick-handlers
+ \inqmlmodule QtQuick
+ \ingroup qtquick-input-handlers
\brief Handler for pinch gestures.
PinchHandler is a handler that interprets a multi-finger gesture to
diff --git a/src/quick/handlers/qquickpointerdevicehandler.cpp b/src/quick/handlers/qquickpointerdevicehandler.cpp
index 7b9f6839b1..dfea3ec02d 100644
--- a/src/quick/handlers/qquickpointerdevicehandler.cpp
+++ b/src/quick/handlers/qquickpointerdevicehandler.cpp
@@ -51,8 +51,7 @@ QT_BEGIN_NAMESPACE
\preliminary
\instantiates QQuickPointerDeviceHandler
\inherits PointerHandler
- \inqmlmodule Qt.labs.handlers
- \ingroup qtquick-handlers
+ \inqmlmodule QtQuick
\brief Abstract handler for pointer events with device-specific constraints.
An intermediate class (not registered as a QML type) for handlers which
diff --git a/src/quick/handlers/qquickpointerhandler.cpp b/src/quick/handlers/qquickpointerhandler.cpp
index 5f8106af3e..91349a6ad7 100644
--- a/src/quick/handlers/qquickpointerhandler.cpp
+++ b/src/quick/handlers/qquickpointerhandler.cpp
@@ -53,8 +53,7 @@ Q_LOGGING_CATEGORY(lcPointerHandlerActive, "qt.quick.handler.active")
\since 5.10
\preliminary
\instantiates QQuickPointerHandler
- \inqmlmodule Qt.labs.handlers
- \ingroup qtquick-handlers
+ \inqmlmodule QtQuick
\brief Abstract handler for pointer events.
PointerHandler is the base class Input Handler (not registered as a QML type) for
diff --git a/src/quick/handlers/qquickpointhandler.cpp b/src/quick/handlers/qquickpointhandler.cpp
index 7cf37969cc..65a7fd7b79 100644
--- a/src/quick/handlers/qquickpointhandler.cpp
+++ b/src/quick/handlers/qquickpointhandler.cpp
@@ -47,8 +47,8 @@ QT_BEGIN_NAMESPACE
\qmltype PointHandler
\instantiates QQuickPointHandler
\inherits SinglePointHandler
- \inqmlmodule Qt.labs.handlers
- \ingroup qtquick-handlers
+ \inqmlmodule QtQuick
+ \ingroup qtquick-input-handlers
\brief Handler for reacting to a single touchpoint.
PointHandler can be used to show feedback about a touchpoint or the mouse
diff --git a/src/quick/handlers/qquicksinglepointhandler.cpp b/src/quick/handlers/qquicksinglepointhandler.cpp
index 71c05891d4..0f8fc58bc1 100644
--- a/src/quick/handlers/qquicksinglepointhandler.cpp
+++ b/src/quick/handlers/qquicksinglepointhandler.cpp
@@ -48,8 +48,7 @@ Q_DECLARE_LOGGING_CATEGORY(DBG_TOUCH_TARGET)
\preliminary
\instantiates QQuickSinglePointHandler
\inherits PointerDeviceHandler
- \inqmlmodule Qt.labs.handlers
- \ingroup qtquick-handlers
+ \inqmlmodule QtQuick
\brief Abstract handler for single-point Pointer Events.
An intermediate class (not registered as a QML type)
diff --git a/src/quick/handlers/qquicktaphandler.cpp b/src/quick/handlers/qquicktaphandler.cpp
index d565e16e2d..1d3375314f 100644
--- a/src/quick/handlers/qquicktaphandler.cpp
+++ b/src/quick/handlers/qquicktaphandler.cpp
@@ -55,8 +55,8 @@ int QQuickTapHandler::m_touchMultiTapDistanceSquared(-1);
\qmltype TapHandler
\instantiates QQuickTapHandler
\inherits SinglePointHandler
- \inqmlmodule Qt.labs.handlers
- \ingroup qtquick-handlers
+ \inqmlmodule QtQuick
+ \ingroup qtquick-input-handlers
\brief Handler for taps and clicks.
TapHandler is a handler for taps on a touchscreen or clicks on a mouse.