Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

displayshape.cpp Example File
tools/qtdemo/displayshape.cpp

 /****************************************************************************
 **
 ** Copyright (C) 2005-2007 Trolltech ASA. All rights reserved.
 **
 ** This file is part of the example classes of the Qt Toolkit.
 **
 ** This file may be used under the terms of the GNU General Public
 ** License version 2.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 GNU
 ** General Public Licensing requirements will be met:
 ** http://www.trolltech.com/products/qt/opensource.html
 **
 ** If you are unsure which license is appropriate for your use, please
 ** review the following information:
 ** http://www.trolltech.com/products/qt/licensing.html or contact the
 ** sales department at sales@trolltech.com.
 **
 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 **
 ****************************************************************************/

 #include <math.h>
 #include <QtGui>

 #include "displayshape.h"

 DisplayShape::DisplayShape(const QPointF &position, const QSizeF &maxSize)
     : pos(position), maxSize(maxSize), interactive(false)
 {
 }

 bool DisplayShape::animate()
 {
     if (!targetPos.isNull()) {
         QLineF displacement(pos, targetPos);
         QPointF newPosition = displacement.pointAt(0.15);
         if (displacement.length() <= 1.0) {
             pos = targetPos;
             targetPos = QPointF();
         } else {
             pos = newPosition;
         }
         return true;
     }

     return false;
 }

 bool DisplayShape::contains(const QString &key) const
 {
     return meta.contains(key);
 }

 bool DisplayShape::isInteractive() const
 {
     return interactive;
 }

 QVariant DisplayShape::metaData(const QString &key) const
 {
     return meta.value(key);
 }

 void DisplayShape::paint(QPainter *painter) const
 {
     painter->save();
     painter->drawImage(pos, image);
     painter->restore();
 }

 QPointF DisplayShape::position() const
 {
     return pos;
 }

 QRectF DisplayShape::rect() const
 {
     return QRectF(pos, image.size());
 }

 void DisplayShape::removeMetaData(const QString &key)
 {
     meta.remove(key);
 }

 void DisplayShape::setInteractive(bool enable)
 {
     interactive = enable;
 }

 void DisplayShape::setMetaData(const QString &key, const QVariant &value)
 {
     meta[key] = value;
 }

 void DisplayShape::setPosition(const QPointF &position)
 {
     pos = position;
 }

 void DisplayShape::setSize(const QSizeF &size)
 {
     maxSize = size;
 }

 void DisplayShape::setTarget(const QPointF &position)
 {
     targetPos = position;
 }

 QSizeF DisplayShape::size() const
 {
     return maxSize;
 }

 QPointF DisplayShape::target() const
 {
     return targetPos;
 }

 PanelShape::PanelShape(const QPainterPath &path, const QBrush &normal,
                        const QBrush &highlighted, const QPen &pen,
                        const QPointF &position, const QSizeF &maxSize)
     : DisplayShape(position, maxSize), highlightedBrush(highlighted),
       normalBrush(normal), path(path), pen(pen)
 {
     brush = normalBrush;
 }

 bool PanelShape::animate()
 {
     bool updated = false;

     if (!meta.contains("destroy")) {
         if (meta.contains("fade")) {
             QColor penColor = pen.color();
             QColor brushColor = brush.color();
             int penAlpha = penColor.alpha();
             int brushAlpha = brushColor.alpha();
             int fadeMinimum = meta.value("fade minimum").toInt();

             if (penAlpha != fadeMinimum || brushAlpha != fadeMinimum
                 || meta.value("fade").toInt() > 0) {

                 penAlpha = qBound(fadeMinimum,
                                   penAlpha + meta.value("fade").toInt(), 255);
                 brushAlpha = qBound(fadeMinimum,
                                   brushAlpha + meta.value("fade").toInt(), 255);

                 penColor.setAlpha(penAlpha);
                 brushColor.setAlpha(brushAlpha);
                 pen.setColor(penColor);
                 brush.setColor(brushColor);

                 if (penAlpha == 0 && brushAlpha == 0) {
                     meta["destroy"] = true;
                     meta.remove("fade");
                 } else if (penAlpha == 255 && brushAlpha == 255)
                     meta.remove("fade");

                 updated = true;
             }
         } else if (meta.contains("highlight")) {
             qreal scale = meta.value("highlight scale").toDouble();
             QColor color = brush.color();

             if (meta.value("highlight").toBool())
                 scale = qBound(0.0, scale + 0.5, 1.0);
             else
                 scale = qBound(0.0, scale - 0.2, 1.0);

             if (scale == 0.0) {
                 brush = normalBrush;
                 meta.remove("highlight");
                 meta.remove("highlight scale");
                 updated = true;
             } else if (scale != meta["highlight scale"]) {
                 meta["highlight scale"] = scale;

                 if (scale == 1.0)
                     brush = highlightedBrush;
                 else {
                     QColor normal = normalBrush.color();
                     QColor highlighted = highlightedBrush.color();

                     color.setRedF((1.0-scale) * normal.redF()
                                   + scale*highlighted.redF());
                     color.setGreenF((1.0-scale) * normal.greenF()
                                     + scale*highlighted.greenF());
                     color.setBlueF((1.0-scale) * normal.blueF()
                                    + scale*highlighted.blueF());
                     brush.setColor(color);
                 }
                 updated = true;
             }
         }
     }

     return DisplayShape::animate() || updated;
 }

 void PanelShape::paint(QPainter *painter) const
 {
     painter->save();
     painter->setRenderHint(QPainter::Antialiasing);
     painter->setBrush(brush);
     painter->setPen(pen);
     painter->translate(pos);
     painter->drawPath(path);
     painter->restore();
 }

 QRectF PanelShape::rect() const
 {
     return QRectF(pos + path.boundingRect().topLeft(),
                   path.boundingRect().size());
 }

 TitleShape::TitleShape(const QString &text, const QFont &f,
                        const QPen &pen, const QPointF &position,
                        const QSizeF &maxSize, Qt::Alignment alignment)
     : DisplayShape(position, maxSize), font(f), text(text), pen(pen),
       alignment(alignment)
 {
     QFontMetricsF fm(font);
     textRect = fm.boundingRect(QRectF(QPointF(0, 0), maxSize), alignment, text);

     qreal textWidth = qMax(fm.width(text), textRect.width());
     qreal textHeight = qMax(fm.height(), textRect.height());

     qreal scale = qMin(maxSize.width()/textWidth,
                        maxSize.height()/textHeight);

     font.setPointSizeF(font.pointSizeF() * scale);
     fm = QFontMetricsF(font);
     textRect = fm.boundingRect(QRectF(QPointF(0, 0), maxSize), alignment, text);
     baselineStart = QPointF(textRect.left(), textRect.bottom() - fm.descent());
 }

 bool TitleShape::animate()
 {
     bool updated = false;

     if (!meta.contains("destroy")) {
         if (meta.contains("fade")) {
             QColor penColor = pen.color();
             int penAlpha = penColor.alpha();

             penAlpha = qBound(meta.value("fade minimum").toInt(),
                               penAlpha + meta.value("fade").toInt(), 255);

             penColor.setAlpha(penAlpha);
             pen.setColor(penColor);

             if (penAlpha == 0) {
                 meta["destroy"] = true;
                 meta.remove("fade");
             } else if (penAlpha == 255)
                 meta.remove("fade");

             updated = true;
         }
     }

     return DisplayShape::animate() || updated;
 }

 void TitleShape::paint(QPainter *painter) const
 {
     QRectF rect(textRect);
     rect.translate(pos);
     painter->save();
     painter->setRenderHint(QPainter::TextAntialiasing);
     painter->setPen(pen);
     painter->setFont(font);
     painter->drawText(pos + baselineStart, text);
     painter->restore();
 }

 QRectF TitleShape::rect() const
 {
     QRectF rect(textRect);
     return rect.translated(pos);
 }

 ImageShape::ImageShape(const QImage &original, const QPointF &position,
                        const QSizeF &maxSize, int alpha,
                        Qt::Alignment alignment)
     : DisplayShape(position, maxSize), alpha(alpha), alignment(alignment)
 {
     source = original.convertToFormat(QImage::Format_ARGB32_Premultiplied);
     qreal scale = qMin(qMin(maxSize.width()/source.width(),
                             maxSize.height()/source.height()), qreal(1.0));

     source = source.scaled(int(ceil(source.width() * scale)),
                            int(ceil(source.height() * scale)),
                            Qt::KeepAspectRatio,
                            Qt::SmoothTransformation);

     image = QImage(source.size(), QImage::Format_ARGB32_Premultiplied);

     offset = QPointF(0.0, 0.0);

     if (alignment & Qt::AlignHCenter)
         offset.setX((maxSize.width() - image.width())/2);
     else if (alignment & Qt::AlignRight)
         offset.setX(maxSize.width() - image.width());

     if (alignment & Qt::AlignVCenter)
         offset.setY((maxSize.height() - image.height())/2);
     else if (alignment & Qt::AlignBottom)
         offset.setY(maxSize.height() - image.height());

     redraw();
 }

 void ImageShape::redraw()
 {
     image.fill(qRgba(alpha, alpha, alpha, alpha));

     QPainter painter;
     painter.begin(&image);
     painter.setCompositionMode(QPainter::CompositionMode_SourceIn);
     painter.drawImage(0, 0, source);
     painter.end();
 }

 void ImageShape::paint(QPainter *painter) const
 {
     painter->drawImage(pos + offset, image);
 }

 QRectF ImageShape::rect() const
 {
     return QRectF(pos, maxSize);
 }

 bool ImageShape::animate()
 {
     bool updated = false;

     if (!meta.contains("destroy")) {
         if (meta.contains("fade")) {
             alpha = qBound(meta.value("fade minimum").toInt(),
                            alpha + meta.value("fade").toInt(), 255);
             redraw();

             if (alpha == 0) {
                 meta["destroy"] = true;
                 meta.remove("fade");
             } else if (alpha == 255)
                 meta.remove("fade");

             updated = true;
         }
     }

     return DisplayShape::animate() || updated;
 }

 DocumentShape::DocumentShape(const QString &text, const QFont &font,
                              const QPointF &position, const QSizeF &maxSize,
                              int alpha)
     : DisplayShape(position, maxSize), alpha(alpha)
 {
     textDocument.setHtml(text);
     textDocument.setDefaultFont(font);
     textDocument.setPageSize(maxSize);
     QSizeF documentSize = textDocument.documentLayout()->documentSize();
     setSize(QSizeF(maxSize.width(),
                       qMin(maxSize.height(), documentSize.height())));

     source = QImage(int(ceil(documentSize.width())),
                     int(ceil(documentSize.height())),
                     QImage::Format_ARGB32_Premultiplied);
     source.fill(qRgba(255, 255, 255, 255));

     QAbstractTextDocumentLayout::PaintContext context;
     textDocument.documentLayout()->setPaintDevice(&source);

     QPainter painter;
     painter.begin(&source);
     painter.setRenderHint(QPainter::TextAntialiasing);
     painter.setRenderHint(QPainter::Antialiasing);
     textDocument.documentLayout()->draw(&painter, context);
     painter.end();

     source = source.scaled(int(ceil(maxSize.width())),
                            int(ceil(maxSize.height())),
                            Qt::KeepAspectRatio,
                            Qt::SmoothTransformation);

     image = QImage(source.size(), source.format());
     redraw();
 }

 DocumentShape::~DocumentShape()
 {
 }

 bool DocumentShape::animate()
 {
     bool updated = false;

     if (!meta.contains("destroy")) {
         if (meta.contains("fade")) {
             alpha = qBound(meta.value("fade minimum").toInt(),
                            alpha + meta.value("fade").toInt(), 255);
             redraw();

             if (alpha == 0) {
                 meta["destroy"] = true;
                 meta.remove("fade");
             } else if (alpha == 255)
                 meta.remove("fade");

             updated = true;
         }
     }

     return DisplayShape::animate() || updated;
 }

 void DocumentShape::redraw()
 {
     image.fill(qRgba(alpha, alpha, alpha, alpha));

     QPainter painter;
     painter.begin(&image);
     painter.setCompositionMode(QPainter::CompositionMode_SourceIn);
     painter.drawImage(0, 0, source);
     painter.end();
 }

 void DocumentShape::paint(QPainter *painter) const
 {
     painter->drawImage(pos, image);
 }

 QRectF DocumentShape::rect() const
 {
     return QRectF(pos, maxSize);
 }

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 102
  2. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 53
  3. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 73
  4. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 28
  5. Qt Commercial : Digia organise un webinar gratuit le 27 mars sur la conception d'interfaces utilisateur et d'applications avec le framework 0
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. 2017 : un quinquennat pour une nouvelle version du C++ ? Possible, selon Herb Sutter 11
Page suivante
  1. Linus Torvalds : le "C++ est un langage horrible", en justifiant le choix du C pour le système de gestion de version Git 100
  2. Comment prendre en compte l'utilisateur dans vos applications ? Pour un développeur, « 90 % des utilisateurs sont des idiots » 229
  3. Quel est LE livre que tout développeur doit lire absolument ? Celui qui vous a le plus marqué et inspiré 96
  4. Apple cède et s'engage à payer des droits à Nokia, le conflit des brevets entre les deux firmes s'achève 158
  5. Nokia porte à nouveau plainte contre Apple pour violation de sept nouveaux brevets 158
  6. Quel est le code dont vous êtes le plus fier ? Pourquoi l'avez-vous écrit ? Et pourquoi vous a-t-il donné autant de satisfaction ? 83
  7. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 101
Page suivante

Le blog Digia au hasard

Logo

Créer des applications avec un style Metro avec Qt, exemples en QML et C++, un article de Digia Qt traduit par Thibaut Cuvelier

Le blog Digia est l'endroit privilégié pour la communication sur l'édition commerciale de Qt, où des réponses publiques sont apportées aux questions les plus posées au support. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 4.2
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web