0
|
1 |
/****************************************************************************
|
|
2 |
**
|
|
3 |
** Copyright (C) 2009 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 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 QPAINTDEVICE_H
|
|
43 |
#define QPAINTDEVICE_H
|
|
44 |
|
|
45 |
#include <QtGui/qwindowdefs.h>
|
|
46 |
#include <QtCore/qrect.h>
|
|
47 |
|
|
48 |
QT_BEGIN_HEADER
|
|
49 |
|
|
50 |
QT_BEGIN_NAMESPACE
|
|
51 |
|
|
52 |
QT_MODULE(Gui)
|
|
53 |
|
|
54 |
#if defined(Q_WS_QWS)
|
|
55 |
class QWSDisplay;
|
|
56 |
#endif
|
|
57 |
|
|
58 |
class QPaintEngine;
|
|
59 |
|
|
60 |
class Q_GUI_EXPORT QPaintDevice // device for QPainter
|
|
61 |
{
|
|
62 |
public:
|
|
63 |
enum PaintDeviceMetric {
|
|
64 |
PdmWidth = 1,
|
|
65 |
PdmHeight,
|
|
66 |
PdmWidthMM,
|
|
67 |
PdmHeightMM,
|
|
68 |
PdmNumColors,
|
|
69 |
PdmDepth,
|
|
70 |
PdmDpiX,
|
|
71 |
PdmDpiY,
|
|
72 |
PdmPhysicalDpiX,
|
|
73 |
PdmPhysicalDpiY
|
|
74 |
};
|
|
75 |
|
|
76 |
virtual ~QPaintDevice();
|
|
77 |
|
|
78 |
virtual int devType() const;
|
|
79 |
bool paintingActive() const;
|
|
80 |
virtual QPaintEngine *paintEngine() const = 0;
|
|
81 |
|
|
82 |
#if defined(Q_WS_QWS)
|
|
83 |
static QWSDisplay *qwsDisplay();
|
|
84 |
#endif
|
|
85 |
|
|
86 |
#ifdef Q_WS_WIN
|
|
87 |
virtual HDC getDC() const;
|
|
88 |
virtual void releaseDC(HDC hdc) const;
|
|
89 |
#endif
|
|
90 |
|
|
91 |
int width() const { return metric(PdmWidth); }
|
|
92 |
int height() const { return metric(PdmHeight); }
|
|
93 |
int widthMM() const { return metric(PdmWidthMM); }
|
|
94 |
int heightMM() const { return metric(PdmHeightMM); }
|
|
95 |
int logicalDpiX() const { return metric(PdmDpiX); }
|
|
96 |
int logicalDpiY() const { return metric(PdmDpiY); }
|
|
97 |
int physicalDpiX() const { return metric(PdmPhysicalDpiX); }
|
|
98 |
int physicalDpiY() const { return metric(PdmPhysicalDpiY); }
|
|
99 |
int numColors() const { return metric(PdmNumColors); }
|
|
100 |
int depth() const { return metric(PdmDepth); }
|
|
101 |
|
|
102 |
protected:
|
|
103 |
QPaintDevice();
|
|
104 |
virtual int metric(PaintDeviceMetric metric) const;
|
|
105 |
|
|
106 |
ushort painters; // refcount
|
|
107 |
|
|
108 |
private:
|
|
109 |
Q_DISABLE_COPY(QPaintDevice)
|
|
110 |
|
|
111 |
#if defined(Q_WS_X11) && defined(QT3_SUPPORT)
|
|
112 |
public:
|
|
113 |
QT3_SUPPORT Display *x11Display() const;
|
|
114 |
QT3_SUPPORT int x11Screen() const;
|
|
115 |
QT3_SUPPORT int x11Depth() const;
|
|
116 |
QT3_SUPPORT int x11Cells() const;
|
|
117 |
QT3_SUPPORT Qt::HANDLE x11Colormap() const;
|
|
118 |
QT3_SUPPORT bool x11DefaultColormap() const;
|
|
119 |
QT3_SUPPORT void *x11Visual() const;
|
|
120 |
QT3_SUPPORT bool x11DefaultVisual() const;
|
|
121 |
|
|
122 |
static QT3_SUPPORT Display *x11AppDisplay();
|
|
123 |
static QT3_SUPPORT int x11AppScreen();
|
|
124 |
static QT3_SUPPORT int x11AppDepth(int screen = -1);
|
|
125 |
static QT3_SUPPORT int x11AppCells(int screen = -1);
|
|
126 |
static QT3_SUPPORT Qt::HANDLE x11AppRootWindow(int screen = -1);
|
|
127 |
static QT3_SUPPORT Qt::HANDLE x11AppColormap(int screen = -1);
|
|
128 |
static QT3_SUPPORT void *x11AppVisual(int screen = -1);
|
|
129 |
static QT3_SUPPORT bool x11AppDefaultColormap(int screen =-1);
|
|
130 |
static QT3_SUPPORT bool x11AppDefaultVisual(int screen =-1);
|
|
131 |
static QT3_SUPPORT int x11AppDpiX(int screen = -1);
|
|
132 |
static QT3_SUPPORT int x11AppDpiY(int screen = -1);
|
|
133 |
static QT3_SUPPORT void x11SetAppDpiX(int, int);
|
|
134 |
static QT3_SUPPORT void x11SetAppDpiY(int, int);
|
|
135 |
#endif
|
|
136 |
|
|
137 |
friend class QPainter;
|
|
138 |
friend class QFontEngineMac;
|
|
139 |
friend class QX11PaintEngine;
|
|
140 |
friend Q_GUI_EXPORT int qt_paint_device_metric(const QPaintDevice *device, PaintDeviceMetric metric);
|
|
141 |
};
|
|
142 |
|
|
143 |
#ifdef QT3_SUPPORT
|
|
144 |
QT3_SUPPORT Q_GUI_EXPORT
|
|
145 |
void bitBlt(QPaintDevice *dst, int dx, int dy,
|
|
146 |
const QPaintDevice *src, int sx=0, int sy=0, int sw=-1, int sh=-1,
|
|
147 |
bool ignoreMask=false);
|
|
148 |
|
|
149 |
QT3_SUPPORT Q_GUI_EXPORT
|
|
150 |
void bitBlt(QPaintDevice *dst, int dx, int dy,
|
|
151 |
const QImage *src, int sx=0, int sy=0, int sw=-1, int sh=-1,
|
|
152 |
int conversion_flags=0);
|
|
153 |
|
|
154 |
QT3_SUPPORT Q_GUI_EXPORT
|
|
155 |
void bitBlt(QPaintDevice *dst, const QPoint &dp,
|
|
156 |
const QPaintDevice *src, const QRect &sr=QRect(0,0,-1,-1),
|
|
157 |
bool ignoreMask=false);
|
|
158 |
#endif
|
|
159 |
|
|
160 |
/*****************************************************************************
|
|
161 |
Inline functions
|
|
162 |
*****************************************************************************/
|
|
163 |
|
|
164 |
inline int QPaintDevice::devType() const
|
|
165 |
{ return QInternal::UnknownDevice; }
|
|
166 |
|
|
167 |
inline bool QPaintDevice::paintingActive() const
|
|
168 |
{ return painters != 0; }
|
|
169 |
|
|
170 |
QT_END_NAMESPACE
|
|
171 |
|
|
172 |
QT_END_HEADER
|
|
173 |
|
|
174 |
#endif // QPAINTDEVICE_H
|