aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/types
diff options
context:
space:
mode:
authorSze Howe Koh <szehowe.koh@gmail.com>2014-03-09 13:02:01 +0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-11 14:21:18 +0100
commit0e09aa0f2b64e8f62703a34018352cc3fa18fffc (patch)
treecbc458d03e85c9c7ad445f8e51d750ca35c50873 /src/qml/types
parent59fa9e3bb49ccdf1a764599aab63950bf156c370 (diff)
Doc: Qt QML: Document signals (not handlers) under \qmlsignal
Task-number: QTBUG-35846 Change-Id: I989617865a79bfbf1f1ffd3b105598025dde54c5 Reviewed-by: Mitch Curtis <mitch.curtis@digia.com> Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/qml/types')
-rw-r--r--src/qml/types/qqmldelegatemodel.cpp6
-rw-r--r--src/qml/types/qqmlinstantiator.cpp14
-rw-r--r--src/qml/types/qqmltimer.cpp6
3 files changed, 17 insertions, 9 deletions
diff --git a/src/qml/types/qqmldelegatemodel.cpp b/src/qml/types/qqmldelegatemodel.cpp
index e0d9094387..910cec9087 100644
--- a/src/qml/types/qqmldelegatemodel.cpp
+++ b/src/qml/types/qqmldelegatemodel.cpp
@@ -2915,15 +2915,17 @@ void QQmlDelegateModelGroup::move(QQmlV4Function *args)
}
/*!
- \qmlsignal QtQml.Models::DelegateModelGroup::onChanged(array removed, array inserted)
+ \qmlsignal QtQml.Models::DelegateModelGroup::changed(array removed, array inserted)
- This handler is called when items have been removed from or inserted into the group.
+ This signal is emitted when items have been removed from or inserted into the group.
Each object in the \a removed and \a inserted arrays has two values; the \e index of the first
item inserted or removed and a \e count of the number of consecutive items inserted or removed.
Each index is adjusted for previous changes with all removed items preceding any inserted
items.
+
+ The corresponding handler is \c onChanged.
*/
//============================================================================
diff --git a/src/qml/types/qqmlinstantiator.cpp b/src/qml/types/qqmlinstantiator.cpp
index c28cfad9e3..724a76825b 100644
--- a/src/qml/types/qqmlinstantiator.cpp
+++ b/src/qml/types/qqmlinstantiator.cpp
@@ -212,22 +212,26 @@ QQmlInstantiator::~QQmlInstantiator()
}
/*!
- \qmlsignal QtQml::Instantiator::onObjectAdded(int index, QtObject object)
+ \qmlsignal QtQml::Instantiator::objectAdded(int index, QtObject object)
- This handler is called when an object is added to the Instantiator. The \a index
+ This signal is emitted when an object is added to the Instantiator. The \a index
parameter holds the index which the object has been given, and the \a object
parameter holds the \l QtObject that has been added.
+
+ The corresponding handler is \c onObjectAdded.
*/
/*!
- \qmlsignal QtQml::Instantiator::onObjectRemoved(int index, QtObject object)
+ \qmlsignal QtQml::Instantiator::objectRemoved(int index, QtObject object)
- This handler is called when an object is added to the Instantiator. The \a index
+ This signal is emitted when an object is removed from the Instantiator. The \a index
parameter holds the index which the object had been given, and the \a object
parameter holds the \l QtObject that has been removed.
Do not keep a reference to \a object if it was created by this Instantiator, as
- in these cases it will be deleted shortly after the handler is called.
+ in these cases it will be deleted shortly after the signal is handled.
+
+ The corresponding handler is \c onObjectRemoved.
*/
/*!
\qmlproperty bool QtQml::Instantiator::active
diff --git a/src/qml/types/qqmltimer.cpp b/src/qml/types/qqmltimer.cpp
index 32018c1f03..b9e28b881c 100644
--- a/src/qml/types/qqmltimer.cpp
+++ b/src/qml/types/qqmltimer.cpp
@@ -302,9 +302,11 @@ void QQmlTimer::componentComplete()
}
/*!
- \qmlsignal QtQml::Timer::onTriggered()
+ \qmlsignal QtQml::Timer::triggered()
- This handler is called when the Timer is triggered.
+ This signal is emitted when the Timer times out.
+
+ The corresponding handler is \c onTriggered.
*/
void QQmlTimer::ticked()
{