Transformation demo : QPainter « Qt « C++

Home
C++
1.Bitset
2.Class
3.Console
4.Data Structure
5.Data Type
6.Deque
7.Development
8.File
9.Function
10.Generic
11.Language
12.List
13.Map Multimap
14.Overload
15.Pointer
16.Qt
17.Queue Stack
18.Set Multiset
19.STL Algorithms Binary search
20.STL Algorithms Heap
21.STL Algorithms Helper
22.STL Algorithms Iterator
23.STL Algorithms Merge
24.STL Algorithms Min Max
25.STL Algorithms Modifying sequence operations
26.STL Algorithms Non modifying sequence operations
27.STL Algorithms Sorting
28.STL Basics
29.String
30.Valarray
31.Vector
C / ANSI-C
C Tutorial
C++ Tutorial
Visual C++ .NET
C++ » Qt » QPainterScreenshots 
Transformation demo
  
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the examples 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$
**
****************************************************************************/

#ifndef RENDERAREA_H
#define RENDERAREA_H

#include <QFont>
#include <QList>
#include <QPainterPath>
#include <QRect>
#include <QWidget>

QT_BEGIN_NAMESPACE
class QPaintEvent;
QT_END_NAMESPACE


enum Operation NoTransformation, Translate, Rotate, Scale };



class RenderArea : public QWidget
{
    Q_OBJECT

public:
    RenderArea(QWidget *parent = 0);

    void setOperations(const QList<Operation> &operations);
    void setShape(const QPainterPath &shape);

    QSize minimumSizeHint() const;
    QSize sizeHint() const;

protected:
    void paintEvent(QPaintEvent *event);



private:
    void drawCoordinates(QPainter &painter);
    void drawOutline(QPainter &painter);
    void drawShape(QPainter &painter);
    void transformPainter(QPainter &painter);

    QList<Operation> operations;
    QPainterPath shape;
    QRect xBoundingRect;
    QRect yBoundingRect;
};


#endif







#include <QtGui>

#include "renderarea.h"


RenderArea::RenderArea(QWidget *parent)
    : QWidget(parent)
{
    QFont newFont = font();
    newFont.setPixelSize(12);
    setFont(newFont);

    QFontMetrics fontMetrics(newFont);
    xBoundingRect = fontMetrics.boundingRect(tr("x"));
    yBoundingRect = fontMetrics.boundingRect(tr("y"));
}



void RenderArea::setOperations(const QList<Operation> &operations)
{
    this->operations = operations;
    update();
}



void RenderArea::setShape(const QPainterPath &shape)
{
    this->shape = shape;
    update();
}



QSize RenderArea::minimumSizeHint() const
{
    return QSize(182182);
}



QSize RenderArea::sizeHint() const
{
    return QSize(232232);
}



void RenderArea::paintEvent(QPaintEvent *event)
{
    QPainter painter(this);
    painter.setRenderHint(QPainter::Antialiasing);
    painter.fillRect(event->rect(), QBrush(Qt::white));

    painter.translate(6666);



    painter.save();
    transformPainter(painter);
    drawShape(painter);
    painter.restore();



    drawOutline(painter);



    transformPainter(painter);
    drawCoordinates(painter);
}



void RenderArea::drawCoordinates(QPainter &painter)
{
    painter.setPen(Qt::red);

    painter.drawLine(00500);
    painter.drawLine(48, -2500);
    painter.drawLine(482500);
    painter.drawText(60 - xBoundingRect.width() 2,
                     + xBoundingRect.height() 2, tr("x"));

    painter.drawLine(00050);
    painter.drawLine(-248050);
    painter.drawLine(248050);
    painter.drawText(- yBoundingRect.width() 2,
                     60 + yBoundingRect.height() 2, tr("y"));
}



void RenderArea::drawOutline(QPainter &painter)
{
    painter.setPen(Qt::darkGreen);
    painter.setPen(Qt::DashLine);
    painter.setBrush(Qt::NoBrush);
    painter.drawRect(00100100);
}



void RenderArea::drawShape(QPainter &painter)
{
    painter.fillPath(shape, Qt::blue);
}



void RenderArea::transformPainter(QPainter &painter)
{
    for (int i = 0; i < operations.size(); ++i) {
        switch (operations[i]) {
        case Translate:
            painter.translate(5050);
            break;
        case Scale:
            painter.scale(0.750.75);
            break;
        case Rotate:
            painter.rotate(60);
            break;
        case NoTransformation:
        default:
            ;
        }
    }
}







#ifndef WINDOW_H
#define WINDOW_H

#include <QList>
#include <QPainterPath>
#include <QWidget>

#include "renderarea.h"

QT_BEGIN_NAMESPACE
class QComboBox;
QT_END_NAMESPACE


class Window : public QWidget
{
    Q_OBJECT

public:
    Window();

public slots:
    void operationChanged();
    void shapeSelected(int index);



private:
    void setupShapes();

