Newer
Older
/* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
* Qwt Widget Library
* Copyright (C) 1997 Josef Wilgen
* Copyright (C) 2002 Uwe Rathmann
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Qwt License, Version 1.0
*****************************************************************************/
#include <qapplication.h>
#include <qpainter.h>
#if QT_VERSION < 0x040000
#include <qpaintdevicemetrics.h>
#include <qwmatrix.h>
#include <qpaintdevice.h>
#include <qdesktopwidget.h>
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include "qwt_math.h"
#include "qwt_polygon.h"
#include "qwt_layout_metrics.h"
static QSize deviceDpi(const QPaintDevice *device)
{
QSize dpi;
#if QT_VERSION < 0x040000
const QPaintDeviceMetrics metrics(device);
dpi.setWidth(metrics.logicalDpiX());
dpi.setHeight(metrics.logicalDpiY());
#else
dpi.setWidth(device->logicalDpiX());
dpi.setHeight(device->logicalDpiY());
#endif
return dpi;
}
#if QT_VERSION < 0x040000
inline static const QWMatrix &matrix(const QPainter *painter)
{
return painter->worldMatrix();
}
inline static QWMatrix invMatrix(const QPainter *painter)
{
return painter->worldMatrix().invert();
}
#else // QT_VERSION >= 0x040000
inline static const QMatrix &matrix(const QPainter *painter)
{
return painter->matrix();
}
inline static QMatrix invMatrix(const QPainter *painter)
{
return painter->matrix().inverted();
}
#endif
QwtMetricsMap::QwtMetricsMap()
{
d_screenToLayoutX = d_screenToLayoutY =
d_deviceToLayoutX = d_deviceToLayoutY = 1.0;
void QwtMetricsMap::setMetrics(const QPaintDevice *layoutDevice,
const QPaintDevice *paintDevice)
{
const QSize screenDpi = deviceDpi(QApplication::desktop());
const QSize layoutDpi = deviceDpi(layoutDevice);
const QSize paintDpi = deviceDpi(paintDevice);
d_screenToLayoutX = double(layoutDpi.width()) /
double(screenDpi.width());
d_screenToLayoutY = double(layoutDpi.height()) /
double(screenDpi.height());
d_deviceToLayoutX = double(layoutDpi.width()) /
double(paintDpi.width());
d_deviceToLayoutY = double(layoutDpi.height()) /
double(paintDpi.height());
QPoint QwtMetricsMap::layoutToDevice(const QPoint &point,
const QPainter *painter) const
QPoint QwtMetricsMap::layoutToDevice(const QPoint &point,
const QPainter *) const
#endif
{
if ( isIdentity() )
return point;
QPoint mappedPoint(point);
#ifndef QT_NO_TRANSFORMATIONS
if ( painter )
mappedPoint = matrix(painter).map(mappedPoint);
#endif
mappedPoint.setX(layoutToDeviceX(mappedPoint.x()));
mappedPoint.setY(layoutToDeviceY(mappedPoint.y()));
#ifndef QT_NO_TRANSFORMATIONS
if ( painter )
mappedPoint = invMatrix(painter).map(mappedPoint);
#endif
return mappedPoint;
}
#ifndef QT_NO_TRANSFORMATIONS
QPoint QwtMetricsMap::deviceToLayout(const QPoint &point,
const QPainter *painter) const
QPoint QwtMetricsMap::deviceToLayout(const QPoint &point,
const QPainter *) const
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
#endif
{
if ( isIdentity() )
return point;
QPoint mappedPoint(point);
#ifndef QT_NO_TRANSFORMATIONS
if ( painter )
mappedPoint = matrix(painter).map(mappedPoint);
#endif
mappedPoint.setX(deviceToLayoutX(mappedPoint.x()));
mappedPoint.setY(deviceToLayoutY(mappedPoint.y()));
#ifndef QT_NO_TRANSFORMATIONS
if ( painter )
mappedPoint = invMatrix(painter).map(mappedPoint);
#endif
return mappedPoint;
}
QPoint QwtMetricsMap::screenToLayout(const QPoint &point) const
{
if ( d_screenToLayoutX == 1.0 && d_screenToLayoutY == 1.0 )
return point;
return QPoint(screenToLayoutX(point.x()), screenToLayoutY(point.y()));
}
QPoint QwtMetricsMap::layoutToScreen(const QPoint &point) const
{
if ( d_screenToLayoutX == 1.0 && d_screenToLayoutY == 1.0 )
return point;
return QPoint(layoutToScreenX(point.x()), layoutToScreenY(point.y()));
}
#ifndef QT_NO_TRANSFORMATIONS
QRect QwtMetricsMap::layoutToDevice(const QRect &rect,
const QPainter *painter) const
QRect QwtMetricsMap::layoutToDevice(const QRect &rect,
const QPainter *) const
#endif
{
if ( isIdentity() )
return rect;
QRect mappedRect(rect);
#ifndef QT_NO_TRANSFORMATIONS
if ( painter )
mappedRect = translate(matrix(painter), mappedRect);
#endif
mappedRect = QRect(
layoutToDevice(mappedRect.topLeft()),
layoutToDevice(mappedRect.bottomRight())
);
#ifndef QT_NO_TRANSFORMATIONS
if ( painter )
mappedRect = translate(invMatrix(painter), mappedRect);
#endif
return mappedRect;
}
#ifndef QT_NO_TRANSFORMATIONS
QRect QwtMetricsMap::deviceToLayout(const QRect &rect,
#else
QRect QwtMetricsMap::deviceToLayout(const QRect &rect,
#endif
{
if ( isIdentity() )
return rect;
QRect mappedRect(rect);
#ifndef QT_NO_TRANSFORMATIONS
if ( painter )
mappedRect = translate(matrix(painter), mappedRect);
#endif
mappedRect = QRect(
deviceToLayout(mappedRect.topLeft()),
deviceToLayout(mappedRect.bottomRight())
);
#ifndef QT_NO_TRANSFORMATIONS
if ( painter )
mappedRect = translate(invMatrix(painter), mappedRect);
#endif
return mappedRect;
}
QRect QwtMetricsMap::screenToLayout(const QRect &rect) const
{
if ( d_screenToLayoutX == 1.0 && d_screenToLayoutY == 1.0 )
return rect;
return QRect(screenToLayoutX(rect.x()), screenToLayoutY(rect.y()),
screenToLayoutX(rect.width()), screenToLayoutY(rect.height()));
}
QRect QwtMetricsMap::layoutToScreen(const QRect &rect) const
{
if ( d_screenToLayoutX == 1.0 && d_screenToLayoutY == 1.0 )
return rect;
return QRect(layoutToScreenX(rect.x()), layoutToScreenY(rect.y()),
layoutToScreenX(rect.width()), layoutToScreenY(rect.height()));
QwtPolygon QwtMetricsMap::layoutToDevice(const QwtPolygon &pa,
const QPainter *painter) const
QwtPolygon QwtMetricsMap::layoutToDevice(const QwtPolygon &pa,
const QPainter *) const
QwtPolygon mappedPa(pa);
#ifndef QT_NO_TRANSFORMATIONS
if ( painter )
mappedPa = translate(matrix(painter), mappedPa);
#endif
QwtMatrix m;
m.scale(1.0 / d_deviceToLayoutX, 1.0 / d_deviceToLayoutY);
mappedPa = translate(m, mappedPa);
#ifndef QT_NO_TRANSFORMATIONS
if ( painter )
mappedPa = translate(invMatrix(painter), mappedPa);
#endif
return mappedPa;
}
#ifndef QT_NO_TRANSFORMATIONS
QwtPolygon QwtMetricsMap::deviceToLayout(const QwtPolygon &pa,
const QPainter *painter) const
QwtPolygon QwtMetricsMap::deviceToLayout(const QwtPolygon &pa,
const QPainter *) const
QwtPolygon mappedPa(pa);
#ifndef QT_NO_TRANSFORMATIONS
if ( painter )
mappedPa = translate(matrix(painter), mappedPa);
#endif
QwtMatrix m;
m.scale(d_deviceToLayoutX, d_deviceToLayoutY);
mappedPa = translate(m, mappedPa);
#ifndef QT_NO_TRANSFORMATIONS
if ( painter )
mappedPa = translate(invMatrix(painter), mappedPa);
#endif
return mappedPa;
}
/*!
\param m Matrix
\param rect Rectangle to translate
\return Translated rectangle
*/
QRect QwtMetricsMap::translate(
const QwtMatrix &m, const QRect &rect)
\param m Matrix
\param pa Polygon to translate
\return Translated polygon
*/
QwtPolygon QwtMetricsMap::translate(
const QwtMatrix &m, const QwtPolygon &pa)