diff options
-rw-r--r-- | src/corelib/global/qnamespace.qdoc | 13 | ||||
-rw-r--r-- | src/gui/effects/qgraphicseffect.cpp | 21 |
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) |