Sophie

Sophie

distrib > Mandriva > current > i586 > media > main-updates > by-pkgid > 8e6051afcdb111a0317a58fb64c2abf5 > files > 245

qt4-doc-4.6.3-0.2mdv2010.2.i586.rpm

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <title>Qt 4.6: pathdeform.cpp Example File (demos/deform/pathdeform.cpp)</title>
  <link href="classic.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td align="left" valign="top" width="32"><a href="http://qt.nokia.com/"><img src="images/qt-logo.png" align="left" border="0" /></a></td>
<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&nbsp;&middot; <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">All&nbsp;Functions</font></a>&nbsp;&middot; <a href="overviews.html"><font color="#004faf">Overviews</font></a></td></tr></table><h1 class="title">pathdeform.cpp Example File<br /><span class="small-subtitle">demos/deform/pathdeform.cpp</span>
</h1>
<pre><span class="comment"> /****************************************************************************
 **
 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
 ** All rights reserved.
 ** Contact: Nokia Corporation (qt-info@nokia.com)
 **
 ** This file is part of the demonstration applications of the Qt Toolkit.
 **
 ** $QT_BEGIN_LICENSE:LGPL$
 ** Commercial Usage
 ** Licensees holding valid Qt Commercial licenses may use this file in
 ** accordance with the Qt Commercial License Agreement provided with the
 ** Software or, alternatively, in accordance with the terms contained in
 ** a written agreement between you and Nokia.
 **
 ** GNU Lesser General Public License Usage
 ** Alternatively, this file may be used under the terms of the GNU Lesser
 ** General Public License version 2.1 as published by the Free Software
 ** Foundation and appearing in the file LICENSE.LGPL included in the
 ** packaging of this file.  Please review the following information to
 ** ensure the GNU Lesser General Public License version 2.1 requirements
 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 **
 ** In addition, as a special exception, Nokia gives you certain additional
 ** rights.  These rights are described in the Nokia Qt LGPL Exception
 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 **
 ** GNU General Public License Usage
 ** Alternatively, this file may be used under the terms of the GNU
 ** General Public License version 3.0 as published by the Free Software
 ** Foundation and appearing in the file LICENSE.GPL included in the
 ** packaging of this file.  Please review the following information to
 ** ensure the GNU General Public License version 3.0 requirements will be
 ** met: http://www.gnu.org/copyleft/gpl.html.
 **
 ** If you have questions regarding the use of this file, please contact
 ** Nokia at qt-info@nokia.com.
 ** $QT_END_LICENSE$
 **
 ****************************************************************************/</span>

 #include &quot;pathdeform.h&quot;

 #include &lt;QApplication&gt;
 #include &lt;QtDebug&gt;
 #include &lt;QMouseEvent&gt;
 #include &lt;QTimerEvent&gt;
 #include &lt;QLayout&gt;
 #include &lt;QLineEdit&gt;
 #include &lt;QPainter&gt;
 #include &lt;QSlider&gt;
 #include &lt;QLabel&gt;
 #include &lt;QDesktopWidget&gt;
 #include &lt;qmath.h&gt;

 PathDeformControls::PathDeformControls(QWidget *parent, PathDeformRenderer* renderer, bool smallScreen)
       : QWidget(parent)
 {
     m_renderer = renderer;

     if (smallScreen)
         layoutForSmallScreen();
     else
         layoutForDesktop();
 }

 void PathDeformControls::layoutForDesktop()
 {
     QGroupBox* mainGroup = new QGroupBox(this);
     mainGroup-&gt;setTitle(tr(&quot;Controls&quot;));

     QGroupBox *radiusGroup = new QGroupBox(mainGroup);
     radiusGroup-&gt;setTitle(tr(&quot;Lens Radius&quot;));
     QSlider *radiusSlider = new QSlider(Qt::Horizontal, radiusGroup);
     radiusSlider-&gt;setRange(15, 150);
     radiusSlider-&gt;setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed);

     QGroupBox *deformGroup = new QGroupBox(mainGroup);
     deformGroup-&gt;setTitle(tr(&quot;Deformation&quot;));
     QSlider *deformSlider = new QSlider(Qt::Horizontal, deformGroup);
     deformSlider-&gt;setRange(-100, 100);
     deformSlider-&gt;setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed);

     QGroupBox *fontSizeGroup = new QGroupBox(mainGroup);
     fontSizeGroup-&gt;setTitle(tr(&quot;Font Size&quot;));
     QSlider *fontSizeSlider = new QSlider(Qt::Horizontal, fontSizeGroup);
     fontSizeSlider-&gt;setRange(16, 200);
     fontSizeSlider-&gt;setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed);

     QGroupBox *textGroup = new QGroupBox(mainGroup);
     textGroup-&gt;setTitle(tr(&quot;Text&quot;));
     QLineEdit *textInput = new QLineEdit(textGroup);

     QPushButton *animateButton = new QPushButton(mainGroup);
     animateButton-&gt;setText(tr(&quot;Animated&quot;));
     animateButton-&gt;setCheckable(true);

     QPushButton *showSourceButton = new QPushButton(mainGroup);
     showSourceButton-&gt;setText(tr(&quot;Show Source&quot;));

 #ifdef QT_OPENGL_SUPPORT
     QPushButton *enableOpenGLButton = new QPushButton(mainGroup);
     enableOpenGLButton-&gt;setText(tr(&quot;Use OpenGL&quot;));
     enableOpenGLButton-&gt;setCheckable(true);
     enableOpenGLButton-&gt;setChecked(m_renderer-&gt;usesOpenGL());
     if (!QGLFormat::hasOpenGL())
         enableOpenGLButton-&gt;hide();
 #endif

     QPushButton *whatsThisButton = new QPushButton(mainGroup);
     whatsThisButton-&gt;setText(tr(&quot;What's This?&quot;));
     whatsThisButton-&gt;setCheckable(true);

     mainGroup-&gt;setFixedWidth(180);

     QVBoxLayout *mainGroupLayout = new QVBoxLayout(mainGroup);
     mainGroupLayout-&gt;addWidget(radiusGroup);
     mainGroupLayout-&gt;addWidget(deformGroup);
     mainGroupLayout-&gt;addWidget(fontSizeGroup);
     mainGroupLayout-&gt;addWidget(textGroup);
     mainGroupLayout-&gt;addWidget(animateButton);
     mainGroupLayout-&gt;addStretch(1);
 #ifdef QT_OPENGL_SUPPORT
     mainGroupLayout-&gt;addWidget(enableOpenGLButton);
 #endif
     mainGroupLayout-&gt;addWidget(showSourceButton);
     mainGroupLayout-&gt;addWidget(whatsThisButton);

     QVBoxLayout *radiusGroupLayout = new QVBoxLayout(radiusGroup);
     radiusGroupLayout-&gt;addWidget(radiusSlider);

     QVBoxLayout *deformGroupLayout = new QVBoxLayout(deformGroup);
     deformGroupLayout-&gt;addWidget(deformSlider);

     QVBoxLayout *fontSizeGroupLayout = new QVBoxLayout(fontSizeGroup);
     fontSizeGroupLayout-&gt;addWidget(fontSizeSlider);

     QVBoxLayout *textGroupLayout = new QVBoxLayout(textGroup);
     textGroupLayout-&gt;addWidget(textInput);

     QVBoxLayout * mainLayout = new QVBoxLayout(this);
     mainLayout-&gt;addWidget(mainGroup);
     mainLayout-&gt;setMargin(0);

     connect(radiusSlider, SIGNAL(valueChanged(int)), m_renderer, SLOT(setRadius(int)));
     connect(deformSlider, SIGNAL(valueChanged(int)), m_renderer, SLOT(setIntensity(int)));
     connect(fontSizeSlider, SIGNAL(valueChanged(int)), m_renderer, SLOT(setFontSize(int)));
     connect(animateButton, SIGNAL(clicked(bool)), m_renderer, SLOT(setAnimated(bool)));
 #ifdef QT_OPENGL_SUPPORT
     connect(enableOpenGLButton, SIGNAL(clicked(bool)), m_renderer, SLOT(enableOpenGL(bool)));
 #endif

     connect(textInput, SIGNAL(textChanged(QString)), m_renderer, SLOT(setText(QString)));
     connect(m_renderer, SIGNAL(descriptionEnabledChanged(bool)),
             whatsThisButton, SLOT(setChecked(bool)));
     connect(whatsThisButton, SIGNAL(clicked(bool)), m_renderer, SLOT(setDescriptionEnabled(bool)));
     connect(showSourceButton, SIGNAL(clicked()), m_renderer, SLOT(showSource()));

     animateButton-&gt;animateClick();
     deformSlider-&gt;setValue(80);
     fontSizeSlider-&gt;setValue(120);
     radiusSlider-&gt;setValue(100);
     textInput-&gt;setText(tr(&quot;Qt&quot;));
 }

 void PathDeformControls::layoutForSmallScreen()
 {
     QGroupBox* mainGroup = new QGroupBox(this);
     mainGroup-&gt;setTitle(tr(&quot;Controls&quot;));

     QLabel *radiusLabel = new QLabel(mainGroup);
     radiusLabel-&gt;setText(tr(&quot;Lens Radius:&quot;));
     QSlider *radiusSlider = new QSlider(Qt::Horizontal, mainGroup);
     radiusSlider-&gt;setRange(15, 150);
     radiusSlider-&gt;setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);

     QLabel *deformLabel = new QLabel(mainGroup);
     deformLabel-&gt;setText(tr(&quot;Deformation:&quot;));
     QSlider *deformSlider = new QSlider(Qt::Horizontal, mainGroup);
     deformSlider-&gt;setRange(-100, 100);
     deformSlider-&gt;setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);

     QLabel *fontSizeLabel = new QLabel(mainGroup);
     fontSizeLabel-&gt;setText(tr(&quot;Font Size:&quot;));
     QSlider *fontSizeSlider = new QSlider(Qt::Horizontal, mainGroup);
     fontSizeSlider-&gt;setRange(16, 200);
     fontSizeSlider-&gt;setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);

     QPushButton *animateButton = new QPushButton(tr(&quot;Animated&quot;), mainGroup);
     animateButton-&gt;setCheckable(true);

 #ifdef QT_OPENGL_SUPPORT
     QPushButton *enableOpenGLButton = new QPushButton(mainGroup);
     enableOpenGLButton-&gt;setText(tr(&quot;Use OpenGL&quot;));
     enableOpenGLButton-&gt;setCheckable(mainGroup);
     enableOpenGLButton-&gt;setChecked(m_renderer-&gt;usesOpenGL());
     if (!QGLFormat::hasOpenGL())
         enableOpenGLButton-&gt;hide();
 #endif

     QPushButton *quitButton = new QPushButton(tr(&quot;Quit&quot;), mainGroup);
     QPushButton *okButton = new QPushButton(tr(&quot;OK&quot;), mainGroup);

     QGridLayout *mainGroupLayout = new QGridLayout(mainGroup);
     mainGroupLayout-&gt;setMargin(0);
     mainGroupLayout-&gt;addWidget(radiusLabel, 0, 0, Qt::AlignRight);
     mainGroupLayout-&gt;addWidget(radiusSlider, 0, 1);
     mainGroupLayout-&gt;addWidget(deformLabel, 1, 0, Qt::AlignRight);
     mainGroupLayout-&gt;addWidget(deformSlider, 1, 1);
     mainGroupLayout-&gt;addWidget(fontSizeLabel, 2, 0, Qt::AlignRight);
     mainGroupLayout-&gt;addWidget(fontSizeSlider, 2, 1);
     mainGroupLayout-&gt;addWidget(animateButton, 3,0, 1,2);
 #ifdef QT_OPENGL_SUPPORT
     mainGroupLayout-&gt;addWidget(enableOpenGLButton, 4,0, 1,2);
 #endif

     QVBoxLayout *mainLayout = new QVBoxLayout(this);
     mainLayout-&gt;addWidget(mainGroup);
     mainLayout-&gt;addStretch(1);
     mainLayout-&gt;addWidget(okButton);
     mainLayout-&gt;addWidget(quitButton);

     connect(quitButton, SIGNAL(clicked()), this, SLOT(emitQuitSignal()));
     connect(okButton, SIGNAL(clicked()), this, SLOT(emitOkSignal()));
     connect(radiusSlider, SIGNAL(valueChanged(int)), m_renderer, SLOT(setRadius(int)));
     connect(deformSlider, SIGNAL(valueChanged(int)), m_renderer, SLOT(setIntensity(int)));
     connect(fontSizeSlider, SIGNAL(valueChanged(int)), m_renderer, SLOT(setFontSize(int)));
     connect(animateButton, SIGNAL(clicked(bool)), m_renderer, SLOT(setAnimated(bool)));
 #ifdef QT_OPENGL_SUPPORT
     connect(enableOpenGLButton, SIGNAL(clicked(bool)), m_renderer, SLOT(enableOpenGL(bool)));
 #endif

     animateButton-&gt;animateClick();
     deformSlider-&gt;setValue(80);
     fontSizeSlider-&gt;setValue(120);

     QRect screen_size = QApplication::desktop()-&gt;screenGeometry();
     radiusSlider-&gt;setValue(qMin(screen_size.width(), screen_size.height())/5);

     m_renderer-&gt;setText(tr(&quot;Qt&quot;));
 }

 void PathDeformControls::emitQuitSignal()
 {   emit quitPressed();  }

 void PathDeformControls::emitOkSignal()
 {   emit okPressed();   }

 PathDeformWidget::PathDeformWidget(QWidget *parent, bool smallScreen)
     : QWidget(parent)
 {
     setWindowTitle(tr(&quot;Vector Deformation&quot;));

     m_renderer = new PathDeformRenderer(this, smallScreen);
     m_renderer-&gt;setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);

     <span class="comment">// Layouts</span>
     QHBoxLayout *mainLayout = new QHBoxLayout(this);
     mainLayout-&gt;addWidget(m_renderer);

     m_controls = new PathDeformControls(0, m_renderer, smallScreen);
     m_controls-&gt;setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Minimum);

     if (!smallScreen)
         mainLayout-&gt;addWidget(m_controls);

     m_renderer-&gt;loadSourceFile(&quot;:res/deform/pathdeform.cpp&quot;);
     m_renderer-&gt;loadDescription(&quot;:res/deform/pathdeform.html&quot;);
     m_renderer-&gt;setDescriptionEnabled(false);

     connect(m_renderer, SIGNAL(clicked()), this, SLOT(showControls()));
     connect(m_controls, SIGNAL(okPressed()), this, SLOT(hideControls()));
     connect(m_controls, SIGNAL(quitPressed()), QApplication::instance(), SLOT(quit()));
 }

 void PathDeformWidget::showControls()
 {
     m_controls-&gt;showFullScreen();
 }

 void PathDeformWidget::hideControls()
 {
     m_controls-&gt;hide();
 }

 void PathDeformWidget::setStyle( QStyle * style )
 {
     QWidget::setStyle(style);
     if (m_controls != 0)
     {
         m_controls-&gt;setStyle(style);

         QList&lt;QWidget *&gt; widgets = qFindChildren&lt;QWidget *&gt;(m_controls);
         foreach (QWidget *w, widgets)
             w-&gt;setStyle(style);
     }
 }

 static inline QRect circle_bounds(const QPointF &amp;center, qreal radius, qreal compensation)
 {
     return QRect(qRound(center.x() - radius - compensation),
                  qRound(center.y() - radius - compensation),
                  qRound((radius + compensation) * 2),
                  qRound((radius + compensation) * 2));

 }

 const int LENS_EXTENT = 10;

 PathDeformRenderer::PathDeformRenderer(QWidget *widget, bool smallScreen)
     : ArthurFrame(widget)
 {
     m_radius = 100;
     m_pos = QPointF(m_radius, m_radius);
     m_direction = QPointF(1, 1);
     m_fontSize = 24;
     m_animated = true;
     m_repaintTimer.start(25, this);
     m_repaintTracker.start();
     m_intensity = 100;
     m_smallScreen = smallScreen;

<span class="comment"> //     m_fpsTimer.start(1000, this);</span>
<span class="comment"> //     m_fpsCounter = 0;</span>

     generateLensPixmap();
 }

 void PathDeformRenderer::setText(const QString &amp;text)
 {
     m_text = text;

     QFont f(&quot;times new roman,utopia&quot;);
     f.setStyleStrategy(QFont::ForceOutline);
     f.setPointSize(m_fontSize);
     f.setStyleHint(QFont::Times);

     QFontMetrics fm(f);

     m_paths.clear();
     m_pathBounds = QRect();

     QPointF advance(0, 0);

     bool do_quick = true;
     for (int i=0; i&lt;text.size(); ++i) {
         if (text.at(i).unicode() &gt;= 0x4ff &amp;&amp; text.at(i).unicode() &lt;= 0x1e00) {
             do_quick = false;
             break;
         }
     }

     if (do_quick) {
         for (int i=0; i&lt;text.size(); ++i) {
             QPainterPath path;
             path.addText(advance, f, text.mid(i, 1));
             m_pathBounds |= path.boundingRect();
             m_paths &lt;&lt; path;
             advance += QPointF(fm.width(text.mid(i, 1)), 0);
         }
     } else {
         QPainterPath path;
         path.addText(advance, f, text);
         m_pathBounds |= path.boundingRect();
         m_paths &lt;&lt; path;
     }

     for (int i=0; i&lt;m_paths.size(); ++i)
         m_paths[i] = m_paths[i] * QMatrix(1, 0, 0, 1, -m_pathBounds.x(), -m_pathBounds.y());

     update();
 }

 void PathDeformRenderer::generateLensPixmap()
 {
     qreal rad = m_radius + LENS_EXTENT;

     QRect bounds = circle_bounds(QPointF(), rad, 0);

     QPainter painter;

     if (preferImage()) {
         m_lens_image = QImage(bounds.size(), QImage::Format_ARGB32_Premultiplied);
         m_lens_image.fill(0);
         painter.begin(&amp;m_lens_image);
     } else {
         m_lens_pixmap = QPixmap(bounds.size());
         m_lens_pixmap.fill(Qt::transparent);
         painter.begin(&amp;m_lens_pixmap);
     }

     QRadialGradient gr(rad, rad, rad, 3 * rad / 5, 3 * rad / 5);
     gr.setColorAt(0.0, QColor(255, 255, 255, 191));
     gr.setColorAt(0.2, QColor(255, 255, 127, 191));
     gr.setColorAt(0.9, QColor(150, 150, 200, 63));
     gr.setColorAt(0.95, QColor(0, 0, 0, 127));
     gr.setColorAt(1, QColor(0, 0, 0, 0));
     painter.setRenderHint(QPainter::Antialiasing);
     painter.setBrush(gr);
     painter.setPen(Qt::NoPen);
     painter.drawEllipse(0, 0, bounds.width(), bounds.height());
 }

 void PathDeformRenderer::setAnimated(bool animated)
 {
     m_animated = animated;

     if (m_animated) {
<span class="comment"> //         m_fpsTimer.start(1000, this);</span>
<span class="comment"> //         m_fpsCounter = 0;</span>
         m_repaintTimer.start(25, this);
         m_repaintTracker.start();
     } else {
<span class="comment"> //         m_fpsTimer.stop();</span>
         m_repaintTimer.stop();
     }
 }

 void PathDeformRenderer::timerEvent(QTimerEvent *e)
 {

     if (e-&gt;timerId() == m_repaintTimer.timerId()) {

         if (QLineF(QPointF(0,0), m_direction).length() &gt; 1)
             m_direction *= 0.995;
         qreal time = m_repaintTracker.restart();

         QRect rectBefore = circle_bounds(m_pos, m_radius, m_fontSize);

         qreal dx = m_direction.x();
         qreal dy = m_direction.y();
         if (time &gt; 0) {
             dx = dx * time * .1;
             dy = dy * time * .1;
         }

         m_pos += QPointF(dx, dy);

         if (m_pos.x() - m_radius &lt; 0) {
             m_direction.setX(-m_direction.x());
             m_pos.setX(m_radius);
         } else if (m_pos.x() + m_radius &gt; width()) {
             m_direction.setX(-m_direction.x());
             m_pos.setX(width() - m_radius);
         }

         if (m_pos.y() - m_radius &lt; 0) {
             m_direction.setY(-m_direction.y());
             m_pos.setY(m_radius);
         } else if (m_pos.y() + m_radius &gt; height()) {
             m_direction.setY(-m_direction.y());
             m_pos.setY(height() - m_radius);
         }

 #ifdef QT_OPENGL_SUPPORT
         if (usesOpenGL()) {
             update();
         } else
 #endif
         {
             QRect rectAfter = circle_bounds(m_pos, m_radius, m_fontSize);
             update(rectAfter | rectBefore);
             QApplication::syncX();
         }
     }
<span class="comment"> //     else if (e-&gt;timerId() == m_fpsTimer.timerId()) {</span>
<span class="comment"> //         printf(&quot;fps: %d\n&quot;, m_fpsCounter);</span>
<span class="comment"> //         emit frameRate(m_fpsCounter);</span>
<span class="comment"> //         m_fpsCounter = 0;</span>

<span class="comment"> //     }</span>
 }

 void PathDeformRenderer::mousePressEvent(QMouseEvent *e)
 {
     setDescriptionEnabled(false);

     m_repaintTimer.stop();
     m_offset = QPointF();
     if (QLineF(m_pos, e-&gt;pos()).length() &lt;= m_radius)
         m_offset = m_pos - e-&gt;pos();

     m_mousePress = e-&gt;pos();

     <span class="comment">// If we're not running in small screen mode, always assume we're dragging</span>
     m_mouseDrag = !m_smallScreen;

     mouseMoveEvent(e);
 }

 void PathDeformRenderer::mouseReleaseEvent(QMouseEvent *e)
 {
     if (e-&gt;buttons() == Qt::NoButton &amp;&amp; m_animated) {
         m_repaintTimer.start(10, this);
         m_repaintTracker.start();
     }

     if (!m_mouseDrag &amp;&amp; m_smallScreen)
         emit clicked();
 }

 void PathDeformRenderer::mouseMoveEvent(QMouseEvent *e)
 {
     if (!m_mouseDrag &amp;&amp; (QLineF(m_mousePress, e-&gt;pos()).length() &gt; 25.0) )
         m_mouseDrag = true;

     if (m_mouseDrag) {
         QRect rectBefore = circle_bounds(m_pos, m_radius, m_fontSize);
         if (e-&gt;type() == QEvent::MouseMove) {
             QLineF line(m_pos, e-&gt;pos() + m_offset);
             line.setLength(line.length() * .1);
             QPointF dir(line.dx(), line.dy());
             m_direction = (m_direction + dir) / 2;
         }
         m_pos = e-&gt;pos() + m_offset;
 #ifdef QT_OPENGL_SUPPORT
         if (usesOpenGL()) {
             update();
         } else
 #endif
         {
             QRect rectAfter = circle_bounds(m_pos, m_radius, m_fontSize);
             update(rectBefore | rectAfter);
         }
     }
 }

 QPainterPath PathDeformRenderer::lensDeform(const QPainterPath &amp;source, const QPointF &amp;offset)
 {
     QPainterPath path;
     path.addPath(source);

     qreal flip = m_intensity / qreal(100);

     for (int i=0; i&lt;path.elementCount(); ++i) {
         const QPainterPath::Element &amp;e = path.elementAt(i);

         qreal x = e.x + offset.x();
         qreal y = e.y + offset.y();

         qreal dx = x - m_pos.x();
         qreal dy = y - m_pos.y();
         qreal len = m_radius - qSqrt(dx * dx + dy * dy);

         if (len &gt; 0) {
             path.setElementPositionAt(i,
                                       x + flip * dx * len / m_radius,
                                       y + flip * dy * len / m_radius);
         } else {
             path.setElementPositionAt(i, x, y);
         }

     }

     return path;
 }

 void PathDeformRenderer::paint(QPainter *painter)
 {
     int pad_x = 5;
     int pad_y = 5;

     int skip_x = qRound(m_pathBounds.width() + pad_x + m_fontSize/2);
     int skip_y = qRound(m_pathBounds.height() + pad_y);

     painter-&gt;setPen(Qt::NoPen);
     painter-&gt;setBrush(Qt::black);

     QRectF clip(painter-&gt;clipPath().boundingRect());

     int overlap = pad_x / 2;

     for (int start_y=0; start_y &lt; height(); start_y += skip_y) {

         if (start_y &gt; clip.bottom())
             break;

         int start_x = -overlap;
         for (; start_x &lt; width(); start_x += skip_x) {

             if (start_y + skip_y &gt;= clip.top() &amp;&amp;
                 start_x + skip_x &gt;= clip.left() &amp;&amp;
                 start_x &lt;= clip.right()) {
                 for (int i=0; i&lt;m_paths.size(); ++i) {
                     QPainterPath path = lensDeform(m_paths[i], QPointF(start_x, start_y));
                     painter-&gt;drawPath(path);
                 }
             }
         }
         overlap = skip_x - (start_x - width());

     }

     if (preferImage()) {
         painter-&gt;drawImage(m_pos - QPointF(m_radius + LENS_EXTENT, m_radius + LENS_EXTENT),
                            m_lens_image);
     } else {
         painter-&gt;drawPixmap(m_pos - QPointF(m_radius + LENS_EXTENT, m_radius + LENS_EXTENT),
                             m_lens_pixmap);
     }
 }

 void PathDeformRenderer::setRadius(int radius)
 {
     qreal max = qMax(m_radius, (qreal)radius);
     m_radius = radius;
     generateLensPixmap();
     if (!m_animated || m_radius &lt; max) {
 #ifdef QT_OPENGL_SUPPORT
         if (usesOpenGL()) {
             update();
         } else
 #endif
         {
             update(circle_bounds(m_pos, max, m_fontSize));
         }
     }
 }

 void PathDeformRenderer::setIntensity(int intensity)
 {
     m_intensity = intensity;
     if (!m_animated) {
 #ifdef QT_OPENGL_SUPPORT
         if (usesOpenGL()) {
             update();
         } else
 #endif
         {
             update(circle_bounds(m_pos, m_radius, m_fontSize));
         }
     }
 }</pre>
<p /><address><hr /><div align="center">
<table width="100%" cellspacing="0" border="0"><tr class="address">
<td width="40%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
<td width="20%" align="center"><a href="trademarks.html">Trademarks</a></td>
<td width="40%" align="right"><div align="right">Qt 4.6.3</div></td>
</tr></table></div></address></body>
</html>