source: trunk/examples/qws/svgalib/svgalibpaintengine.cpp@ 846

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

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

  • Property svn:eol-style set to native
File size: 5.8 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
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**
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#include "svgalibpaintengine.h"
42
43#include <QColor>
44#include <vga.h>
45#include <vgagl.h>
46
47SvgalibPaintEngine::SvgalibPaintEngine(QPaintDevice *device)
48 : QRasterPaintEngine(device)
49{
50}
51
52SvgalibPaintEngine::~SvgalibPaintEngine()
53{
54}
55
56//! [0]
57bool SvgalibPaintEngine::begin(QPaintDevice *dev)
58{
59 device = dev;
60 pen = Qt::NoPen;
61 simplePen = true;
62 brush = Qt::NoBrush;
63 simpleBrush = true;
64 matrix = QTransform();
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]
76bool SvgalibPaintEngine::end()
77{
78 gl_setclippingwindow(0, 0, device->width() - 1, device->height() - 1);
79 return QRasterPaintEngine::end();
80}
81//! [1]
82
83//! [2]
84void SvgalibPaintEngine::updateState()
85{
86 QRasterPaintEngineState *s = state();
87
88 if (s->dirty & DirtyTransform) {
89 matrix = s->matrix;
90 simpleMatrix = (matrix.m12() == 0 && matrix.m21() == 0);
91 }
92
93 if (s->dirty & DirtyPen) {
94 pen = s->pen;
95 simplePen = (pen.width() == 0 || pen.widthF() <= 1)
96 && (pen.style() == Qt::NoPen || pen.style() == Qt::SolidLine)
97 && (pen.color().alpha() == 255);
98 }
99
100 if (s->dirty & DirtyBrush) {
101 brush = s->brush;
102 simpleBrush = (brush.style() == Qt::SolidPattern
103 || brush.style() == Qt::NoBrush)
104 && (brush.color().alpha() == 255);
105 }
106
107 if (s->dirty & DirtyClipRegion)
108 setClip(s->clipRegion);
109
110 if (s->dirty & DirtyClipEnabled) {
111 clipEnabled = s->isClipEnabled();
112 updateClip();
113 }
114
115 if (s->dirty & DirtyClipPath) {
116 setClip(QRegion());
117 simpleClip = false;
118 }
119
120 if (s->dirty & DirtyCompositionMode) {
121 const QPainter::CompositionMode m = s->composition_mode;
122 sourceOver = (m == QPainter::CompositionMode_SourceOver);
123 }
124
125 if (s->dirty & DirtyOpacity)
126 opaque = (s->opacity == 256);
127
128 if (s->dirty & DirtyHints)
129 aliased = !(s->flags.antialiased);
130}
131//! [2]
132
133//! [3]
134void SvgalibPaintEngine::setClip(const QRegion &region)
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]
146void 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]
165void 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]
Note: See TracBrowser for help on using the repository browser.