author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Fri, 16 Apr 2010 15:50:13 +0300 | |
changeset 18 | 2f34d5167611 |
parent 0 | 1918ee327afb |
permissions | -rw-r--r-- |
0 | 1 |
/**************************************************************************** |
2 |
** |
|
18
2f34d5167611
Revision: 201011
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
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 Qt3Support 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 |
#include "q3paintdevicemetrics.h" |
|
43 |
||
44 |
QT_BEGIN_NAMESPACE |
|
45 |
||
46 |
/*! |
|
47 |
\class Q3PaintDeviceMetrics |
|
48 |
\brief The Q3PaintDeviceMetrics class provides information about a |
|
49 |
paint device. |
|
50 |
||
51 |
\compat |
|
52 |
||
53 |
Sometimes when drawing graphics it is necessary to obtain |
|
54 |
information about the physical characteristics of a paint device. |
|
55 |
This class provides the information. For example, to compute the |
|
56 |
aspect ratio of a paint device: |
|
57 |
||
58 |
\snippet doc/src/snippets/code/src_qt3support_painting_q3paintdevicemetrics.cpp 0 |
|
59 |
||
60 |
Q3PaintDeviceMetrics contains methods to provide the width and |
|
61 |
height of a device in both pixels (width() and height()) and |
|
62 |
millimeters (widthMM() and heightMM()), the number of colors the |
|
63 |
device supports (numColors()), the number of bit planes (depth()), |
|
64 |
and the resolution of the device (logicalDpiX() and |
|
65 |
logicalDpiY()). |
|
66 |
||
67 |
It is not always possible for Q3PaintDeviceMetrics to compute the |
|
68 |
values you ask for, particularly for external devices. The |
|
69 |
ultimate example is asking for the resolution of of a QPrinter |
|
70 |
that is set to "print to file": who knows what printer that file |
|
71 |
will end up on? |
|
72 |
*/ |
|
73 |
||
74 |
/*! |
|
75 |
\fn Q3PaintDeviceMetrics::Q3PaintDeviceMetrics(const QPaintDevice *pd) |
|
76 |
||
77 |
Constructs a metric for the paint device \a pd. |
|
78 |
*/ |
|
79 |
||
80 |
||
81 |
/*! |
|
82 |
\fn int Q3PaintDeviceMetrics::width() const |
|
83 |
||
84 |
Returns the width of the paint device in default coordinate system |
|
85 |
units (e.g. pixels for QPixmap and QWidget). |
|
86 |
*/ |
|
87 |
||
88 |
/*! |
|
89 |
\fn int Q3PaintDeviceMetrics::height() const |
|
90 |
||
91 |
Returns the height of the paint device in default coordinate |
|
92 |
system units (e.g. pixels for QPixmap and QWidget). |
|
93 |
*/ |
|
94 |
||
95 |
/*! |
|
96 |
\fn int Q3PaintDeviceMetrics::widthMM() const |
|
97 |
||
98 |
Returns the width of the paint device, measured in millimeters. |
|
99 |
*/ |
|
100 |
||
101 |
/*! |
|
102 |
\fn int Q3PaintDeviceMetrics::heightMM() const |
|
103 |
||
104 |
Returns the height of the paint device, measured in millimeters. |
|
105 |
*/ |
|
106 |
||
107 |
/*! |
|
108 |
\fn int Q3PaintDeviceMetrics::numColors() const |
|
109 |
||
110 |
Returns the number of different colors available for the paint |
|
111 |
device. Since this value is an int will not be sufficient to represent |
|
112 |
the number of colors on 32 bit displays, in which case INT_MAX is |
|
113 |
returned instead. |
|
114 |
*/ |
|
115 |
||
116 |
/*! |
|
117 |
\fn int Q3PaintDeviceMetrics::depth() const |
|
118 |
||
119 |
Returns the bit depth (number of bit planes) of the paint device. |
|
120 |
*/ |
|
121 |
||
122 |
/*! |
|
123 |
\fn int Q3PaintDeviceMetrics::logicalDpiX() const |
|
124 |
||
125 |
Returns the horizontal resolution of the device in dots per inch, |
|
126 |
which is used when computing font sizes. For X, this is usually |
|
127 |
the same as could be computed from widthMM(), but it varies on |
|
128 |
Windows. |
|
129 |
*/ |
|
130 |
||
131 |
/*! |
|
132 |
\fn int Q3PaintDeviceMetrics::logicalDpiY() const |
|
133 |
||
134 |
Returns the vertical resolution of the device in dots per inch, |
|
135 |
which is used when computing font sizes. For X, this is usually |
|
136 |
the same as could be computed from heightMM(), but it varies on |
|
137 |
Windows. |
|
138 |
*/ |
|
139 |
||
140 |
/*! |
|
141 |
\fn int Q3PaintDeviceMetrics::physicalDpiX() const |
|
142 |
\internal |
|
143 |
*/ |
|
144 |
/*! |
|
145 |
\fn int Q3PaintDeviceMetrics::physicalDpiY() const |
|
146 |
\internal |
|
147 |
*/ |
|
148 |
||
149 |
QT_END_NAMESPACE |