    enum NumTransformedAreas = };
    RenderArea *originalRenderArea;
    RenderArea *transformedRenderAreas[NumTransformedAreas];
    QComboBox *shapeComboBox;
    QComboBox *operationComboBoxes[NumTransformedAreas];
    QList<QPainterPath> shapes;
};


#endif







#include <QtGui>

#include "window.h"


Window::Window()
{
    originalRenderArea = new RenderArea;

    shapeComboBox = new QComboBox;
    shapeComboBox->addItem(tr("Clock"));
    shapeComboBox->addItem(tr("House"));
    shapeComboBox->addItem(tr("Text"));
    shapeComboBox->addItem(tr("Truck"));

    QGridLayout *layout = new QGridLayout;
    layout->addWidget(originalRenderArea, 00);
    layout->addWidget(shapeComboBox, 10);



    for (int i = 0; i < NumTransformedAreas; ++i) {
        transformedRenderAreas[inew RenderArea;

        operationComboBoxes[inew QComboBox;
        operationComboBoxes[i]->addItem(tr("No transformation"));
        operationComboBoxes[i]->addItem(tr("Rotate by 60\xB0"));
        operationComboBoxes[i]->addItem(tr("Scale to 75%"));
        operationComboBoxes[i]->addItem(tr("Translate by (50, 50)"));

        connect(operationComboBoxes[i], SIGNAL(activated(int)),
                this, SLOT(operationChanged()));

        layout->addWidget(transformedRenderAreas[i]0, i + 1);
        layout->addWidget(operationComboBoxes[i]1, i + 1);
    }



    setLayout(layout);
    setupShapes();
    shapeSelected(0);

    setWindowTitle(tr("Transformations"));
}



void Window::setupShapes()
{
    QPainterPath truck;

    truck.setFillRule(Qt::WindingFill);
    truck.moveTo(0.087.0);
    truck.lineTo(0.060.0);
    truck.lineTo(10.060.0);
    truck.lineTo(35.035.0);
    truck.lineTo(100.035.0);
    truck.lineTo(100.087.0);
    truck.lineTo(0.087.0);
    truck.moveTo(17.060.0);
    truck.lineTo(55.060.0);
    truck.lineTo(55.040.0);
    truck.lineTo(37.040.0);
    truck.lineTo(17.060.0);
    truck.addEllipse(17.075.025.025.0);
    truck.addEllipse(63.075.025.025.0);


    QPainterPath clock;

    clock.addEllipse(-50.0, -50.0100.0100.0);
    clock.addEllipse(-48.0, -48.096.096.0);
    clock.moveTo(0.00.0);
    clock.lineTo(-2.0, -2.0);
    clock.lineTo(0.0, -42.0);
    clock.lineTo(2.0, -2.0);
    clock.lineTo(0.00.0);
    clock.moveTo(0.00.0);
    clock.lineTo(2.732, -0.732);
    clock.lineTo(24.49514.142);
    clock.lineTo(0.7322.732);
    clock.lineTo(0.00.0);


    QPainterPath house;

    house.moveTo(-45.0, -20.0);
    house.lineTo(0.0, -45.0);
    house.lineTo(45.0, -20.0);
    house.lineTo(45.045.0);
    house.lineTo(-45.045.0);
    house.lineTo(-45.0, -20.0);
    house.addRect(15.05.020.035.0);
    house.addRect(-35.0, -15.025.025.0);


    QPainterPath text;

    QFont font;
    font.setPixelSize(50);
    QRect fontBoundingRect = QFontMetrics(font).boundingRect(tr("Qt"));
    text.addText(-QPointF(fontBoundingRect.center()), font, tr("Qt"));


    shapes.append(clock);
    shapes.append(house);
    shapes.append(text);
    shapes.append(truck);

    connect(shapeComboBox, SIGNAL(activated(int)),
            this, SLOT(shapeSelected(int)));
}



void Window::operationChanged()
{
    static const Operation operationTable[] {
        NoTransformation, Rotate, Scale, Translate
    };

    QList<Operation> operations;
    for (int i = 0; i < NumTransformedAreas; ++i) {
        int index = operationComboBoxes[i]->currentIndex();
        operations.append(operationTable[index]);
        transformedRenderAreas[i]->setOperations(operations);
    }
}



void Window::shapeSelected(int index)
{
    QPainterPath shape = shapes[index];
    originalRenderArea->setShape(shape);
    for (int i = 0; i < NumTransformedAreas; ++i)
        transformedRenderAreas[i]->setShape(shape);
}







#include <QApplication>

#include "window.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    Window window;
    window.show();
    return app.exec();
}

   
    
  
Related examples in the same category
1.Use QPainter to draw arc
2.Using QPainter to draw ellipse
3.Set pen and brush for QPainter
4.Set render hint to QPainter::Antialiasing
5.Renderer pattern
6.Linear Gradient
7.QLinearGradient and QPainter
8.Circle Widget with paint
9.Draw text
10.Draws a filled-in circle
11.Matrix based translation
12.Paint picture
13.Paint rectangle
14.Painter
15.Painter path
16.svg viewer
17.Transformed Painter
18.User-draw table
19.QConicalGradient
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.