QGIS API Documentation 3.39.0-Master (3aed037ce22)
Loading...
Searching...
No Matches
qgstextmasksettings.h
Go to the documentation of this file.
1/***************************************************************************
2 qgstextmasksettings.h
3 -----------------
4 begin : May 2020
5 copyright : (C) Nyall Dawson
6 email : nyall dot dawson at gmail dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#ifndef QGSTEXTMASKSETTINGS_H
17#define QGSTEXTMASKSETTINGS_H
18
19#include "qgis_sip.h"
20#include "qgis_core.h"
21#include "qgis.h"
22#include "qgsmapunitscale.h"
23
24#include <QSharedDataPointer>
25#include <QDomElement>
26
27class QgsTextMaskSettingsPrivate;
28class QgsPaintEffect;
31
41class CORE_EXPORT QgsTextMaskSettings
42{
43 public:
44
49 {
50 MaskBuffer = 0
51 };
52
54
56 QgsTextMaskSettings &operator=( const QgsTextMaskSettings &other );
57
59
60 bool operator==( const QgsTextMaskSettings &other ) const;
61 bool operator!=( const QgsTextMaskSettings &other ) const;
62
66 bool enabled() const;
67
71 void setEnabled( bool );
72
77 MaskType type() const;
78
84 void setType( MaskType type );
85
91 double size() const;
92
99 void setSize( double size );
100
106 Qgis::RenderUnit sizeUnit() const;
107
114 void setSizeUnit( Qgis::RenderUnit unit );
115
122 QgsMapUnitScale sizeMapUnitScale() const;
123
131 void setSizeMapUnitScale( const QgsMapUnitScale &scale );
132
137 Qt::PenJoinStyle joinStyle() const;
138
144 void setJoinStyle( Qt::PenJoinStyle style );
145
151 double opacity() const;
152
159 void setOpacity( double opacity );
160
166 QgsPaintEffect *paintEffect() const;
167
173 void setPaintEffect( QgsPaintEffect *effect SIP_TRANSFER );
174
179 void readXml( const QDomElement &elem );
180
185 QDomElement writeXml( QDomDocument &doc ) const;
186
192 QList<QgsSymbolLayerReference> maskedSymbolLayers() const;
193
199 void setMaskedSymbolLayers( const QList<QgsSymbolLayerReference> &maskedLayers );
200
204 void updateDataDefinedProperties( QgsRenderContext &context, const QgsPropertyCollection &properties );
205
210 QSet<QString> referencedFields( const QgsRenderContext &context ) const;
211
212 private:
213
214 QSharedDataPointer<QgsTextMaskSettingsPrivate> d;
215};
216
217#endif // QGSTEXTMASKSETTINGS_H
RenderUnit
Rendering size units.
Definition qgis.h:4594
Struct for storing maximum and minimum scales for measurements in map units.
Base class for visual effects which can be applied to QPicture drawings.
A grouped map of multiple QgsProperty objects, each referenced by a integer key value.
Contains information about the context of a rendering operation.
Type used to refer to a specific symbol layer in a symbol of a layer.
Container for settings relating to a selective masking around a text.
MaskType
Mask shape types.
#define SIP_TRANSFER
Definition qgis_sip.h:36
bool operator==(const QgsFeatureIterator &fi1, const QgsFeatureIterator &fi2)
bool operator!=(const QgsFeatureIterator &fi1, const QgsFeatureIterator &fi2)