summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBjørn Erik Nilsen <bjorn.nilsen@nokia.com>2009-09-30 13:12:46 (GMT)
committerBjørn Erik Nilsen <bjorn.nilsen@nokia.com>2009-09-30 14:42:16 (GMT)
commitad2a693584bd2892a568e3830b1c390d6e5f012a (patch)
tree1ad592e66717bc9be4eec648bbffdfc636d30cf8 /src
parent7ca2f8ee15fbac8dce815678d7d63748d3187cb8 (diff)
downloadQt-ad2a693584bd2892a568e3830b1c390d6e5f012a.zip
Qt-ad2a693584bd2892a568e3830b1c390d6e5f012a.tar.gz
Qt-ad2a693584bd2892a568e3830b1c390d6e5f012a.tar.bz2
Doc: Remaining pieces of the Graphics effect documentation.
Diffstat (limited to 'src')
-rw-r--r--src/corelib/global/qnamespace.qdoc13
-rw-r--r--src/gui/effects/qgraphicseffect.cpp21
2 files changed, 34 insertions, 0 deletions
diff --git a/src/corelib/global/qnamespace.qdoc b/src/corelib/global/qnamespace.qdoc
index 1833b96..684ebca 100644
--- a/src/corelib/global/qnamespace.qdoc
+++ b/src/corelib/global/qnamespace.qdoc
@@ -2776,6 +2776,19 @@
*/
/*!
+ \enum Qt::CoordinateSystem
+ \since 4.6
+
+ This enum specifies the coordinate system.
+
+ \value DeviceCoordinates Coordinates are relative to the upper-left corner
+ of the object's paint device.
+
+ \value LogicalCoordinates Coordinates are relative to the upper-left corner
+ of the object.
+*/
+
+/*!
\enum Qt::GestureState
\since 4.6
diff --git a/src/gui/effects/qgraphicseffect.cpp b/src/gui/effects/qgraphicseffect.cpp
index 4a59301..e971fd8 100644
--- a/src/gui/effects/qgraphicseffect.cpp
+++ b/src/gui/effects/qgraphicseffect.cpp
@@ -1363,6 +1363,13 @@ void QGraphicsBloomEffect::setBlurRadius(int radius)
}
/*!
+ \fn void QGraphicsBloomEffect::blurRadiusChanged(int blurRadius)
+
+ This signal is emitted whenever the effect's blur radius changes.
+ The \a blurRadius parameter holds the effect's new blur radius.
+*/
+
+/*!
\property QGraphicsBloomEffect::blurHint
\brief the blur hint of the effect.
@@ -1429,6 +1436,13 @@ void QGraphicsBloomEffect::setBrightness(int brightness)
}
/*!
+ \fn void QGraphicsBloomEffect::brightnessChanged(int brightness)
+
+ This signal is emitted whenever the effect's brightness changes.
+ The \a brightness parameter holds the effect's new brightness.
+*/
+
+/*!
\property QGraphicsBloomEffect::strength
\brief the strength of the effect.
@@ -1455,6 +1469,13 @@ void QGraphicsBloomEffect::setStrength(qreal strength)
}
/*!
+ \fn void QGraphicsBloomEffect::strengthChanged(qreal strength)
+
+ This signal is emitted whenever the effect's strength changes.
+ The \a strength parameter holds the effect's new strength.
+*/
+
+/*!
\reimp
*/
void QGraphicsBloomEffect::draw(QPainter *painter, QGraphicsEffectSource *source)