~ubuntu-branches/ubuntu/wily/qtbase-opensource-src/wily

« back to all changes in this revision

Viewing changes to examples/widgets/tools/plugandpaint/paintarea.cpp

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2013-02-05 12:46:17 UTC
  • Revision ID: package-import@ubuntu.com-20130205124617-c8jouts182j002fx
Tags: upstream-5.0.1+dfsg
ImportĀ upstreamĀ versionĀ 5.0.1+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
 
4
** Contact: http://www.qt-project.org/legal
 
5
**
 
6
** This file is part of the examples of the Qt Toolkit.
 
7
**
 
8
** $QT_BEGIN_LICENSE:BSD$
 
9
** You may use this file under the terms of the BSD license as follows:
 
10
**
 
11
** "Redistribution and use in source and binary forms, with or without
 
12
** modification, are permitted provided that the following conditions are
 
13
** met:
 
14
**   * Redistributions of source code must retain the above copyright
 
15
**     notice, this list of conditions and the following disclaimer.
 
16
**   * Redistributions in binary form must reproduce the above copyright
 
17
**     notice, this list of conditions and the following disclaimer in
 
18
**     the documentation and/or other materials provided with the
 
19
**     distribution.
 
20
**   * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
 
21
**     of its contributors may be used to endorse or promote products derived
 
22
**     from this software without specific prior written permission.
 
23
**
 
24
**
 
25
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
26
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
27
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
28
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
29
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
30
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
31
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
32
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
33
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
34
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
35
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
 
36
**
 
37
** $QT_END_LICENSE$
 
38
**
 
39
****************************************************************************/
 
40
 
 
41
 
 
42
#include "interfaces.h"
 
43
#include "paintarea.h"
 
44
 
 
45
#include <QPainter>
 
46
#include <QMouseEvent>
 
47
 
 
48
PaintArea::PaintArea(QWidget *parent) :
 
49
    QWidget(parent),
 
50
    theImage(500, 400, QImage::Format_RGB32),
 
51
    color(Qt::blue),
 
52
    thickness(3),
 
53
    brushInterface(0),
 
54
    lastPos(-1, -1)
 
55
{
 
56
    setAttribute(Qt::WA_StaticContents);
 
57
    setAttribute(Qt::WA_NoBackground);
 
58
 
 
59
    theImage.fill(qRgb(255, 255, 255));
 
60
}
 
61
 
 
62
bool PaintArea::openImage(const QString &fileName)
 
63
{
 
64
    QImage image;
 
65
    if (!image.load(fileName))
 
66
        return false;
 
67
 
 
68
    setImage(image);
 
69
    return true;
 
70
}
 
71
 
 
72
bool PaintArea::saveImage(const QString &fileName, const char *fileFormat)
 
73
{
 
74
    return theImage.save(fileName, fileFormat);
 
75
}
 
76
 
 
77
void PaintArea::setImage(const QImage &image)
 
78
{
 
79
    theImage = image.convertToFormat(QImage::Format_RGB32);
 
80
    update();
 
81
    updateGeometry();
 
82
}
 
83
 
 
84
void PaintArea::insertShape(const QPainterPath &path)
 
85
{
 
86
    pendingPath = path;
 
87
#ifndef QT_NO_CURSOR
 
88
    setCursor(Qt::CrossCursor);
 
89
#endif
 
90
}
 
91
 
 
92
void PaintArea::setBrushColor(const QColor &color)
 
93
{
 
94
    this->color = color;
 
95
}
 
96
 
 
97
void PaintArea::setBrushWidth(int width)
 
98
{
 
99
    thickness = width;
 
100
}
 
101
 
 
102
//! [0]
 
103
void PaintArea::setBrush(BrushInterface *brushInterface, const QString &brush)
 
104
{
 
105
    this->brushInterface = brushInterface;
 
106
    this->brush = brush;
 
107
}
 
108
//! [0]
 
109
 
 
110
QSize PaintArea::sizeHint() const
 
111
{
 
112
    return theImage.size();
 
113
}
 
114
 
 
115
void PaintArea::paintEvent(QPaintEvent * /* event */)
 
116
{
 
117
    QPainter painter(this);
 
118
    painter.drawImage(QPoint(0, 0), theImage);
 
119
}
 
120
 
 
121
void PaintArea::mousePressEvent(QMouseEvent *event)
 
122
{
 
123
    if (event->button() == Qt::LeftButton) {
 
124
        if (!pendingPath.isEmpty()) {
 
125
            QPainter painter(&theImage);
 
126
            setupPainter(painter);
 
127
 
 
128
            const QRectF boundingRect = pendingPath.boundingRect();
 
129
            QLinearGradient gradient(boundingRect.topRight(),
 
130
                                     boundingRect.bottomLeft());
 
131
            gradient.setColorAt(0.0, QColor(color.red(), color.green(),
 
132
                                            color.blue(), 63));
 
133
            gradient.setColorAt(1.0, QColor(color.red(), color.green(),
 
134
                                            color.blue(), 191));
 
135
            painter.setBrush(gradient);
 
136
            painter.translate(event->pos() - boundingRect.center());
 
137
            painter.drawPath(pendingPath);
 
138
 
 
139
            pendingPath = QPainterPath();
 
140
#ifndef QT_NO_CURSOR
 
141
            unsetCursor();
 
142
#endif
 
143
            update();
 
144
        } else {
 
145
            if (brushInterface) {
 
146
                QPainter painter(&theImage);
 
147
                setupPainter(painter);
 
148
                const QRect rect = brushInterface->mousePress(brush, painter,
 
149
                                                              event->pos());
 
150
                update(rect);
 
151
            }
 
152
 
 
153
            lastPos = event->pos();
 
154
        }
 
155
    }
 
156
}
 
157
 
 
158
//! [1]
 
159
void PaintArea::mouseMoveEvent(QMouseEvent *event)
 
160
{
 
161
    if ((event->buttons() & Qt::LeftButton) && lastPos != QPoint(-1, -1)) {
 
162
        if (brushInterface) {
 
163
            QPainter painter(&theImage);
 
164
            setupPainter(painter);
 
165
            const QRect rect = brushInterface->mouseMove(brush, painter, lastPos,
 
166
                                                         event->pos());
 
167
            update(rect);
 
168
        }
 
169
 
 
170
        lastPos = event->pos();
 
171
    }
 
172
}
 
173
//! [1]
 
174
 
 
175
void PaintArea::mouseReleaseEvent(QMouseEvent *event)
 
176
{
 
177
    if (event->button() == Qt::LeftButton && lastPos != QPoint(-1, -1)) {
 
178
        if (brushInterface) {
 
179
            QPainter painter(&theImage);
 
180
            setupPainter(painter);
 
181
            QRect rect = brushInterface->mouseRelease(brush, painter,
 
182
                                                      event->pos());
 
183
            update(rect);
 
184
        }
 
185
 
 
186
        lastPos = QPoint(-1, -1);
 
187
    }
 
188
}
 
189
 
 
190
void PaintArea::setupPainter(QPainter &painter)
 
191
{
 
192
    painter.setRenderHint(QPainter::Antialiasing, true);
 
193
    painter.setPen(QPen(color, thickness, Qt::SolidLine, Qt::RoundCap,
 
194
                   Qt::RoundJoin));
 
195
}