Qt 4.8
qminimalwindowsurface.cpp
Go to the documentation of this file.
1 /****************************************************************************
2 **
3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the plugins of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia. For licensing terms and
14 ** conditions see http://qt.digia.com/licensing. For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file. Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights. These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file. Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41 
42 
43 #include "qminimalwindowsurface.h"
44 #include <QtCore/qdebug.h>
45 #include <QtGui/private/qapplication_p.h>
46 
48 
50  : QWindowSurface(window)
51 {
52  //qDebug() << "QMinimalWindowSurface::QMinimalWindowSurface:" << (long)this;
53 }
54 
56 {
57 }
58 
60 {
61  //qDebug() << "QMinimalWindowSurface::paintDevice";
62  return &mImage;
63 }
64 
66 {
67  Q_UNUSED(widget);
68  Q_UNUSED(region);
69  Q_UNUSED(offset);
70 
71  static int c = 0;
72  QString filename = QString("output%1.png").arg(c++, 4, 10, QLatin1Char('0'));
73  qDebug() << "QMinimalWindowSurface::flush() saving contents to" << filename.toLocal8Bit().constData();
74  mImage.save(filename);
75 }
76 
78 {
79  //qDebug() << "QMinimalWindowSurface::setGeometry:" << (long)this << rect;
80  QWindowSurface::resize(size);
81  QImage::Format format = QApplicationPrivate::platformIntegration()->screens().first()->format();
82  if (mImage.size() != size)
83  mImage = QImage(size, format);
84 }
85 
Format
The following image formats are available in Qt.
Definition: qimage.h:91
unsigned char c[8]
Definition: qnumeric_p.h:62
#define QT_END_NAMESPACE
This macro expands to.
Definition: qglobal.h:90
QPointer< QWidget > widget
void resize(const QSize &size)
The QWidget class is the base class of all user interface objects.
Definition: qwidget.h:150
bool save(const QString &fileName, const char *format=0, int quality=-1) const
Saves the image to the file with the given fileName, using the given image file format and quality fa...
Definition: qimage.cpp:5346
virtual QPoint offset(const QWidget *widget) const
Returns the offset of widget in the coordinates of this window surface.
The QString class provides a Unicode character string.
Definition: qstring.h:83
Q_CORE_EXPORT void qDebug(const char *,...)
NSWindow * window
#define QT_BEGIN_NAMESPACE
This macro expands to.
Definition: qglobal.h:89
The QImage class provides a hardware-independent image representation that allows direct access to th...
Definition: qimage.h:87
The QRegion class specifies a clip region for a painter.
Definition: qregion.h:68
void flush(QWidget *widget, const QRegion &region, const QPoint &offset)
Flushes the given region from the specified widget onto the screen.
QByteArray toLocal8Bit() const Q_REQUIRED_RESULT
Returns the local 8-bit representation of the string as a QByteArray.
Definition: qstring.cpp:4049
The QWindowSurface class provides the drawing area for top-level windows.
QSize size() const
Returns the size of the image, i.
Definition: qimage.cpp:1587
const char * constData() const
Returns a pointer to the data stored in the byte array.
Definition: qbytearray.h:433
QString arg(qlonglong a, int fieldwidth=0, int base=10, const QChar &fillChar=QLatin1Char(' ')) const Q_REQUIRED_RESULT
Definition: qstring.cpp:7186
The QPoint class defines a point in the plane using integer precision.
Definition: qpoint.h:53
QPaintDevice * paintDevice()
Implement this function to return the appropriate paint device.
The QSize class defines the size of a two-dimensional object using integer point precision.
Definition: qsize.h:53
QMinimalWindowSurface(QWidget *window)
#define Q_UNUSED(x)
Indicates to the compiler that the parameter with the specified name is not used in the body of a fun...
Definition: qglobal.h:1729
The QLatin1Char class provides an 8-bit ASCII/Latin-1 character.
Definition: qchar.h:55