summaryrefslogtreecommitdiffstats
path: root/src/charts/barchart/qbarset.cpp
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2017-03-10 10:26:44 +0100
committerLiang Qi <liang.qi@qt.io>2017-03-10 10:26:44 +0100
commit54c920f3735d5302e1f6af7768c6a06f1dcd333f (patch)
tree07a0b96b43901ce158a62b70368a175df751c4b1 /src/charts/barchart/qbarset.cpp
parent0710788e783ed53589d33ec527cfd359087c51be (diff)
parentf7b477ad0e2f9ab4f3a95e7547a92dccab7bb836 (diff)
Merge remote-tracking branch 'origin/5.8' into 5.9
Diffstat (limited to 'src/charts/barchart/qbarset.cpp')
-rw-r--r--src/charts/barchart/qbarset.cpp36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/charts/barchart/qbarset.cpp b/src/charts/barchart/qbarset.cpp
index bba1cac7..c7927899 100644
--- a/src/charts/barchart/qbarset.cpp
+++ b/src/charts/barchart/qbarset.cpp
@@ -146,6 +146,15 @@ QT_CHARTS_BEGIN_NAMESPACE
*/
/*!
+ \qmlmethod BarSet::clicked(int index)
+
+ This signal is emitted when the user clicks the bar specified by \a index
+ in a bar set.
+
+ The corresponding signal handler is \c onClicked.
+*/
+
+/*!
\fn void QBarSet::pressed(int index)
This signal is emitted when the user clicks the bar specified by \a index in a bar set
@@ -153,6 +162,15 @@ QT_CHARTS_BEGIN_NAMESPACE
*/
/*!
+ \qmlmethod BarSet::pressed(int index)
+
+ This signal is emitted when the user clicks the bar specified by \a index in
+ a bar set and holds down the mouse button.
+
+ The corresponding signal handler is \c onPressed.
+*/
+
+/*!
\fn void QBarSet::released(int index)
This signal is emitted when the user releases the mouse press on the bar specified by
@@ -160,12 +178,30 @@ QT_CHARTS_BEGIN_NAMESPACE
*/
/*!
+ \qmlmethod BarSet::released(int index)
+
+ This signal is emitted when the user releases the mouse press on the bar
+ specified by \a index in a bar set.
+
+ The corresponding signal handler is \c onReleased.
+*/
+
+/*!
\fn void QBarSet::doubleClicked(int index)
This signal is emitted when the user double-clicks the bar specified by \a index in a bar set.
*/
/*!
+ \qmlmethod BarSet::doubleClicked(int index)
+
+ This signal is emitted when the user double-clicks the bar specified by
+ \a index in a bar set.
+
+ The corresponding signal handler is \c onDoubleClicked.
+*/
+
+/*!
\fn void QBarSet::hovered(bool status, int index)
This signal is emitted when a mouse is hovered over the bar specified by \a index in a bar set.