summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKavindra Devi Palaraja <kavindra.palaraja@nokia.com>2009-04-30 11:35:39 (GMT)
committerKavindra Devi Palaraja <kavindra.palaraja@nokia.com>2009-04-30 11:35:39 (GMT)
commit7727a011266e54bd0d1b31416cae81c35e57e694 (patch)
tree06073219e12076b7db901a6a6cf6a56e4ab0c404
parentd355e069ca1952504ef8cc6fb44350b53314d5d5 (diff)
downloadQt-7727a011266e54bd0d1b31416cae81c35e57e694.zip
Qt-7727a011266e54bd0d1b31416cae81c35e57e694.tar.gz
Qt-7727a011266e54bd0d1b31416cae81c35e57e694.tar.bz2
Doc - some cleanups on the documentation of QDrawUtil
-rw-r--r--src/gui/painting/qdrawutil.cpp54
1 files changed, 30 insertions, 24 deletions
diff --git a/src/gui/painting/qdrawutil.cpp b/src/gui/painting/qdrawutil.cpp
index 4898b7e..230d30b 100644
--- a/src/gui/painting/qdrawutil.cpp
+++ b/src/gui/painting/qdrawutil.cpp
@@ -1039,31 +1039,34 @@ void qDrawItem(QPainter *p, Qt::GUIStyle gs,
#endif
/*!
- \struct QMargins
- \since 4.6
+ \struct QMargins
+ \since 4.6
- Holds the borders used to split a pixmap on into nine segments in order to draw it,
- similar to CSS3 border-images \l http://www.w3.org/TR/css3-background/.
+ Holds the borders used to split a pixmap into nine segments in order to
+ draw it, similar to \l{http://www.w3.org/TR/css3-background/}
+ {CSS3 border-images}.
- \sa qDrawBorderPixmap, Qt::TileRule, QTileRules
- */
+ \sa qDrawBorderPixmap, Qt::TileRule, QTileRules
+*/
/*!
- \struct QTileRules
- \since 4.6
+ \struct QTileRules
+ \since 4.6
- Holds the rules used to draw a pixmap or image split into nine segments, similar to CSS3 border-images.
+ Holds the rules used to draw a pixmap or image split into nine segments,
+ similar to \l{http://www.w3.org/TR/css3-background/}{CSS3 border-images}.
- \sa qDrawBorderPixmap, Qt::TileRule, QMargins
- */
+ \sa qDrawBorderPixmap, Qt::TileRule, QMargins
+*/
/*!
- \fn qDrawBorderPixmap(QPainter *painter, const QRect &target, const QMargins &margins, const QPixmap &pixmap)
- \since 4.6
+ \fn qDrawBorderPixmap(QPainter *painter, const QRect &target, const QMargins &margins, const QPixmap &pixmap)
+ \since 4.6
- Draws the given \a pixmap into the given \a target rectangle, using the given \a painter.
- The pixmap will be splitt into nine segments and drawn according to the given \a margins structure.
- */
+ Draws the given \a pixmap into the given \a target rectangle, using the
+ given \a painter. The pixmap will be split into nine segments and drawn
+ according to the \a margins structure.
+*/
static inline void qVerticalRepeat(QPainter *painter, const QRect &target, const QPixmap &pixmap, const QRect &source,
void (*drawPixmap)(QPainter*, const QRect&, const QPixmap&, const QRect&))
@@ -1146,17 +1149,20 @@ static inline void qDrawHorizontallyRoundedPixmap(QPainter *painter, const QRect
}
/*!
- \since 4.6
+ \since 4.6
- Draws the indicated \a sourceRect rectangle from the given \a pixmap into the given \a targetRect rectangle,
- using the given \a painter.
- The pixmap will be splitt into nine segments according to the given \a targetMargins and
- \a sourceMargins structures and drawn according to the given \a rules.
+ Draws the indicated \a sourceRect rectangle from the given \a pixmap into
+ the given \a targetRect rectangle, using the given \a painter. The pixmap
+ will be split into nine segments according to the given \a targetMargins
+ and \a sourceMargins structures. Finally, the pixmap will be drawn
+ according to the given \a rules.
- This function is used to draw a scaled pixmap, similar to CSS3 border-images.
+ This function is used to draw a scaled pixmap, similar to
+ \l{http://www.w3.org/TR/css3-background/}{CSS3 border-images}
+
+ \sa Qt::TileRule, QTileRules, QMargins
+*/
- \sa Qt::TileRule, QTileRules, QMargins
- */
void qDrawBorderPixmap(QPainter *painter, const QRect &targetRect, const QMargins &targetMargins, const QPixmap &pixmap,
const QRect &sourceRect, const QMargins &sourceMargins, const QTileRules &rules)
{