0
|
1 |
/****************************************************************************
|
|
2 |
**
|
18
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
3 |
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
0
|
4 |
** All rights reserved.
|
|
5 |
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
6 |
**
|
|
7 |
** This file is part of the examples of the Qt Toolkit.
|
|
8 |
**
|
30
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
9 |
** $QT_BEGIN_LICENSE:BSD$
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
10 |
** You may use this file under the terms of the BSD license as follows:
|
0
|
11 |
**
|
30
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
12 |
** "Redistribution and use in source and binary forms, with or without
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
13 |
** modification, are permitted provided that the following conditions are
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
14 |
** met:
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
15 |
** * Redistributions of source code must retain the above copyright
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
16 |
** notice, this list of conditions and the following disclaimer.
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
17 |
** * Redistributions in binary form must reproduce the above copyright
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
18 |
** notice, this list of conditions and the following disclaimer in
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
19 |
** the documentation and/or other materials provided with the
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
20 |
** distribution.
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
21 |
** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
22 |
** the names of its contributors may be used to endorse or promote
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
23 |
** products derived from this software without specific prior written
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
24 |
** permission.
|
0
|
25 |
**
|
30
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
26 |
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
27 |
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
28 |
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
29 |
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
30 |
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
31 |
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
32 |
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
33 |
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
34 |
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
35 |
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
36 |
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
|
0
|
37 |
** $QT_END_LICENSE$
|
|
38 |
**
|
|
39 |
****************************************************************************/
|
|
40 |
|
|
41 |
#include "svgalibpaintengine.h"
|
|
42 |
|
|
43 |
#include <QColor>
|
|
44 |
#include <vga.h>
|
|
45 |
#include <vgagl.h>
|
|
46 |
|
30
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
47 |
SvgalibPaintEngine::SvgalibPaintEngine(QPaintDevice *device)
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
48 |
: QRasterPaintEngine(device)
|
0
|
49 |
{
|
|
50 |
}
|
|
51 |
|
|
52 |
SvgalibPaintEngine::~SvgalibPaintEngine()
|
|
53 |
{
|
|
54 |
}
|
|
55 |
|
|
56 |
//! [0]
|
|
57 |
bool SvgalibPaintEngine::begin(QPaintDevice *dev)
|
|
58 |
{
|
|
59 |
device = dev;
|
|
60 |
pen = Qt::NoPen;
|
|
61 |
simplePen = true;
|
|
62 |
brush = Qt::NoBrush;
|
|
63 |
simpleBrush = true;
|
30
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
64 |
matrix = QTransform();
|
0
|
65 |
simpleMatrix = true;
|
|
66 |
setClip(QRect(0, 0, device->width(), device->height()));
|
|
67 |
opaque = true;
|
|
68 |
aliased = true;
|
|
69 |
sourceOver = true;
|
|
70 |
|
|
71 |
return QRasterPaintEngine::begin(dev);
|
|
72 |
}
|
|
73 |
//! [0]
|
|
74 |
|
|
75 |
//! [1]
|
|
76 |
bool SvgalibPaintEngine::end()
|
|
77 |
{
|
|
78 |
gl_setclippingwindow(0, 0, device->width() - 1, device->height() - 1);
|
|
79 |
return QRasterPaintEngine::end();
|
|
80 |
}
|
|
81 |
//! [1]
|
|
82 |
|
|
83 |
//! [2]
|
30
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
84 |
void SvgalibPaintEngine::updateState()
|
0
|
85 |
{
|
30
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
86 |
QRasterPaintEngineState *s = state();
|
0
|
87 |
|
30
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
88 |
if (s->dirty & DirtyTransform) {
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
89 |
matrix = s->matrix;
|
0
|
90 |
simpleMatrix = (matrix.m12() == 0 && matrix.m21() == 0);
|
|
91 |
}
|
|
92 |
|
30
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
93 |
if (s->dirty & DirtyPen) {
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
94 |
pen = s->pen;
|
0
|
95 |
simplePen = (pen.width() == 0 || pen.widthF() <= 1)
|
|
96 |
&& (pen.style() == Qt::NoPen || pen.style() == Qt::SolidLine)
|
|
97 |
&& (pen.color().alpha() == 255);
|
|
98 |
}
|
|
99 |
|
30
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
100 |
if (s->dirty & DirtyBrush) {
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
101 |
brush = s->brush;
|
0
|
102 |
simpleBrush = (brush.style() == Qt::SolidPattern
|
|
103 |
|| brush.style() == Qt::NoBrush)
|
|
104 |
&& (brush.color().alpha() == 255);
|
|
105 |
}
|
|
106 |
|
30
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
107 |
if (s->dirty & DirtyClipRegion)
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
108 |
setClip(s->clipRegion);
|
0
|
109 |
|
30
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
110 |
if (s->dirty & DirtyClipEnabled) {
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
111 |
clipEnabled = s->isClipEnabled();
|
0
|
112 |
updateClip();
|
|
113 |
}
|
|
114 |
|
30
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
115 |
if (s->dirty & DirtyClipPath) {
|
0
|
116 |
setClip(QRegion());
|
|
117 |
simpleClip = false;
|
|
118 |
}
|
|
119 |
|
30
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
120 |
if (s->dirty & DirtyCompositionMode) {
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
121 |
const QPainter::CompositionMode m = s->composition_mode;
|
0
|
122 |
sourceOver = (m == QPainter::CompositionMode_SourceOver);
|
|
123 |
}
|
|
124 |
|
30
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
125 |
if (s->dirty & DirtyOpacity)
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
126 |
opaque = (s->opacity == 256);
|
0
|
127 |
|
30
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
128 |
if (s->dirty & DirtyHints)
|
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
diff
changeset
|
129 |
aliased = !(s->flags.antialiased);
|
0
|
130 |
}
|
|
131 |
//! [2]
|
|
132 |
|
|
133 |
//! [3]
|
|
134 |
void SvgalibPaintEngine::setClip(const QRegion ®ion)
|
|
135 |
{
|
|
136 |
if (region.isEmpty())
|
|
137 |
clip = QRect(0, 0, device->width(), device->height());
|
|
138 |
else
|
|
139 |
clip = matrix.map(region) & QRect(0, 0, device->width(), device->height());
|
|
140 |
clipEnabled = true;
|
|
141 |
updateClip();
|
|
142 |
}
|
|
143 |
//! [3]
|
|
144 |
|
|
145 |
//! [4]
|
|
146 |
void SvgalibPaintEngine::updateClip()
|
|
147 |
{
|
|
148 |
QRegion clipRegion = QRect(0, 0, device->width(), device->height());
|
|
149 |
|
|
150 |
if (!systemClip().isEmpty())
|
|
151 |
clipRegion &= systemClip();
|
|
152 |
if (clipEnabled)
|
|
153 |
clipRegion &= clip;
|
|
154 |
|
|
155 |
simpleClip = (clipRegion.rects().size() <= 1);
|
|
156 |
|
|
157 |
const QRect r = clipRegion.boundingRect();
|
|
158 |
gl_setclippingwindow(r.left(), r.top(),
|
|
159 |
r.x() + r.width(),
|
|
160 |
r.y() + r.height());
|
|
161 |
}
|
|
162 |
//! [4]
|
|
163 |
|
|
164 |
//! [5]
|
|
165 |
void SvgalibPaintEngine::drawRects(const QRect *rects, int rectCount)
|
|
166 |
{
|
|
167 |
const bool canAccelerate = simplePen && simpleBrush && simpleMatrix
|
|
168 |
&& simpleClip && opaque && aliased
|
|
169 |
&& sourceOver;
|
|
170 |
if (!canAccelerate) {
|
|
171 |
QRasterPaintEngine::drawRects(rects, rectCount);
|
|
172 |
return;
|
|
173 |
}
|
|
174 |
|
|
175 |
for (int i = 0; i < rectCount; ++i) {
|
|
176 |
const QRect r = matrix.mapRect(rects[i]);
|
|
177 |
if (brush != Qt::NoBrush) {
|
|
178 |
gl_fillbox(r.left(), r.top(), r.width(), r.height(),
|
|
179 |
brush.color().rgba());
|
|
180 |
}
|
|
181 |
if (pen != Qt::NoPen) {
|
|
182 |
const int c = pen.color().rgba();
|
|
183 |
gl_hline(r.left(), r.top(), r.right(), c);
|
|
184 |
gl_hline(r.left(), r.bottom(), r.right(), c);
|
|
185 |
gl_line(r.left(), r.top(), r.left(), r.bottom(), c);
|
|
186 |
gl_line(r.right(), r.top(), r.right(), r.bottom(), c);
|
|
187 |
}
|
|
188 |
}
|
|
189 |
}
|
|
190 |
//! [5]
|