author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Fri, 12 Mar 2010 15:46:37 +0200 | |
branch | RCL_3 |
changeset 5 | d3bac044e0f0 |
parent 4 | 3b1da2848fc7 |
permissions | -rw-r--r-- |
0 | 1 |
/**************************************************************************** |
2 |
** |
|
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
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 QtGui module of the Qt Toolkit. |
|
8 |
** |
|
9 |
** $QT_BEGIN_LICENSE:LGPL$ |
|
10 |
** No Commercial Usage |
|
11 |
** This file contains pre-release code and may not be distributed. |
|
12 |
** You may use this file in accordance with the terms and conditions |
|
13 |
** contained in the Technology Preview License Agreement accompanying |
|
14 |
** this package. |
|
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 |
** If you have questions regarding the use of this file, please contact |
|
29 |
** Nokia at qt-info@nokia.com. |
|
30 |
** |
|
31 |
** |
|
32 |
** |
|
33 |
** |
|
34 |
** |
|
35 |
** |
|
36 |
** |
|
37 |
** |
|
38 |
** $QT_END_LICENSE$ |
|
39 |
** |
|
40 |
****************************************************************************/ |
|
41 |
||
42 |
#ifndef QBACKINGSTORE_P_H |
|
43 |
#define QBACKINGSTORE_P_H |
|
44 |
||
45 |
// |
|
46 |
// W A R N I N G |
|
47 |
// ------------- |
|
48 |
// |
|
49 |
// This file is not part of the Qt API. It exists purely as an |
|
50 |
// implementation detail. This header file may change from version to |
|
51 |
// version without notice, or even be removed. |
|
52 |
// |
|
53 |
// We mean it. |
|
54 |
// |
|
55 |
||
56 |
#include <QDebug> |
|
57 |
#include <QtGui/qwidget.h> |
|
58 |
#include <private/qwidget_p.h> |
|
59 |
#include <private/qwindowsurface_p.h> |
|
60 |
#ifdef Q_WS_QWS |
|
61 |
#include <private/qwindowsurface_qws_p.h> |
|
62 |
#endif |
|
63 |
||
64 |
QT_BEGIN_NAMESPACE |
|
65 |
||
66 |
class QWindowSurface; |
|
67 |
||
68 |
struct BeginPaintInfo { |
|
69 |
inline BeginPaintInfo() : wasFlushed(0), nothingToPaint(0), windowSurfaceRecreated(0) {} |
|
70 |
uint wasFlushed : 1; |
|
71 |
uint nothingToPaint : 1; |
|
72 |
uint windowSurfaceRecreated : 1; |
|
73 |
}; |
|
74 |
||
75 |
class Q_AUTOTEST_EXPORT QWidgetBackingStore |
|
76 |
{ |
|
77 |
public: |
|
78 |
QWidgetBackingStore(QWidget *t); |
|
79 |
~QWidgetBackingStore(); |
|
80 |
||
81 |
static void showYellowThing(QWidget *widget, const QRegion &rgn, int msec, bool); |
|
82 |
||
83 |
void sync(QWidget *exposedWidget, const QRegion &exposedRegion); |
|
84 |
void sync(); |
|
85 |
void flush(QWidget *widget = 0, QWindowSurface *surface = 0); |
|
86 |
||
87 |
inline QPoint topLevelOffset() const { return tlwOffset; } |
|
88 |
||
89 |
QWindowSurface *surface() const { return windowSurface; } |
|
90 |
||
91 |
inline bool isDirty() const |
|
92 |
{ |
|
93 |
return !(dirtyWidgets.isEmpty() && dirty.isEmpty() && !hasDirtyFromPreviousSync |
|
94 |
#if defined(Q_WS_QWS) && !defined(QT_NO_QWS_MANAGER) |
|
95 |
&& !hasDirtyWindowDecoration() |
|
96 |
#endif |
|
97 |
); |
|
98 |
} |
|
99 |
||
100 |
// ### Qt 4.6: Merge into a template function (after MSVC isn't supported anymore). |
|
101 |
void markDirty(const QRegion &rgn, QWidget *widget, bool updateImmediately = false, |
|
102 |
bool invalidateBuffer = false); |
|
103 |
void markDirty(const QRect &rect, QWidget *widget, bool updateImmediately = false, |
|
104 |
bool invalidateBuffer = false); |
|
105 |
||
106 |
private: |
|
107 |
QWidget *tlw; |
|
108 |
QRegion dirtyOnScreen; // needsFlush |
|
109 |
QRegion dirty; // needsRepaint |
|
110 |
QRegion dirtyFromPreviousSync; |
|
111 |
QVector<QWidget *> dirtyWidgets; |
|
112 |
QVector<QWidget *> *dirtyOnScreenWidgets; |
|
113 |
QList<QWidget *> staticWidgets; |
|
114 |
QWindowSurface *windowSurface; |
|
115 |
#ifdef Q_BACKINGSTORE_SUBSURFACES |
|
116 |
QList<QWindowSurface*> subSurfaces; |
|
117 |
#endif |
|
118 |
bool hasDirtyFromPreviousSync; |
|
119 |
||
120 |
QPoint tlwOffset; |
|
121 |
||
122 |
static bool flushPaint(QWidget *widget, const QRegion &rgn); |
|
123 |
static void unflushPaint(QWidget *widget, const QRegion &rgn); |
|
124 |
||
125 |
bool bltRect(const QRect &rect, int dx, int dy, QWidget *widget); |
|
126 |
void releaseBuffer(); |
|
127 |
||
128 |
void beginPaint(QRegion &toClean, QWidget *widget, QWindowSurface *windowSurface, |
|
129 |
BeginPaintInfo *returnInfo, bool toCleanIsInTopLevelCoordinates = true); |
|
130 |
void endPaint(const QRegion &cleaned, QWindowSurface *windowSurface, BeginPaintInfo *beginPaintInfo); |
|
131 |
||
132 |
QRegion dirtyRegion(QWidget *widget = 0) const; |
|
133 |
QRegion staticContents(QWidget *widget = 0, const QRect &withinClipRect = QRect()) const; |
|
134 |
||
135 |
void markDirtyOnScreen(const QRegion &dirtyOnScreen, QWidget *widget, const QPoint &topLevelOffset); |
|
136 |
||
137 |
void removeDirtyWidget(QWidget *w); |
|
138 |
||
139 |
#if defined(Q_WS_QWS) && !defined(QT_NO_QWS_MANAGER) |
|
140 |
bool hasDirtyWindowDecoration() const; |
|
141 |
void paintWindowDecoration(); |
|
142 |
#endif |
|
143 |
void updateLists(QWidget *widget); |
|
144 |
||
145 |
inline void addDirtyWidget(QWidget *widget, const QRegion &rgn) |
|
146 |
{ |
|
147 |
if (widget && !widget->d_func()->inDirtyList && !widget->data->in_destructor) { |
|
148 |
QWidgetPrivate *widgetPrivate = widget->d_func(); |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
149 |
#ifndef QT_NO_GRAPHICSEFFECT |
0 | 150 |
if (widgetPrivate->graphicsEffect) |
151 |
widgetPrivate->dirty = widgetPrivate->effectiveRectFor(rgn.boundingRect()); |
|
152 |
else |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
153 |
#endif //QT_NO_GRAPHICSEFFECT |
0 | 154 |
widgetPrivate->dirty = rgn; |
155 |
dirtyWidgets.append(widget); |
|
156 |
widgetPrivate->inDirtyList = true; |
|
157 |
} |
|
158 |
} |
|
159 |
||
160 |
inline void dirtyWidgetsRemoveAll(QWidget *widget) |
|
161 |
{ |
|
162 |
int i = 0; |
|
163 |
while (i < dirtyWidgets.size()) { |
|
164 |
if (dirtyWidgets.at(i) == widget) |
|
165 |
dirtyWidgets.remove(i); |
|
166 |
else |
|
167 |
++i; |
|
168 |
} |
|
169 |
} |
|
170 |
||
171 |
inline void addStaticWidget(QWidget *widget) |
|
172 |
{ |
|
173 |
if (!widget) |
|
174 |
return; |
|
175 |
||
176 |
Q_ASSERT(widget->testAttribute(Qt::WA_StaticContents)); |
|
177 |
if (!staticWidgets.contains(widget)) |
|
178 |
staticWidgets.append(widget); |
|
179 |
} |
|
180 |
||
181 |
inline void removeStaticWidget(QWidget *widget) |
|
182 |
{ staticWidgets.removeAll(widget); } |
|
183 |
||
184 |
// Move the reparented widget and all its static children from this backing store |
|
185 |
// to the new backing store if reparented into another top-level / backing store. |
|
186 |
inline void moveStaticWidgets(QWidget *reparented) |
|
187 |
{ |
|
188 |
Q_ASSERT(reparented); |
|
189 |
QWidgetBackingStore *newBs = reparented->d_func()->maybeBackingStore(); |
|
190 |
if (newBs == this) |
|
191 |
return; |
|
192 |
||
193 |
int i = 0; |
|
194 |
while (i < staticWidgets.size()) { |
|
195 |
QWidget *w = staticWidgets.at(i); |
|
196 |
if (reparented == w || reparented->isAncestorOf(w)) { |
|
197 |
staticWidgets.removeAt(i); |
|
198 |
if (newBs) |
|
199 |
newBs->addStaticWidget(w); |
|
200 |
} else { |
|
201 |
++i; |
|
202 |
} |
|
203 |
} |
|
204 |
} |
|
205 |
||
206 |
inline QRect topLevelRect() const |
|
207 |
{ |
|
208 |
#ifdef Q_WS_QWS |
|
209 |
return tlw->frameGeometry(); |
|
210 |
#endif |
|
211 |
return tlw->data->crect; |
|
212 |
} |
|
213 |
||
214 |
inline void appendDirtyOnScreenWidget(QWidget *widget) |
|
215 |
{ |
|
216 |
if (!widget) |
|
217 |
return; |
|
218 |
||
219 |
if (!dirtyOnScreenWidgets) { |
|
220 |
dirtyOnScreenWidgets = new QVector<QWidget *>; |
|
221 |
dirtyOnScreenWidgets->append(widget); |
|
222 |
} else if (!dirtyOnScreenWidgets->contains(widget)) { |
|
223 |
dirtyOnScreenWidgets->append(widget); |
|
224 |
} |
|
225 |
} |
|
226 |
||
227 |
inline void dirtyOnScreenWidgetsRemoveAll(QWidget *widget) |
|
228 |
{ |
|
229 |
if (!widget || !dirtyOnScreenWidgets) |
|
230 |
return; |
|
231 |
||
232 |
int i = 0; |
|
233 |
while (i < dirtyOnScreenWidgets->size()) { |
|
234 |
if (dirtyOnScreenWidgets->at(i) == widget) |
|
235 |
dirtyOnScreenWidgets->remove(i); |
|
236 |
else |
|
237 |
++i; |
|
238 |
} |
|
239 |
} |
|
240 |
||
241 |
inline void resetWidget(QWidget *widget) |
|
242 |
{ |
|
243 |
if (widget) { |
|
244 |
widget->d_func()->inDirtyList = false; |
|
245 |
widget->d_func()->isScrolled = false; |
|
246 |
widget->d_func()->isMoved = false; |
|
247 |
widget->d_func()->dirty = QRegion(); |
|
248 |
} |
|
249 |
} |
|
250 |
||
251 |
inline void updateStaticContentsSize() |
|
252 |
{ |
|
253 |
for (int i = 0; i < staticWidgets.size(); ++i) { |
|
254 |
QWidgetPrivate *wd = staticWidgets.at(i)->d_func(); |
|
255 |
if (!wd->extra) |
|
256 |
wd->createExtra(); |
|
257 |
wd->extra->staticContentsSize = wd->data.crect.size(); |
|
258 |
} |
|
259 |
} |
|
260 |
||
261 |
inline bool hasStaticContents() const |
|
262 |
{ return !staticWidgets.isEmpty() && windowSurface->hasStaticContentsSupport(); } |
|
263 |
||
264 |
friend QRegion qt_dirtyRegion(QWidget *); |
|
265 |
friend class QWidgetPrivate; |
|
266 |
friend class QWidget; |
|
267 |
friend class QWSManagerPrivate; |
|
268 |
friend class QETWidget; |
|
269 |
friend class QWindowSurface; |
|
270 |
friend class QWSWindowSurface; |
|
271 |
}; |
|
272 |
||
273 |
QT_END_NAMESPACE |
|
274 |
||
275 |
#endif // QBACKINGSTORE_P_H |