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-2006 Trolltech ASA. All rights reserved.
    **
    ** This file is part of the documentation 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.25);
            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 88
  2. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  3. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 36
  5. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
Page suivante

Le Qt Quarterly au hasard

Logo

Utiliser CMake pour compiler des projets Qt

Qt Quarterly est la revue trimestrielle proposée par Nokia et à destination des développeurs Qt. Ces articles d'une grande qualité technique sont rédigés par des experts Qt. 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.1
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