source: trunk/examples/tools/plugandpaint/paintarea.cpp@ 857

Last change on this file since 857 was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 5.9 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
6**
7** This file is part of the examples of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:BSD$
10** You may use this file under the terms of the BSD license as follows:
11**
12** "Redistribution and use in source and binary forms, with or without
13** modification, are permitted provided that the following conditions are
14** met:
15** * Redistributions of source code must retain the above copyright
16** notice, this list of conditions and the following disclaimer.
17** * Redistributions in binary form must reproduce the above copyright
18** notice, this list of conditions and the following disclaimer in
19** the documentation and/or other materials provided with the
20** distribution.
21** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
22** the names of its contributors may be used to endorse or promote
23** products derived from this software without specific prior written
24** permission.
25**
26** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
37** $QT_END_LICENSE$
38**
39****************************************************************************/
40
41
42#include "interfaces.h"
43#include "paintarea.h"
44
45#include <QPainter>
46#include <QMouseEvent>
47
48PaintArea::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
62bool 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
72bool PaintArea::saveImage(const QString &fileName, const char *fileFormat)
73{
74 return theImage.save(fileName, fileFormat);
75}
76
77void PaintArea::setImage(const QImage &image)
78{
79 theImage = image.convertToFormat(QImage::Format_RGB32);
80 update();
81 updateGeometry();
82}
83
84void PaintArea::insertShape(const QPainterPath &path)
85{
86 pendingPath = path;
87#ifndef QT_NO_CURSOR
88 setCursor(Qt::CrossCursor);
89#endif
90}
91
92void PaintArea::setBrushColor(const QColor &color)
93{
94 this->color = color;
95}
96
97void PaintArea::setBrushWidth(int width)
98{
99 thickness = width;
100}
101
102//! [0]
103void PaintArea::setBrush(BrushInterface *brushInterface, const QString &brush)
104{
105 this->brushInterface = brushInterface;
106 this->brush = brush;
107}
108//! [0]
109
110QSize PaintArea::sizeHint() const
111{
112 return theImage.size();
113}
114
115void PaintArea::paintEvent(QPaintEvent * /* event */)
116{
117 QPainter painter(this);
118 painter.drawImage(QPoint(0, 0), theImage);
119}
120
121void 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]
159void 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
175void 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
190void 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}
Note: See TracBrowser for help on using the repository browser.