source: trunk/src/gui/painting/qwindowsurface.cpp@ 765

Last change on this file since 765 was 651, checked in by Dmitry A. Kuminov, 16 years ago

trunk: Merged in qt 4.6.2 sources.

File size: 9.5 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 <private/qwindowsurface_p.h>
43#include <qwidget.h>
44#include <private/qwidget_p.h>
45#include <private/qbackingstore_p.h>
46
47QT_BEGIN_NAMESPACE
48
49class QWindowSurfacePrivate
50{
51public:
52 QWindowSurfacePrivate(QWidget *w) : window(w), staticContentsSupport(false) {}
53
54 QWidget *window;
55 QRect geometry;
56 QRegion staticContents;
57 QList<QImage*> bufferImages;
58 bool staticContentsSupport;
59};
60
61/*!
62 \class QWindowSurface
63 \since 4.3
64 \internal
65 \preliminary
66 \ingroup qws
67
68 \brief The QWindowSurface class provides the drawing area for top-level
69 windows.
70*/
71
72
73/*!
74 \fn void QWindowSurface::beginPaint(const QRegion &region)
75
76 This function is called before painting onto the surface begins,
77 with the \a region in which the painting will occur.
78
79 \sa endPaint(), paintDevice()
80*/
81
82/*!
83 \fn void QWindowSurface::endPaint(const QRegion &region)
84
85 This function is called after painting onto the surface has ended,
86 with the \a region in which the painting was performed.
87
88 \sa beginPaint(), paintDevice()
89*/
90
91/*!
92 \fn void QWindowSurface::flush(QWidget *widget, const QRegion &region,
93 const QPoint &offset)
94
95 Flushes the given \a region from the specified \a widget onto the
96 screen.
97
98 Note that the \a offset parameter is currently unused.
99*/
100
101/*!
102 \fn QPaintDevice* QWindowSurface::paintDevice()
103
104 Implement this function to return the appropriate paint device.
105*/
106
107/*!
108 Constructs an empty surface for the given top-level \a window.
109*/
110QWindowSurface::QWindowSurface(QWidget *window)
111 : d_ptr(new QWindowSurfacePrivate(window))
112{
113 if (window)
114 window->setWindowSurface(this);
115}
116
117/*!
118 Destroys this surface.
119*/
120QWindowSurface::~QWindowSurface()
121{
122 if (d_ptr->window)
123 d_ptr->window->d_func()->extra->topextra->windowSurface = 0;
124 delete d_ptr;
125}
126
127/*!
128 Returns a pointer to the top-level window associated with this
129 surface.
130*/
131QWidget* QWindowSurface::window() const
132{
133 return d_ptr->window;
134}
135
136void QWindowSurface::beginPaint(const QRegion &)
137{
138}
139
140void QWindowSurface::endPaint(const QRegion &)
141{
142// QApplication::syncX();
143 qDeleteAll(d_ptr->bufferImages);
144 d_ptr->bufferImages.clear();
145}
146
147/*!
148 Sets the currently allocated area to be the given \a rect.
149
150 This function is called whenever area covered by the top-level
151 window changes.
152
153 \sa geometry()
154*/
155void QWindowSurface::setGeometry(const QRect &rect)
156{
157 d_ptr->geometry = rect;
158}
159
160/*!
161 Returns the currently allocated area on the screen.
162*/
163QRect QWindowSurface::geometry() const
164{
165 return d_ptr->geometry;
166}
167
168/*!
169 Scrolls the given \a area \a dx pixels to the right and \a dy
170 downward; both \a dx and \a dy may be negative.
171
172 Returns true if the area was scrolled successfully; false otherwise.
173*/
174bool QWindowSurface::scroll(const QRegion &area, int dx, int dy)
175{
176 Q_UNUSED(area);
177 Q_UNUSED(dx);
178 Q_UNUSED(dy);
179
180 return false;
181}
182
183/*!
184 Returns a QImage pointer which represents the actual buffer the \a widget
185 is drawn into or 0 if this is unavailable.
186
187 You must call beginPaint() before you call this function and the returned
188 pointer is only valid until endPaint() is called.
189*/
190QImage* QWindowSurface::buffer(const QWidget *widget)
191{
192 if (widget->window() != window())
193 return 0;
194
195 QPaintDevice *pdev = paintDevice();
196 if (!pdev || pdev->devType() != QInternal::Image)
197 return 0;
198
199 const QPoint off = offset(widget);
200 QImage *img = static_cast<QImage*>(pdev);
201
202 QRect rect(off, widget->size());
203 rect &= QRect(QPoint(), img->size());
204
205 if (rect.isEmpty())
206 return 0;
207
208 img = new QImage(img->scanLine(rect.y()) + rect.x() * img->depth() / 8,
209 rect.width(), rect.height(),
210 img->bytesPerLine(), img->format());
211 d_ptr->bufferImages.append(img);
212
213 return img;
214}
215
216/*!
217 Returns a QPixmap generated from the part of the backing store
218 corresponding to \a widget. Returns a null QPixmap if an error
219 occurs. The contents of the pixmap are only defined for the regions
220 of \a widget that have received paint events since the last resize
221 of the backing store.
222
223 If \a rectangle is a null rectangle (the default), the entire widget
224 is grabbed. Otherwise, the grabbed area is limited to \a rectangle.
225
226 The default implementation uses QWindowSurface::buffer().
227
228 \sa QPixmap::grabWidget()
229*/
230QPixmap QWindowSurface::grabWidget(const QWidget *widget, const QRect &rectangle) const
231{
232 QPixmap result;
233
234 if (widget->window() != window())
235 return result;
236
237 const QImage *img = const_cast<QWindowSurface *>(this)->buffer(widget->window());
238
239 if (!img || img->isNull())
240 return result;
241
242 QRect rect = rectangle.isEmpty() ? widget->rect() : (widget->rect() & rectangle);
243
244 rect.translate(offset(widget) - offset(widget->window()));
245 rect &= QRect(QPoint(), img->size());
246
247 if (rect.isEmpty())
248 return result;
249
250 QImage subimg(img->scanLine(rect.y()) + rect.x() * img->depth() / 8,