QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
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_core.h"
21#include "qgspainteffect.h"
22#include "qgis_sip.h"
23#include "qgsmapunitscale.h"
24#include "qgis.h"
25#include <QPainter>
26
36{
37
38 public:
39
45 static QgsPaintEffect *create( const QVariantMap &map ) SIP_FACTORY;
46
50 QgsTransformEffect() = default;
51
52 QString type() const override { return QStringLiteral( "transform" ); }
53 QVariantMap properties() const override;
54 void readProperties( const QVariantMap &props ) override;
55 QgsTransformEffect *clone() const override SIP_FACTORY;
56
65 void setTranslateX( const double translateX ) { mTranslateX = translateX; }
66
75 double translateX() const { return mTranslateX; }
76
85 void setTranslateY( const double translateY ) { mTranslateY = translateY; }
86
95 double translateY() const { return mTranslateY; }
96
105 void setTranslateUnit( const Qgis::RenderUnit unit ) { mTranslateUnit = unit; }
106
115 Qgis::RenderUnit translateUnit() const { return mTranslateUnit; }
116
125 void setTranslateMapUnitScale( const QgsMapUnitScale &scale ) { mTranslateMapUnitScale = scale; }
126
135 const QgsMapUnitScale &translateMapUnitScale() const { return mTranslateMapUnitScale; }
136
143 void setScaleX( const double scaleX ) { mScaleX = scaleX; }
144
151 double scaleX() const { return mScaleX; }
152
158 void setScaleY( const double scaleY ) { mScaleY = scaleY; }
159
166 double scaleY() const { return mScaleY; }
167
172 void setRotation( const double rotation ) { mRotation = rotation; }
173
178 double rotation() const { return mRotation; }
179
186 void setShearX( const double shearX ) { mShearX = shearX; }
187
194 double shearX() const { return mShearX; }
195
202 void setShearY( const double shearY ) { mShearY = shearY; }
203
210 double shearY() const { return mShearY; }
211
218 void setReflectX( const bool reflectX ) { mReflectX = reflectX; }
219
226 bool reflectX() const { return mReflectX; }
227
234 void setReflectY( const bool reflectY ) { mReflectY = reflectY; }
235
242 bool reflectY() const { return mReflectY; }
243
244 protected:
245
246 void draw( QgsRenderContext &context ) override;
247 QRectF boundingRect( const QRectF &rect, const QgsRenderContext &context ) const override;
248
249 private:
250
251 double mTranslateX = 0.0;
252 double mTranslateY = 0.0;
254 QgsMapUnitScale mTranslateMapUnitScale;
255 double mScaleX = 1.0;
256 double mScaleY = 1.0;
257 double mRotation = 0.0;
258 double mShearX = 0.0;
259 double mShearY = 0.0;
260 bool mReflectX = false;
261 bool mReflectY = false;
262
263 QTransform createTransform( const QgsRenderContext &context ) const;
264
265};
266
267#endif // QGSTRANSFORMEFFECT_H
268
RenderUnit
Rendering size units.
Definition: qgis.h:4255
@ Millimeters
Millimeters.
Struct for storing maximum and minimum scales for measurements in map units.
Base class for visual effects which can be applied to QPicture drawings.
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 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
Constructor for QgsTransformEffect.
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.
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:76
#define SIP_NODEFAULTCTORS
Definition: qgis_sip.h:101