source: trunk/src/gui/painting/qwindowsurface_s60.cpp@ 781

Last change on this file since 781 was 769, checked in by Dmitry A. Kuminov, 15 years ago

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

  • Property svn:eol-style set to native
File size: 6.4 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2010 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 QtGui module of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
16** GNU Lesser General Public License Usage
17** Alternatively, this file may be used under the terms of the GNU Lesser
18** General Public License version 2.1 as published by the Free Software
19** Foundation and appearing in the file LICENSE.LGPL included in the
20** packaging of this file. Please review the following information to
21** ensure the GNU Lesser General Public License version 2.1 requirements
22** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23**
24** In addition, as a special exception, Nokia gives you certain additional
25** rights. These rights are described in the Nokia Qt LGPL Exception
26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you have questions regarding the use of this file, please contact
37** Nokia at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#include <qglobal.h> // for Q_WS_WIN define (non-PCH)
43
44#include <QtGui/qpaintdevice.h>
45#include <private/qwidget_p.h>
46#include "qwindowsurface_s60_p.h"
47#include "qpixmap_s60_p.h"
48#include "qt_s60_p.h"
49#include "private/qdrawhelper_p.h"
50
51QT_BEGIN_NAMESPACE
52
53struct QS60WindowSurfacePrivate
54{
55 QPixmap device;
56 QList<QImage*> bufferImages;
57};
58
59QS60WindowSurface::QS60WindowSurface(QWidget* widget)
60 : QWindowSurface(widget), d_ptr(new QS60WindowSurfacePrivate)
61{
62
63 TDisplayMode mode = S60->screenDevice()->DisplayMode();
64 bool isOpaque = qt_widget_private(widget)->isOpaque;
65 if (mode == EColor16MA && isOpaque)
66 mode = EColor16MU; // Faster since 16MU -> 16MA is typically accelerated
67 else if (mode == EColor16MU && !isOpaque)
68 mode = EColor16MA; // Try for transparency anyway
69
70 // We create empty CFbsBitmap here -> it will be resized in setGeometry
71 CFbsBitmap *bitmap = q_check_ptr(new CFbsBitmap); // CBase derived object needs check on new
72 qt_symbian_throwIfError( bitmap->Create( TSize(0, 0), mode ) );
73
74 QS60PixmapData *data = new QS60PixmapData(QPixmapData::PixmapType);
75 if (data) {
76 data->fromSymbianBitmap(bitmap, true);
77 d_ptr->device = QPixmap(data);
78 }
79
80 setStaticContentsSupport(true);
81}
82QS60WindowSurface::~QS60WindowSurface()
83{
84 delete d_ptr;
85}
86
87void QS60WindowSurface::beginPaint(const QRegion &rgn)
88{
89 if (!qt_widget_private(window())->isOpaque) {
90 QS60PixmapData *pixmapData = static_cast<QS60PixmapData *>(d_ptr->device.data_ptr().data());
91 pixmapData->beginDataAccess();
92
93 QPainter p(&pixmapData->image);
94 p.setCompositionMode(QPainter::CompositionMode_Source);
95 const QVector<QRect> rects = rgn.rects();
96 const QColor blank = Qt::transparent;
97 for (QVector<QRect>::const_iterator it = rects.begin(); it != rects.end(); ++it) {
98 p.fillRect(*it, blank);
99 }
100
101 pixmapData->endDataAccess();
102 }
103}
104
105void QS60WindowSurface::endPaint(const QRegion &)
106{
107 qDeleteAll(d_ptr->bufferImages);
108 d_ptr->bufferImages.clear();
109}
110
111QImage* QS60WindowSurface::buffer(const QWidget *widget)
112{
113 if (widget->window() != window())
114 return 0;
115
116 QPaintDevice *pdev = paintDevice();
117 if (!pdev)
118 return 0;
119
120 const QPoint off = offset(widget);
121 QImage *img = &(static_cast<QS60PixmapData *>(d_ptr->device.data_ptr().data())->image);
122
123 QRect rect(off, widget->size());
124 rect &= QRect(QPoint(), img->size());
125
126 if (rect.isEmpty())
127 return 0;
128
129 img = new QImage(img->scanLine(rect.y()) + rect.x() * img->depth() / 8,
130 rect.width(), rect.height(),
131 img->bytesPerLine(), img->format());
132 d_ptr->bufferImages.append(img);
133
134 return img;
135}
136
137void QS60WindowSurface::flush(QWidget *widget, const QRegion &region, const QPoint &)
138{
139 QWidget *window = widget->window();
140 Q_ASSERT(window);
141 QTLWExtra *topExtra = window->d_func()->maybeTopData();
142 Q_ASSERT(topExtra);
143 QRect qr = region.boundingRect();
144 if (!topExtra->inExpose) {
145 topExtra->inExpose = true; // Prevent DrawNow() from calling syncBackingStore() again
146 TRect tr = qt_QRect2TRect(qr);
147 widget->winId()->DrawNow(tr);
148 topExtra->inExpose = false;
149 } else {
150 // This handles the case when syncBackingStore updates content outside of the
151 // original drawing rectangle. This might happen if there are pending update()
152 // events at the same time as we get a Draw() from Symbian.
153 QRect drawRect = qt_TRect2QRect(widget->winId()->DrawableWindow()->GetDrawRect());
154 if (!drawRect.contains(qr))
155 widget->winId()->DrawDeferred();
156 }
157}
158
159bool QS60WindowSurface::scroll(const QRegion &area, int dx, int dy)
160{
161 QRect rect = area.boundingRect();
162
163 if (dx == 0 && dy == 0)
164 return false;
165
166 if (d_ptr->device.isNull())
167 return false;
168
169 QS60PixmapData *data = static_cast<QS60PixmapData*>(d_ptr->device.data_ptr().data());
170 data->scroll(dx, dy, rect);
171
172 return true;
173}
174
175QPaintDevice* QS60WindowSurface::paintDevice()
176{
177 return &d_ptr->device;
178}
179
180void QS60WindowSurface::setGeometry(const QRect& rect)
181{
182 if (rect == geometry())
183 return;
184
185 QS60PixmapData *data = static_cast<QS60PixmapData*>(d_ptr->device.data_ptr().data());
186 data->resize(rect.width(), rect.height());
187
188 QWindowSurface::setGeometry(rect);
189}
190
191CFbsBitmap* QS60WindowSurface::symbianBitmap() const
192{
193 QS60PixmapData *data = static_cast<QS60PixmapData*>(d_ptr->device.data_ptr().data());
194 return data->cfbsBitmap;
195}
196
197QT_END_NAMESPACE
198
Note: See TracBrowser for help on using the repository browser.