1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
|
/* This file is part of the KDE project
Copyright (C) 2001-2005 David Faure <faure@kde.org>
Copyright (C) 2006, 2009 Thomas Zander <zander@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KOZOOMHANDLER_H
#define KOZOOMHANDLER_H
#include "kowidgets_export.h"
#include <KoZoomMode.h>
#include <KoViewConverter.h>
/**
* This class handles the zooming and DPI stuff (conversions between
* postscript pt values and pixels). If the internal data of your
* document does not work with postscript points (for instance raster
* image pixels), you need to some additional converting yourself.
*
* An instance of KoZoomHandler operates at a given zoom and resolution
* so there is usually one instance of KoZoomHandler per view.
*/
class KOWIDGETS_EXPORT KoZoomHandler : public KoViewConverter
{
public:
KoZoomHandler();
virtual ~KoZoomHandler();
/**
* @return the conversion factor between document and view, that
* includes the zoom and also the DPI setting.
*/
inline qreal zoomedResolutionX() const { return m_zoomedResolutionX; }
/**
* @return the conversion factor between document and view, that
* includes the zoom and also the DPI setting.
*/
inline qreal zoomedResolutionY() const { return m_zoomedResolutionY; }
inline qreal resolutionX() const { return m_resolutionX; }
inline qreal resolutionY() const { return m_resolutionY; }
/**
* Zoom factor for X. Equivalent to zoomedResolutionX()/resolutionX()
*/
inline qreal zoomFactorX() const { return m_zoomedResolutionX / m_resolutionX; }
/**
* Zoom factor for Y. Equivalent to zoomedResolutionY()/resolutionY()
*/
inline qreal zoomFactorY() const { return m_zoomedResolutionY / m_resolutionY; }
/**
* Set resolution expressed in dots-per-inch
*/
void setDpi(int dpiX, int dpiY);
/**
* Set a resolution for X and Y of the output device.
* The zoom factor is not changed.
*
* This number should be the result of:
* POINT_TO_INCH(static_cast<qreal>(DOTS_PER_INCH))
*/
void setResolution(qreal resolutionX, qreal resolutionY);
/**
* Set the resolution for X and Y to the display values reported by KGlobal.
* The zoom factor is not changed.
*/
void setResolutionToStandard( );
/**
* Set the zoomed resolution for X and Y.
* Compared to the setZoom... methods, this allows to set a different
* zoom factor for X and for Y.
*/
virtual void setZoomedResolution(qreal zoomedResolutionX, qreal zoomedResolutionY);
/**
* Change the zoom level, keeping the resolution unchanged.
* @param zoom the zoom factor (e.g. 1.0 for 100%)
*/
void setZoom(qreal zoom);
/**
* Change the zoom mode
* @param zoomMode the zoom mode.
*/
inline void setZoomMode(KoZoomMode::Mode zoomMode) { m_zoomMode = zoomMode; }
/**
* @return the global zoom factor (e.g. 100 for 100%).
* Only use this to display to the user, don't use in calculations
*/
inline int zoomInPercent() const { return qRound(KoViewConverter::zoom() * 100); }
/**
* @return the global zoom mode (e.g. KoZoomMode::ZOOM_WIDTH).
* use this to determine how to zoom
*/
KoZoomMode::Mode zoomMode() const { return m_zoomMode; }
// Input: pt. Output: pixels. Resolution and zoom are applied.
inline qreal zoomItX(qreal z) const
{
return m_zoomedResolutionX * z;
}
inline qreal zoomItY(qreal z) const
{
return m_zoomedResolutionY * z ;
}
// Input: pixels. Output: pt.
inline qreal unzoomItX(qreal x) const
{
return x / m_zoomedResolutionX;
}
inline qreal unzoomItY(qreal y) const
{
return y / m_zoomedResolutionY;
}
// KoViewConverter-interface methods
/**
* Convert a coordinate in pt to pixels.
* @param documentPoint the point in the document coordinate system of a KoShape.
*/
virtual QPointF documentToView(const QPointF &documentPoint) const;
/**
* Convert a coordinate in pixels to pt.
* @param viewPoint the point in the coordinate system of the widget, or window.
*/
virtual QPointF viewToDocument(const QPointF &viewPoint) const;
/**
* Convert a rectangle in pt to pixels.
* @param documentRect the rect in the document coordinate system of a KoShape.
*/
virtual QRectF documentToView(const QRectF &documentRect) const;
/**
* Convert a rectangle in pixels to pt.
* @param viewRect the rect in the coordinate system of the widget, or window.
*/
virtual QRectF viewToDocument(const QRectF &viewRect) const;
/**
* Convert a size in pt to pixels.
* @param documentSize the size in pt.
* @return the size in pixels.
*/
virtual QSizeF documentToView(const QSizeF &documentSize) const;
/**
* Convert a size in pixels to pt.
* @param viewSize the size in pixels.
* @return the size in pt.
*/
virtual QSizeF viewToDocument(const QSizeF &viewSize) const;
/**
* Convert a single x coordinate in pt to pixels.
* @param documentX the x coordinate in pt.
* @return the x coordinate in pixels.
*/
virtual qreal documentToViewX(qreal documentX) const;
/**
* Convert a single y coordinate in pt to pixels.
* @param documentY the y coordinate in pt.
* @return the y coordinate in pixels.
*/
virtual qreal documentToViewY(qreal documentY) const;
/**
* Convert a single x coordinate in pixels to pt.
* @param viewX the x coordinate in pixels.
* @return the x coordinate in pt.
*/
virtual qreal viewToDocumentX(qreal viewX) const;
/**
* Convert a single y coordinate in pixels to pt.
* @param viewY the y coordinate in pixels.
* @return the y coordinate in pt.
*/
virtual qreal viewToDocumentY(qreal viewY) const;
/**
* Get the zoom levels of the individual x and y axis. Copy them to the pointer parameters.
* @param zoomX a pointer to a qreal which will be modified to set the horizontal zoom.
* @param zoomY a pointer to a qreal which will be modified to set the vertical zoom.
*/
virtual void zoom(qreal *zoomX, qreal *zoomY) const;
using KoViewConverter::zoom;
protected:
KoZoomMode::Mode m_zoomMode;
qreal m_resolutionX;
qreal m_resolutionY;
qreal m_zoomedResolutionX;
qreal m_zoomedResolutionY;
};
#endif
|