summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2009-09-15 10:05:50 (GMT)
committerMartin Smith <msmith@trolltech.com>2009-09-15 10:07:10 (GMT)
commitf60e8c21c1d031daa8984461f9e5a6988e3ce2e7 (patch)
treee179d3d31ece2dcd938287b189316cd26e88ad0b
parent4a7e5c25339a7d52cbcd7d4c6ff792f7d991a70c (diff)
downloadQt-f60e8c21c1d031daa8984461f9e5a6988e3ce2e7.zip
Qt-f60e8c21c1d031daa8984461f9e5a6988e3ce2e7.tar.gz
Qt-f60e8c21c1d031daa8984461f9e5a6988e3ce2e7.tar.bz2
doc: Fixed some qdoc errors.
-rw-r--r--src/gui/effects/qgraphicseffect.cpp12
-rw-r--r--src/gui/graphicsview/qgraphicsanchorlayout.cpp45
-rw-r--r--src/svg/qgraphicssvgitem.cpp17
3 files changed, 29 insertions, 45 deletions
diff --git a/src/gui/effects/qgraphicseffect.cpp b/src/gui/effects/qgraphicseffect.cpp
index 26489c5..c0877a4 100644
--- a/src/gui/effects/qgraphicseffect.cpp
+++ b/src/gui/effects/qgraphicseffect.cpp
@@ -493,6 +493,12 @@ void QGraphicsGrayscaleEffect::setStrength(qreal strength)
emit strengthChanged(strength);
}
+/*! \fn void QGraphicsGrayscaleEffect::strengthChanged(qreal strength)
+ This signal is emitted whenever setStrength() changes the grayscale
+ strength property. \a strength contains the new strength value of
+ the grayscale effect.
+ */
+
/*!
\reimp
*/
@@ -602,6 +608,12 @@ void QGraphicsColorizeEffect::setStrength(qreal strength)
emit strengthChanged(strength);
}
+/*! \fn void QGraphicsColorizeEffect::strengthChanged(qreal strength)
+ This signal is emitted whenever setStrength() changes the colorize
+ strength property. \a strength contains the new strength value of
+ the colorize effect.
+ */
+
/*!
\fn void QGraphicsColorizeEffect::colorChanged(const QColor &color)
diff --git a/src/gui/graphicsview/qgraphicsanchorlayout.cpp b/src/gui/graphicsview/qgraphicsanchorlayout.cpp
index f57f65f..5897ae4 100644
--- a/src/gui/graphicsview/qgraphicsanchorlayout.cpp
+++ b/src/gui/graphicsview/qgraphicsanchorlayout.cpp
@@ -257,9 +257,9 @@ void QGraphicsAnchorLayout::addCornerAnchors(QGraphicsLayoutItem *firstItem,
}
/*!
- Anchors two or four edges of \a firstItem with the corresponding edges of \secondItem,
- so that \a firstItem has the same size as \a secondItem in the dimensions specified by
- \a orientation.
+ Anchors two or four edges of \a firstItem with the corresponding
+ edges of \a secondItem, so that \a firstItem has the same size as
+ \a secondItem in the dimensions specified by \a orientations.
Calling this convenience function with the following arguments
\code
@@ -288,45 +288,6 @@ void QGraphicsAnchorLayout::addAnchors(QGraphicsLayoutItem *firstItem,
}
/*!
- \fn QGraphicsAnchorLayout::addLeftAndRightAnchors(QGraphicsLayoutItem *firstItem, QGraphicsLayoutItem *secondItem)
-
- Anchors the left and right edges of \a firstItem to the same edges of
- \a secondItem.
-
- This convenience function is equivalent to calling
- \code
- l->addAnchor(firstItem, Qt::AnchorLeft, secondItem, Qt::AnchorLeft);
- l->addAnchor(firstItem, Qt::AnchorRight, secondItem, Qt::AnchorRight);
- \endcode
-*/
-
-/*!
- \fn QGraphicsAnchorLayout::addTopAndBottomAnchors(QGraphicsLayoutItem *firstItem, QGraphicsLayoutItem *secondItem)
-
- Anchors the top and bottom edges of \a firstItem to the same edges of
- \a secondItem.
-
- This convenience function is equivalent to calling
- \code
- l->addAnchor(firstItem, Qt::AnchorTop, secondItem, Qt::AnchorTop);
- l->addAnchor(firstItem, Qt::AnchorBottom, secondItem, Qt::AnchorBottom);
- \endcode
-*/
-
-/*!
- \fn QGraphicsAnchorLayout::addAllAnchors(QGraphicsLayoutItem *firstItem, QGraphicsLayoutItem *secondItem)
-
- Anchors all edges (left, right, top and bottom) of \a firstItem to the same edges of
- \a secondItem.
-
- This convenience function is equivalent to calling
- \code
- l->addLeftAndRightAnchors(firstItem, secondItem);
- l->addTopAndBottomAnchors(firstItem, secondItem);
- \endcode
-*/
-
-/*!
Sets the default horizontal spacing for the anchor layout to \a spacing.
\sa horizontalSpacing(), setVerticalSpacing(), setSpacing()
diff --git a/src/svg/qgraphicssvgitem.cpp b/src/svg/qgraphicssvgitem.cpp
index ea26c78..bcdd821 100644
--- a/src/svg/qgraphicssvgitem.cpp
+++ b/src/svg/qgraphicssvgitem.cpp
@@ -265,6 +265,12 @@ int QGraphicsSvgItem::type() const
return Type;
}
+/*!
+ \property QGraphicsSvgItem::maximumCacheSize
+
+ This property holds the maximum size of the device coordinate cache
+ for this item.
+ */
/*!
Sets the maximum device coordinate cache size of the item to \a size.
@@ -305,8 +311,13 @@ QSize QGraphicsSvgItem::maximumCacheSize() const
}
/*!
- Sets the XML ID of the element that this item should render to \a
- id.
+ \property QGraphicsSvgItem::elementId
+
+ This property holds the element's XML ID.
+ */
+
+/*!
+ Sets the XML ID of the element to \a id.
*/
void QGraphicsSvgItem::setElementId(const QString &id)
{
@@ -318,7 +329,7 @@ void QGraphicsSvgItem::setElementId(const QString &id)
/*!
Returns the XML ID the element that is currently
- being renderer. Returns an empty string if the whole
+ being rendered. Returns an empty string if the whole
file is being rendered.
*/
QString QGraphicsSvgItem::elementId() const