summaryrefslogtreecommitdiff
path: root/src/controls/Calendar.qml
diff options
context:
space:
mode:
authorSze Howe Koh <szehowe.koh@gmail.com>2014-03-15 10:43:35 +0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-18 12:51:26 +0100
commit6c734a234e7460108c99c2485ac1f80d8a112f29 (patch)
tree3627272ff22bc0d221e8c304ad411489ec5efe7c /src/controls/Calendar.qml
parentb756900bb236190cc23f8cade2bf7440e5235ba4 (diff)
downloadqtquickcontrols-6c734a234e7460108c99c2485ac1f80d8a112f29.tar.gz
Doc: Append handler names to \qmlsignal documentation
Change-Id: I5e06bdf03ba1ba8e5fe7669f690420dc9a039129 Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/controls/Calendar.qml')
-rw-r--r--src/controls/Calendar.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/controls/Calendar.qml b/src/controls/Calendar.qml
index 1fa5d72d..5b56dc76 100644
--- a/src/controls/Calendar.qml
+++ b/src/controls/Calendar.qml
@@ -217,6 +217,8 @@ Control {
Emitted when the mouse hovers over a valid date in the calendar.
\a date is the date that was hovered over.
+
+ The corresponding handler is \c onHovered.
*/
signal hovered(date date)
@@ -228,6 +230,8 @@ Control {
This is also emitted when dragging the mouse to another date while it is pressed.
\a date is the date that the mouse was pressed on.
+
+ The corresponding handler is \c onPressed.
*/
signal pressed(date date)
@@ -237,6 +241,8 @@ Control {
Emitted when the mouse is released over a valid date in the calendar.
\a date is the date that the mouse was released over.
+
+ The corresponding handler is \c onReleased.
*/
signal released(date date)
@@ -246,6 +252,8 @@ Control {
Emitted when the mouse is clicked on a valid date in the calendar.
\a date is the date that the mouse was clicked on.
+
+ The corresponding handler is \c onClicked.
*/
signal clicked(date date)
@@ -255,6 +263,8 @@ Control {
Emitted when the mouse is double-clicked on a valid date in the calendar.
\a date is the date that the mouse was double-clicked on.
+
+ The corresponding handler is \c onDoubleClicked.
*/
signal doubleClicked(date date)