summaryrefslogtreecommitdiffstats
path: root/src/gui/effects
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2009-09-15 23:45:32 (GMT)
committerAlan Alpert <alan.alpert@nokia.com>2009-09-15 23:45:32 (GMT)
commit4e2163a5c4eec9eeacf8c7260dbf8fb7c74d2b44 (patch)
tree31d86c91c526563302887e756ce5f7876f274223 /src/gui/effects
parentadfb5c6160b37a917f20b301366567c208ae52a0 (diff)
parentdcd4b15595a63864ee59a19d80f1ba33b4821aa3 (diff)
downloadQt-4e2163a5c4eec9eeacf8c7260dbf8fb7c74d2b44.zip
Qt-4e2163a5c4eec9eeacf8c7260dbf8fb7c74d2b44.tar.gz
Qt-4e2163a5c4eec9eeacf8c7260dbf8fb7c74d2b44.tar.bz2
Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt into 4.6
Diffstat (limited to 'src/gui/effects')
-rw-r--r--src/gui/effects/qgraphicseffect.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/gui/effects/qgraphicseffect.cpp b/src/gui/effects/qgraphicseffect.cpp
index 26489c5..ee87323 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)
@@ -782,6 +794,8 @@ void QGraphicsPixelizeEffect::draw(QPainter *painter, QGraphicsEffectSource *sou
QGraphicsBlurEffect::QGraphicsBlurEffect(QObject *parent)
: QGraphicsEffect(*new QGraphicsBlurEffectPrivate, parent)
{
+ Q_D(QGraphicsBlurEffect);
+ d->filter->setQuality(Qt::SmoothTransformation);
}
/*!