QGIS API Documentation 3.99.0-Master (26c88405ac0)
Loading...
Searching...
No Matches
qgstransformeffect.h
Go to the documentation of this file.
1/***************************************************************************
2 qgstransformeffect.h
3 --------------------
4 begin : March 2015
5 copyright : (C) 2015 Nyall Dawson
6 email : nyall dot dawson at gmail dot com
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17#ifndef QGSTRANSFORMEFFECT_H
18#define QGSTRANSFORMEFFECT_H
19
20#include "qgis.h"
21#include "qgis_core.h"
22#include "qgis_sip.h"
23#include "qgsmapunitscale.h"
24#include "qgspainteffect.h"
25
26#include <QPainter>
27
35
37{
38
39 public:
40
46 static QgsPaintEffect *create( const QVariantMap &map ) SIP_FACTORY;
47
48 QgsTransformEffect() = default;
49
50 QString type() const override { return QStringLiteral( "transform" ); }
51 QVariantMap properties() const override;
52 void readProperties( const QVariantMap &props ) override;
53 QgsTransformEffect *clone() const override SIP_FACTORY;
54
63 void setTranslateX( const double translateX ) { mTranslateX = translateX; }
64
73 double translateX() const { return mTranslateX; }
74
83 void setTranslateY( const double translateY ) { mTranslateY = translateY; }
84
93 double translateY() const { return mTranslateY; }
94
103 void setTranslateUnit( const Qgis::RenderUnit unit ) { mTranslateUnit = unit; }
104
113 Qgis::RenderUnit translateUnit() const { return mTranslateUnit; }
114
123 void setTranslateMapUnitScale( const QgsMapUnitScale &scale ) { mTranslateMapUnitScale = scale; }
124
133 const QgsMapUnitScale &translateMapUnitScale() const { return mTranslateMapUnitScale; }
134
141 void setScaleX( const double scaleX ) { mScaleX = scaleX; }
142
149 double scaleX() const { return mScaleX; }
150
156 void setScaleY( const double scaleY ) { mScaleY = scaleY; }
157
164 double scaleY() const { return mScaleY; }
165
170 void setRotation( const double rotation ) { mRotation = rotation; }
171
176 double rotation() const { return mRotation; }
177
184 void setShearX( const double shearX ) { mShearX = shearX; }
185
192 double shearX() const { return mShearX; }
193
200 void setShearY( const double shearY ) { mShearY = shearY; }
201
208 double shearY() const { return mShearY; }
209
216 void setReflectX( const bool reflectX ) { mReflectX = reflectX; }
217
224 bool reflectX() const { return mReflectX; }
225
232 void setReflectY( const bool reflectY ) { mReflectY = reflectY; }
233
240 bool reflectY() const { return mReflectY; }
241
242 protected:
243
244 void draw( QgsRenderContext &context ) override;
245 QRectF boundingRect( const QRectF &rect, const QgsRenderContext &context ) const override;
246
247 private:
248
249 double mTranslateX = 0.0;
250 double mTranslateY = 0.0;
252 QgsMapUnitScale mTranslateMapUnitScale;
253 double mScaleX = 1.0;
254 double mScaleY = 1.0;
255 double mRotation = 0.0;
256 double mShearX = 0.0;
257 double mShearY = 0.0;
258 bool mReflectX = false;
259 bool mReflectY = false;
260
261 QTransform createTransform( const QgsRenderContext &context ) const;
262
263};
264
265#endif // QGSTRANSFORMEFFECT_H
266
RenderUnit
Rendering size units.
Definition qgis.h:5183
@ Millimeters
Millimeters.
Definition qgis.h:5184
Struct for storing maximum and minimum scales for measurements in map units.
QgsPaintEffect()=default
virtual void readProperties(const QVariantMap &props)=0
Reads a string map of an effect's properties and restores the effect to the state described by the pr...
virtual QgsPaintEffect * clone() const =0
Duplicates an effect by creating a deep copy of the effect.
virtual QRectF boundingRect(const QRectF &rect, const QgsRenderContext &context) const
Returns the bounding rect required for drawing the effect.
virtual QVariantMap properties() const =0
Returns the properties describing the paint effect encoded in a string format.
virtual void draw(QgsRenderContext &context)=0
Handles drawing of the effect's result on to the specified render context.
Contains information about the context of a rendering operation.
A paint effect which applies transformations (such as move, scale and rotate) to a picture.
void setTranslateX(const double translateX)
Sets the transform x translation.
void setReflectX(const bool reflectX)
Sets whether to reflect along the x-axis.
void setReflectY(const bool reflectY)
Sets whether to reflect along the y-axis.
double translateX() const
Returns the transform x translation.
QgsTransformEffect()=default
void setScaleX(const double scaleX)
Sets the x axis scaling factor.
const QgsMapUnitScale & translateMapUnitScale() const
Returns the map unit scale used for the transform translation.
static QgsPaintEffect * create(const QVariantMap &map)
Creates a new QgsTransformEffect effect from a properties string map.
void setShearY(const double shearY)
Sets the y axis shearing factor.
double translateY() const
Returns the transform y translation.
void setScaleY(const double scaleY)
Sets the y axis scaling factor.
void setTranslateUnit(const Qgis::RenderUnit unit)
Sets the units used for the transform translation.
double rotation() const
Returns the transform rotation, in degrees clockwise.
double shearY() const
Returns the y axis shearing factor.
QString type() const override
Returns the effect type.
void setRotation(const double rotation)
Sets the transform rotation, in degrees clockwise.
void setShearX(const double shearX)
Sets the x axis shearing factor.
double shearX() const
Returns the x axis shearing factor.
bool reflectY() const
Returns whether transform will be reflected along the y-axis.
Qgis::RenderUnit translateUnit() const
Returns the units used for the transform translation.
void setTranslateMapUnitScale(const QgsMapUnitScale &scale)
Sets the map unit scale used for the transform translation.
double scaleY() const
Returns the y axis scaling factor.
bool reflectX() const
Returns whether transform will be reflected along the x-axis.
double scaleX() const
Returns the x axis scaling factor.
void setTranslateY(const double translateY)
Sets the transform y translation.
#define SIP_FACTORY
Definition qgis_sip.h:84
#define SIP_NODEFAULTCTORS
Definition qgis_sip.h:109