diff options
author | Martin Smith <msmith@trolltech.com> | 2009-05-05 08:39:11 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-05-05 08:39:11 (GMT) |
commit | ca4d0be72c35cd693cab61b35831f8392a44e09c (patch) | |
tree | 9b59d3647c04613bdc7f145613e038486932c327 /src | |
parent | 895e6a4254adf8a2e01e76bc0770d983372d8500 (diff) | |
download | Qt-ca4d0be72c35cd693cab61b35831f8392a44e09c.zip Qt-ca4d0be72c35cd693cab61b35831f8392a44e09c.tar.gz Qt-ca4d0be72c35cd693cab61b35831f8392a44e09c.tar.bz2 |
qdoc: Corrected some qdoc warnings.
Diffstat (limited to 'src')
-rw-r--r-- | src/declarative/fx/qfxitem.cpp | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/declarative/fx/qfxitem.cpp b/src/declarative/fx/qfxitem.cpp index 84dc484..380dd53 100644 --- a/src/declarative/fx/qfxitem.cpp +++ b/src/declarative/fx/qfxitem.cpp @@ -476,6 +476,10 @@ void QFxItem::setItemParent(QFxItem *parent) \property QFxItem::moveToParent Playing around with view2view transitions. */ + +/*! + \internal + */ void QFxItem::moveToParent(QFxItem *parent) { if (parent && itemParent()) { @@ -792,6 +796,9 @@ QFxContents *QFxItem::contents() \property QFxItem::qmlItem */ +/*! \fn QFxItem *QFxItem::qmlItem() const + \internal + */ QFxItem *QFxItem::qmlItem() const { Q_D(const QFxItem); @@ -807,6 +814,13 @@ QFxItem *QFxItem::qmlItem() const dynamically set; otherwise an empty string is returned. */ +/*! \fn void QFxItem::qmlChanged() + This signal is emitted whenever the item's dynamic QML + string changes. + + \sa setQml() + */ + /*! \property QFxItem::qml This property holds the dynamic QML for the item. @@ -858,7 +872,14 @@ void QFxItem::setQml(const QString &qml) } } +/*! \fn void QFxItem::newChildCreated(const QString &url, QScriptValue v) + This signal is emitted with the \a url and the script value \a v, + when a new child is created. + */ +/*! + \internal + */ void QFxItem::qmlLoaded() { Q_D(QFxItem); @@ -1007,6 +1028,11 @@ void QFxItem::qmlLoaded() \endtable */ +/*! + This function is called to handle this item's changes in + geometry from \a oldGeometry to \a newGeometry. If the two + geometries are the same, it doesn't do anything. + */ void QFxItem::geometryChanged(const QRectF &newGeometry, const QRectF &oldGeometry) { @@ -1138,6 +1164,13 @@ void QFxItem::setFlipHorizontally(bool v) setFlip((QSimpleCanvasItem::Flip)(flip() & ~HorizontalFlip)); } +/*! \fn void QFxItem::keyPress(QFxKeyEvent *event) + This signal is emitted by keyPressEvent() for the \a event. + */ + +/*! \fn void QFxItem::keyRelease(QFxKeyEvent *event) + This signal is emitted by keyReleaseEvent() for the \a event. + */ /*! \reimp @@ -1440,6 +1473,12 @@ void QFxItem::setBaselineOffset(int offset) \endtable */ +/*! \fn void QFxItem::rotationChanged() + This signal is emitted when the rotation property is changed. + + \sa setRotation() + */ + /*! \property QFxItem::rotation This property holds the rotation of the item in degrees. @@ -1592,12 +1631,20 @@ void QFxItem::setOpacity(qreal v) emit opacityChanged(); } +/*! + Returns a value indicating whether the mouse should + remain with this item. + */ bool QFxItem::keepMouseGrab() const { Q_D(const QFxItem); return d->_keepMouse; } +/*! + The flag indicating whether the mouse should remain + with this item is set to \a keep. + */ void QFxItem::setKeepMouseGrab(bool keep) { Q_D(QFxItem); |