26  d = 
new QgsTextMaskSettingsPrivate();
 
 
   44  if ( d->enabled != other.
enabled()
 
   45       || d->type != other.
type()
 
   46       || d->size != other.
size()
 
   50       || d->opacity != other.
opacity()
 
   54  if ( 
static_cast< bool >( d->paintEffect ) != 
static_cast< bool >( other.
paintEffect() )
 
 
   63  return !( *
this == other );
 
 
  109  return d->sizeMapUnitScale;
 
 
  114  d->sizeMapUnitScale = scale;
 
 
  124  d->joinStyle = style;
 
 
  139  return d->paintEffect.get();
 
 
  144  d->paintEffect.reset( effect );
 
 
  166      const QString units = exprVal.toString();
 
  167      if ( !units.isEmpty() )
 
  183      d->opacity = val.toDouble() / 100.0;
 
  190    const QString joinstr = exprVal.toString().trimmed();
 
  191    if ( !joinstr.isEmpty() )
 
 
  200  return QSet< QString >(); 
 
 
  205  const QDomElement textMaskElem = elem.firstChildElement( QStringLiteral( 
"text-mask" ) );
 
  206  d->enabled = textMaskElem.attribute( QStringLiteral( 
"maskEnabled" ), QStringLiteral( 
"0" ) ).toInt();
 
  207  d->type = 
static_cast<QgsTextMaskSettings::MaskType>( textMaskElem.attribute( QStringLiteral( 
"maskType" ), QStringLiteral( 
"0" ) ).toInt() );
 
  208  if ( textMaskElem.hasAttribute( QStringLiteral( 
"maskSize2" ) ) )
 
  210    d->size = textMaskElem.attribute( QStringLiteral( 
"maskSize2" ), QStringLiteral( 
"1.5" ) ).toDouble();
 
  220    d->size = textMaskElem.attribute( QStringLiteral( 
"maskSize" ) ).toDouble();
 
  226  d->joinStyle = 
static_cast< Qt::PenJoinStyle 
>( textMaskElem.attribute( QStringLiteral( 
"maskJoinStyle" ), QString::number( Qt::RoundJoin ) ).toUInt() );
 
  227  d->opacity = textMaskElem.attribute( QStringLiteral( 
"maskOpacity" ), QStringLiteral( 
"1.0" ) ).toDouble();
 
  228  const QDomElement effectElem = textMaskElem.firstChildElement( QStringLiteral( 
"effect" ) );
 
  229  if ( !effectElem.isNull() )
 
 
  238  QDomElement textMaskElem = doc.createElement( QStringLiteral( 
"text-mask" ) );
 
  239  textMaskElem.setAttribute( QStringLiteral( 
"maskEnabled" ), d->enabled );
 
  240  textMaskElem.setAttribute( QStringLiteral( 
"maskType" ), d->type );
 
  241  textMaskElem.setAttribute( QStringLiteral( 
"maskSize" ), d->size );
 
  243  textMaskElem.setAttribute( QStringLiteral( 
"maskSize2" ), d->size );
 
  246  textMaskElem.setAttribute( QStringLiteral( 
"maskJoinStyle" ), 
static_cast< unsigned int >( d->joinStyle ) );
 
  247  textMaskElem.setAttribute( QStringLiteral( 
"maskOpacity" ), d->opacity );
 
  249    d->paintEffect->saveProperties( doc, textMaskElem );
 
 
  256  return d->maskedSymbolLayers;
 
 
  261  d->maskedSymbolLayers = maskedSymbols;
 
 
RenderUnit
Rendering size units.
 
bool valueAsBool(int key, const QgsExpressionContext &context, bool defaultValue=false, bool *ok=nullptr) const
Calculates the current value of the property with the specified key and interprets it as an boolean.
 
double valueAsDouble(int key, const QgsExpressionContext &context, double defaultValue=0.0, bool *ok=nullptr) const
Calculates the current value of the property with the specified key and interprets it as a double.
 
static QgsPaintEffectRegistry * paintEffectRegistry()
Returns the application's paint effect registry, used for managing paint effects.
 
void setOriginalValueVariable(const QVariant &value)
Sets the original value variable value for the context.
 
Struct for storing maximum and minimum scales for measurements in map units.
 
static bool isDefaultStack(QgsPaintEffect *effect)
Tests whether a paint effect matches the default effects stack.
 
QgsPaintEffect * createEffect(const QString &name, const QVariantMap &properties=QVariantMap()) const
Creates a new paint effect given the effect name and properties map.
 
Base class for visual effects which can be applied to QPicture drawings.
 
virtual QVariantMap properties() const =0
Returns the properties describing the paint effect encoded in a string format.
 
@ MaskEnabled
Whether the mask is enabled.
 
@ MaskJoinStyle
Mask join style.
 
@ MaskOpacity
Mask opacity.
 
@ MaskBufferUnit
Mask buffer size unit.
 
@ MaskBufferSize
Mask buffer size.
 
A grouped map of multiple QgsProperty objects, each referenced by an integer key value.
 
QVariant value(int key, const QgsExpressionContext &context, const QVariant &defaultValue=QVariant()) const final
Returns the calculated value of the property with the specified key from within the collection.
 
bool isActive(int key) const final
Returns true if the collection contains an active property with the specified key.
 
Contains information about the context of a rendering operation.
 
QgsExpressionContext & expressionContext()
Gets the expression context.
 
static Qt::PenJoinStyle decodePenJoinStyle(const QString &str)
 
static QString encodeMapUnitScale(const QgsMapUnitScale &mapUnitScale)
 
static QgsMapUnitScale decodeMapUnitScale(const QString &str)
 
Container for settings relating to a selective masking around a text.
 
void setEnabled(bool)
Returns whether the mask is enabled.
 
void setMaskedSymbolLayers(const QList< QgsSymbolLayerReference > &maskedLayers)
Sets the symbol layers that will be masked by this buffer.
 
MaskType
Mask shape types.
 
Qgis::RenderUnit sizeUnit() const
Returns the units for the buffer size.
 
QList< QgsSymbolLayerReference > maskedSymbolLayers() const
Returns a list of references to symbol layers that are masked by this buffer.
 
void setSize(double size)
Sets the size of the buffer.
 
QSet< QString > referencedFields(const QgsRenderContext &context) const
Returns all field names referenced by the configuration (e.g.
 
QgsMapUnitScale sizeMapUnitScale() const
Returns the map unit scale object for the buffer size.
 
double size() const
Returns the size of the buffer.
 
void setSizeMapUnitScale(const QgsMapUnitScale &scale)
Sets the map unit scale object for the buffer size.
 
void updateDataDefinedProperties(QgsRenderContext &context, const QgsPropertyCollection &properties)
Updates the format by evaluating current values of data defined properties.
 
void readXml(const QDomElement &elem)
Read settings from a DOM element.
 
QDomElement writeXml(QDomDocument &doc) const
Write settings into a DOM element.
 
QgsPaintEffect * paintEffect() const
Returns the current paint effect for the mask.
 
void setJoinStyle(Qt::PenJoinStyle style)
Sets the join style used for drawing the buffer.
 
double opacity() const
Returns the mask's opacity.
 
bool enabled() const
Returns whether the mask is enabled.
 
bool operator==(const QgsTextMaskSettings &other) const
 
void setSizeUnit(Qgis::RenderUnit unit)
Sets the units used for the buffer size.
 
void setPaintEffect(QgsPaintEffect *effect)
Sets the current paint effect for the mask.
 
Qt::PenJoinStyle joinStyle() const
Returns the buffer join style.
 
void setType(MaskType type)
Sets the type of mask shape.
 
MaskType type() const
Returns the type of mask shape.
 
bool operator!=(const QgsTextMaskSettings &other) const
 
QgsTextMaskSettings & operator=(const QgsTextMaskSettings &other)
 
void setOpacity(double opacity)
Sets the mask's opacity.
 
static Q_INVOKABLE Qgis::RenderUnit decodeRenderUnit(const QString &string, bool *ok=nullptr)
Decodes a render unit from a string.
 
static Q_INVOKABLE QString encodeUnit(Qgis::DistanceUnit unit)
Encodes a distance unit to a string.
 
static bool isNull(const QVariant &variant, bool silenceNullWarnings=false)
Returns true if the specified variant should be considered a NULL value.
 
QString symbolLayerReferenceListToString(const QgsSymbolLayerReferenceList &lst)
Utility function to turn a QgsSymbolLayerReferenceList into a string.
 
QgsSymbolLayerReferenceList stringToSymbolLayerReferenceList(const QString &str)
Utility function to parse a string originated from symbolLayerReferenceListToString into a QgsSymbolL...