aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@qt.io>2017-10-10 12:52:27 +0200
committerMitch Curtis <mitch.curtis@qt.io>2017-10-10 10:53:40 +0000
commit378da67208fe3d7f48ff3e494f5fe5984af407aa (patch)
treebf9cb0c8fd5a7b9cd2a32de37d1d81860666fb1e
parent8625b79f606fc4e9cbfeed46d9c83bc691aa7464 (diff)
Doc: state which input devices cause certain signals
Change-Id: Ib56041e69547e03d7db10974d4638748f99fd2bf Reviewed-by: J-P Nurmi <jpnurmi@qt.io>
-rw-r--r--src/quicktemplates2/qquickabstractbutton.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/quicktemplates2/qquickabstractbutton.cpp b/src/quicktemplates2/qquickabstractbutton.cpp
index e819f355..efd06bd0 100644
--- a/src/quicktemplates2/qquickabstractbutton.cpp
+++ b/src/quicktemplates2/qquickabstractbutton.cpp
@@ -69,13 +69,13 @@ static const int AUTO_REPEAT_INTERVAL = 100;
/*!
\qmlsignal QtQuick.Controls::AbstractButton::pressed()
- This signal is emitted when the button is interactively pressed by the user.
+ This signal is emitted when the button is interactively pressed by the user via touch, mouse, or keyboard.
*/
/*!
\qmlsignal QtQuick.Controls::AbstractButton::released()
- This signal is emitted when the button is interactively released by the user.
+ This signal is emitted when the button is interactively released by the user via touch, mouse, or keyboard.
*/
/*!
@@ -89,26 +89,26 @@ static const int AUTO_REPEAT_INTERVAL = 100;
/*!
\qmlsignal QtQuick.Controls::AbstractButton::clicked()
- This signal is emitted when the button is interactively clicked by the user.
+ This signal is emitted when the button is interactively clicked by the user via touch, mouse, or keyboard.
*/
/*!
\since QtQuick.Controls 2.2 (Qt 5.9)
\qmlsignal QtQuick.Controls::AbstractButton::toggled()
- This signal is emitted when a checkable button is interactively toggled by the user.
+ This signal is emitted when a checkable button is interactively toggled by the user via touch, mouse, or keyboard.
*/
/*!
\qmlsignal QtQuick.Controls::AbstractButton::pressAndHold()
- This signal is emitted when the button is interactively pressed and held down by the user.
+ This signal is emitted when the button is interactively pressed and held down by the user via touch or mouse.
*/
/*!
\qmlsignal QtQuick.Controls::AbstractButton::doubleClicked()
- This signal is emitted when the button is interactively double clicked by the user.
+ This signal is emitted when the button is interactively double clicked by the user via touch or mouse.
*/
QQuickAbstractButtonPrivate::QQuickAbstractButtonPrivate()