38using namespace Qt::StringLiterals;
42QString QgsExtractLabelsAlgorithm::name()
const
44 return u
"extractlabels"_s;
47QString QgsExtractLabelsAlgorithm::displayName()
const
49 return QObject::tr(
"Extract labels" );
52QStringList QgsExtractLabelsAlgorithm::tags()
const
54 return QObject::tr(
"map themes,font,position" ).split(
',' );
62QString QgsExtractLabelsAlgorithm::group()
const
64 return QObject::tr(
"Cartography" );
67QString QgsExtractLabelsAlgorithm::groupId()
const
69 return u
"cartography"_s;
72void QgsExtractLabelsAlgorithm::initAlgorithm(
const QVariantMap & )
76 QObject::tr(
"Map extent" )
81 QObject::tr(
"Map scale" )
84 auto mapThemeParameter = std::make_unique<QgsProcessingParameterMapTheme>(
86 QObject::tr(
"Map theme" ),
89 mapThemeParameter->setHelp( QObject::tr(
"This parameter is optional. When left unset, the algorithm will fallback to extracting labels from all currently visible layers in the project." ) );
90 addParameter( mapThemeParameter.release() );
93 u
"INCLUDE_UNPLACED"_s,
94 QObject::tr(
"Include unplaced labels" ),
98 auto dpiParameter = std::make_unique<QgsProcessingParameterNumber>(
100 QObject::tr(
"Map resolution (in DPI)" ),
102 QVariant( 96.0 ),
true
105 addParameter( dpiParameter.release() );
109 QObject::tr(
"Extracted labels" ),
114QString QgsExtractLabelsAlgorithm::shortDescription()
const
116 return QObject::tr(
"Converts map labels to a point layer with relevant details saved as attributes." );
124QString QgsExtractLabelsAlgorithm::shortHelpString()
const
126 return QObject::tr(
"This algorithm extracts label information from a rendered map at a given extent and scale.\n\n"
127 "If a map theme is provided, the rendered map will match the visibility and symbology of that theme. If left blank, all visible layers from the project will be used.\n\n"
128 "Extracted label information include: position (served as point geometries), the associated layer name and feature ID, label text, rotation (in degree, clockwise), multiline alignment, and font details." );
131QgsExtractLabelsAlgorithm *QgsExtractLabelsAlgorithm::createInstance()
const
133 return new QgsExtractLabelsAlgorithm();
139 ExtractLabelSink(
const QMap<QString, QString> &mapLayerNames, QgsProcessingFeedback *feedback )
140 : mMapLayerNames( mapLayerNames )
141 , mFeedback( feedback )
145 void drawLabel(
const QString &layerId, QgsRenderContext &context, pal::LabelPosition *label,
const QgsPalLayerSettings &settings )
override
147 processLabel( layerId, context, label, settings,
false );
150 void drawUnplacedLabel(
const QString &layerId, QgsRenderContext &context, pal::LabelPosition *label,
const QgsPalLayerSettings &settings )
override
152 processLabel( layerId, context, label, settings,
true );
155 void processLabel(
const QString &layerId, QgsRenderContext &context, pal::LabelPosition *label,
const QgsPalLayerSettings &settings,
bool unplacedLabel )
157 if ( mFeedback->isCanceled() )
168 if ( !mCurvedWarningPushed.contains( layerId ) )
170 mCurvedWarningPushed << layerId;
171 mFeedback->pushWarning( QObject::tr(
"Curved placement not supported, skipping labels from layer %1" ).arg( mMapLayerNames.value( layerId ) ) );
186 QgsTextLabelFeature *labelFeature =
dynamic_cast<QgsTextLabelFeature *
>( label->
getFeaturePart()->feature() );
190 QgsPalLayerSettings labelSettings( settings );
191 const QMap<QgsPalLayerSettings::Property, QVariant> &dataDefinedValues = labelFeature->
dataDefinedValues();
201 const QString labelText =
QgsPalLabeling::splitToLines( labelFeature->
text( -1 ), labelSettings.wrapChar, labelSettings.autoWrapLength, labelSettings.useMaxLineLengthForAutoWrap ).join(
'\n' );
203 QString labelAlignment;
208 switch ( labelSettings.multilineAlign )
211 labelAlignment = u
"right"_s;
215 labelAlignment = u
"center"_s;
219 labelAlignment = u
"left"_s;
223 labelAlignment = u
"justify"_s;
232 labelAlignment = u
"right"_s;
238 labelAlignment = u
"center"_s;
244 labelAlignment = u
"left"_s;
251 ? -( label->
getAlpha() * 180 / M_PI ) + 360
255 const QString fontFamily = font.family();
256 const QString fontStyle = font.styleName();
257 const double fontSize =
static_cast<double>( font.pixelSize() ) * 72 / context.
painter()->device()->logicalDpiX();
258 const bool fontItalic = font.italic();
259 const bool fontBold = font.bold();
260 const bool fontUnderline = font.underline();
261 const double fontLetterSpacing = font.letterSpacing();
262 const double fontWordSpacing = font.wordSpacing();
264 QgsTextFormat format = labelSettings.format();
282 const QString formatColor = format.
color().name();
283 const double formatOpacity = format.
opacity() * 100;
284 const double formatLineHeight = format.
lineHeight();
286 QgsTextBufferSettings buffer = format.
buffer();
291 const bool bufferDraw = buffer.
enabled();
292 double bufferSize = 0.0;
294 double bufferOpacity = 0.0;
313 bufferSize = bufferSize * 72 / context.
painter()->device()->logicalDpiX();
314 bufferColor = buffer.
color().name();
315 bufferOpacity = buffer.
opacity() * 100;
318 QgsAttributes attributes;
319 attributes << mMapLayerNames.value( layerId ) << fid
320 << labelText << label->
getWidth() << label->
getHeight() << labelRotation << unplacedLabel
321 << fontFamily << fontSize << fontItalic << fontBold << fontUnderline << fontStyle << fontLetterSpacing << fontWordSpacing
322 << labelAlignment << formatLineHeight << formatColor << formatOpacity
323 << bufferDraw << bufferSize << bufferColor << bufferOpacity;
325 double x = label->
getX();
326 double y = label->
getY();
327 QgsGeometry geometry(
new QgsPoint( x, y ) );
335 QList<QgsFeature> features;
338 QMap<QString, QString> mMapLayerNames;
339 QList<QString> mCurvedWarningPushed;
341 QgsProcessingFeedback *mFeedback =
nullptr;
346 const QgsRectangle extent = parameterAsExtent( parameters, u
"EXTENT"_s, context );
347 const double scale = parameterAsDouble( parameters, u
"SCALE"_s, context );
350 throw QgsProcessingException( QObject::tr(
"Invalid scale value, a number greater than 0 is required" ) );
352 double dpi = parameterAsDouble( parameters, u
"DPI"_s, context );
364 fields.
append(
QgsField( u
"Layer"_s, QMetaType::Type::QString, QString(), 0, 0 ) );
365 fields.
append(
QgsField( u
"FeatureID"_s, QMetaType::Type::LongLong, QString(), 20 ) );
366 fields.
append(
QgsField( u
"LabelText"_s, QMetaType::Type::QString, QString(), 0, 0 ) );
367 fields.
append(
QgsField( u
"LabelWidth"_s, QMetaType::Type::Double, QString(), 20, 8 ) );
368 fields.
append(
QgsField( u
"LabelHeight"_s, QMetaType::Type::Double, QString(), 20, 8 ) );
369 fields.
append(
QgsField( u
"LabelRotation"_s, QMetaType::Type::Double, QString(), 20, 2 ) );
370 fields.
append(
QgsField( u
"LabelUnplaced"_s, QMetaType::Type::Bool, QString(), 1, 0 ) );
371 fields.
append(
QgsField( u
"Family"_s, QMetaType::Type::QString, QString(), 0, 0 ) );
372 fields.
append(
QgsField( u
"Size"_s, QMetaType::Type::Double, QString(), 20, 4 ) );
373 fields.
append(
QgsField( u
"Italic"_s, QMetaType::Type::Bool, QString(), 1, 0 ) );
374 fields.
append(
QgsField( u
"Bold"_s, QMetaType::Type::Bool, QString(), 1, 0 ) );
375 fields.
append(
QgsField( u
"Underline"_s, QMetaType::Type::Bool, QString(), 1, 0 ) );
376 fields.
append(
QgsField( u
"FontStyle"_s, QMetaType::Type::QString, QString(), 0, 0 ) );
377 fields.
append(
QgsField( u
"FontLetterSpacing"_s, QMetaType::Type::Double, QString(), 20, 4 ) );
378 fields.
append(
QgsField( u
"FontWordSpacing"_s, QMetaType::Type::Double, QString(), 20, 4 ) );
379 fields.
append(
QgsField( u
"MultiLineAlignment"_s, QMetaType::Type::QString, QString(), 0, 0 ) );
380 fields.
append(
QgsField( u
"MultiLineHeight"_s, QMetaType::Type::Double, QString(), 20, 2 ) );
381 fields.
append(
QgsField( u
"Color"_s, QMetaType::Type::QString, QString(), 7, 0 ) );
382 fields.
append(
QgsField( u
"FontOpacity"_s, QMetaType::Type::Double, QString(), 20, 1 ) );
383 fields.
append(
QgsField( u
"BufferDraw"_s, QMetaType::Type::Bool, QString(), 1, 0 ) );
384 fields.
append(
QgsField( u
"BufferSize"_s, QMetaType::Type::Double, QString(), 20, 4 ) );
385 fields.
append(
QgsField( u
"BufferColor"_s, QMetaType::Type::QString, QString(), 7, 0 ) );
386 fields.
append(
QgsField( u
"BufferOpacity"_s, QMetaType::Type::Double, QString(), 20, 1 ) );
415 nullPaintDevice.
setOutputDpi(
static_cast<int>( std::round( dpi ) ) );
416 QPainter painter( &nullPaintDevice );
419 ExtractLabelSink labelSink( mMapLayerNames, feedback );
420 renderJob.setLabelSink( &labelSink );
422 feedback->
pushInfo( QObject::tr(
"Extracting labels" ) );
425 multiStepFeedback.setCurrentStep( 0 );
430 int labelsCollectedFromLayers = 0;
432 multiStepFeedback.pushInfo( QObject::tr(
"Collecting labelled features from %1" ).arg( mMapLayerNames.value( layerId ) ) );
433 multiStepFeedback.setProgress( 100.0 *
static_cast<double>( labelsCollectedFromLayers ) / mMapLayers.size() );
434 labelsCollectedFromLayers++;
438 multiStepFeedback.setCurrentStep( 1 );
439 multiStepFeedback.pushInfo( QObject::tr(
"Registering labels" ) );
443 multiStepFeedback.setCurrentStep( 2 );
444 if ( !provider->layerId().isEmpty() )
446 multiStepFeedback.pushInfo( QObject::tr(
"Adding labels from %1" ).arg( mMapLayerNames.value( provider->layerId() ) ) );
450 multiStepFeedback.setCurrentStep( 3 );
451 if ( !provider->layerId().isEmpty() )
453 multiStepFeedback.pushInfo( QObject::tr(
"Generating label placement candidates for %1" ).arg( mMapLayerNames.value( provider->layerId() ) ) );
457 multiStepFeedback.setCurrentStep( 4 );
458 multiStepFeedback.setProgressText( QObject::tr(
"Calculating obstacle costs" ) );
461 multiStepFeedback.setCurrentStep( 5 );
462 multiStepFeedback.setProgressText( QObject::tr(
"Calculating label conflicts" ) );
465 multiStepFeedback.setCurrentStep( 6 );
466 multiStepFeedback.setProgressText( QObject::tr(
"Finalizing candidates" ) );
469 multiStepFeedback.setCurrentStep( 7 );
470 multiStepFeedback.setProgressText( QObject::tr(
"Reducing problem" ) );
473 multiStepFeedback.setCurrentStep( 8 );
474 multiStepFeedback.setProgressText( QObject::tr(
"Determining optimal label placements" ) );
477 multiStepFeedback.setProgressText( QObject::tr(
"Labeling complete" ) );
481 multiStepFeedback.setProgress( progress );
488 qDeleteAll( mMapLayers );
491 multiStepFeedback.setCurrentStep( 9 );
492 feedback->
pushInfo( QObject::tr(
"Writing %n label(s) to output layer",
"", labelSink.features.count() ) );
493 const double step = !labelSink.features.empty() ? 100.0 / labelSink.features.count() : 1;
494 long long index = -1;
495 for (
QgsFeature &feature : labelSink.features )
498 multiStepFeedback.setProgress( step * index );
511 if ( vl->renderer() )
513 vl->renderer()->setReferenceScale( scale );
528 textFormat.
setColor( QColor( 0, 0, 0 ) );
556 vl->setLabeling( labeling );
557 vl->setLabelsEnabled(
true );
559 QString errorMessage;
560 vl->saveStyleToDatabaseV2( QString(), QString(),
true, QString(), errorMessage );
565 outputs.insert( u
"OUTPUT"_s, dest );
573 const QString mapTheme = parameterAsString( parameters, u
"MAP_THEME"_s, context );
581 mMapLayers.push_back( l->clone() );
586 if ( mMapLayers.isEmpty() )
588 QList<QgsMapLayer *> layers;
590 const QList<QgsLayerTreeLayer *> layerTreeLayers = root->
findLayers();
591 layers.reserve( layerTreeLayers.size() );
595 if ( nodeLayer->isVisible() && root->
layerOrder().contains( layer ) )
599 for (
const QgsMapLayer *l : std::as_const( layers ) )
602 mMapLayers.push_back( l->clone() );
606 for (
const QgsMapLayer *l : std::as_const( mMapLayers ) )
608 mMapLayerNames.insert( l->id(), l->name() );
611 mCrs = parameterAsExtentCrs( parameters, u
"EXTENT"_s, context );
612 if ( !mCrs.isValid() )
615 bool includeUnplaced = parameterAsBoolean( parameters, u
"INCLUDE_UNPLACED"_s, context );
@ VectorPoint
Vector point layers.
@ OverPoint
Arranges candidates over a point (or centroid of a polygon), or at a preset offset from the point....
@ Curved
Arranges candidates following the curvature of a line feature. Applies to line layers only.
@ AroundPoint
Arranges candidates in a circle around a point (or centroid of a polygon). Applies to point or polygo...
@ Line
Arranges candidates parallel to a generalised line representing the feature or parallel to a polygon'...
@ Free
Arranges candidates scattered throughout a polygon feature. Candidates are rotated to respect the pol...
@ OrderedPositionsAroundPoint
Candidates are placed in predefined positions around a point. Preference is given to positions with g...
@ Horizontal
Arranges horizontal candidates scattered throughout a polygon feature. Applies to polygon layers only...
@ PerimeterCurved
Arranges candidates following the curvature of a polygon's boundary. Applies to polygon layers only.
@ OutsidePolygons
Candidates are placed outside of polygon boundaries. Applies to polygon layers only.
@ CollectUnplacedLabels
Whether unplaced labels should be collected in the labeling results (regardless of whether they are b...
@ DrawUnplacedLabels
Whether to render unplaced labels as an indicator/warning for users.
@ RegeneratesPrimaryKey
Algorithm always drops any existing primary keys or FID values and regenerates them in outputs.
QFlags< ProcessingAlgorithmFlag > ProcessingAlgorithmFlags
Flags indicating how and when an algorithm operates and should be exposed to users.
LabelMultiLineAlignment
Text alignment for multi-line labels.
@ FollowPlacement
Alignment follows placement of label, e.g., labels to the left of a feature will be drawn with right ...
@ Percentage
Percentage of another measurement (e.g., canvas size, feature size).
@ Points
Points (e.g., for font sizes).
QFlags< ProcessingAlgorithmDocumentationFlag > ProcessingAlgorithmDocumentationFlags
Flags describing algorithm behavior for documentation purposes.
@ RequiresProject
The algorithm requires that a valid QgsProject is available from the processing context in order to e...
@ Advanced
Parameter is an advanced parameter which should be hidden from users by default.
@ AllowOverlapIfRequired
Avoids overlapping labels when possible, but permit overlaps if labels for features cannot otherwise ...
@ Double
Double/float values.
@ UseRenderingOptimization
Enable vector simplification and other rendering optimizations.
@ DrawLabeling
Enable drawing of labels on top of the map.
@ SkipSymbolRendering
Disable symbol rendering while still drawing labels if enabled.
An abstract interface class for label providers.
Abstract base class - its implementations define different approaches to the labeling of a vector lay...
static QgsExpressionContextScope * projectScope(const QgsProject *project)
Creates a new scope which contains variables and functions relating to a QGIS project.
static QgsExpressionContextScope * mapSettingsScope(const QgsMapSettings &mapSettings)
Creates a new scope which contains variables and functions relating to a QgsMapSettings object.
static QgsExpressionContextScope * globalScope()
Creates a new scope which contains variables and functions relating to the global QGIS context.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
@ FastInsert
Use faster inserts, at the cost of updating the passed features to reflect changes made at the provid...
@ RegeneratePrimaryKey
This flag indicates, that a primary key field cannot be guaranteed to be unique and the sink should i...
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
void setAttributes(const QgsAttributes &attrs)
Sets the feature's attributes.
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
bool isCanceled() const
Tells whether the operation has been canceled already.
void progressChanged(double progress)
Emitted when the feedback object reports a progress change.
void canceled()
Internal routines can connect to this signal if they use event loop.
Encapsulate a field in an attribute table or data source.
Container of fields for a vector layer.
bool append(const QgsField &field, Qgis::FieldOrigin origin=Qgis::FieldOrigin::Provider, int originIndex=-1)
Appends a field.
void setIsObstacle(bool isObstacle)
Sets whether features are obstacles to labels of other layers.
void setOverlapHandling(Qgis::LabelOverlapHandling handling)
Sets the technique used to handle overlapping labels.
void setAllowDegradedPlacement(bool allow)
Sets whether labels can be placed in inferior fallback positions if they cannot otherwise be placed.
void setQuadrant(Qgis::LabelQuadrantPosition quadrant)
Sets the quadrant in which to offset labels from the point.
Abstract base class that can be used to intercept rendered labels from a labeling / rendering job.
virtual void drawUnplacedLabel(const QString &layerId, QgsRenderContext &context, pal::LabelPosition *label, const QgsPalLayerSettings &settings)
The drawLabel method is called for each unplaced label.
virtual void drawLabel(const QString &layerId, QgsRenderContext &context, pal::LabelPosition *label, const QgsPalLayerSettings &settings)=0
The drawLabel method is called for each label that is being drawn.
void obstacleCostingAboutToBegin()
Emitted when the obstacle costing is about to begin.
void solvingPlacementAboutToBegin()
Emitted when the problem solving step is about to begin.
void calculatingConflictsAboutToBegin()
Emitted when the conflict handling step is about to begin.
void reductionAboutToBegin()
Emitted when the candidate reduction step is about to begin.
void labelRegistrationAboutToBegin()
Emitted when the label registration is about to begin.
void solvingPlacementFinished()
Emitted when the problem solving step is finished.
void finalizingCandidatesAboutToBegin()
Emitted when the label candidates are about to be finalized.
void candidateCreationAboutToBegin(QgsAbstractLabelProvider *provider)
Emitted when the label candidate creation is about to begin for a provider.
void providerRegistrationAboutToBegin(QgsAbstractLabelProvider *provider)
Emitted when the label registration is about to begin for a provider.
void setFlag(Qgis::LabelingFlag f, bool enabled=true)
Sets whether a particual flag is enabled.
QList< QgsLayerTreeLayer * > findLayers() const
Find all layer nodes.
Layer tree node points to a map layer.
Namespace with helper functions for layer tree operations.
QList< QgsMapLayer * > layerOrder() const
The order in which layers will be rendered on the canvas.
Base class for all map layer types.
Job implementation that renders everything sequentially using a custom painter.
void cancel() override
Stop the rendering job - does not return until the job has terminated.
void renderingLayersFinished()
Emitted when the layers are rendered.
void finished()
emitted when asynchronous rendering is finished (or canceled).
void layerRenderingStarted(const QString &layerId)
Emitted just before rendering starts for a particular layer.
Contains configuration for rendering maps.
void setLayers(const QList< QgsMapLayer * > &layers)
Sets the list of layers to render in the map.
void setScaleMethod(Qgis::ScaleCalculationMethod method)
Sets the method to use for scale calculations for the map.
void setOutputDpi(double dpi)
Sets the dpi (dots per inch) used for conversion between real world units (e.g.
void setLayerStyleOverrides(const QMap< QString, QString > &overrides)
Sets the map of map layer style overrides (key: layer ID, value: style name) where a different style ...
void setExtent(const QgsRectangle &rect, bool magnified=true)
Sets the coordinates of the rectangle which should be rendered.
void setExpressionContext(const QgsExpressionContext &context)
Sets the expression context.
void setLabelingEngineSettings(const QgsLabelingEngineSettings &settings)
Sets the global configuration of the labeling engine.
void setOutputSize(QSize size)
Sets the size of the resulting map image, in pixels.
void setFlag(Qgis::MapSettingsFlag flag, bool on=true)
Enable or disable a particular flag (other flags are not affected).
void setDestinationCrs(const QgsCoordinateReferenceSystem &crs)
Sets the destination crs (coordinate reference system) for the map render.
bool hasMapTheme(const QString &name) const
Returns whether a map theme with a matching name exists.
QList< QgsMapLayer * > mapThemeVisibleLayers(const QString &name) const
Returns the list of layers that are visible for the specified map theme.
QMap< QString, QString > mapThemeStyleOverrides(const QString &name)
Gets layer style overrides (for QgsMapSettings) of the visible layers for given map theme.
Null painter device that can be used for map renderer jobs which use custom painters.
void setOutputSize(const QSize &size)
Sets the size of the device in pixels.
void setOutputDpi(const int dpi)
Sets the dpi of the device.
Null symbol renderer, which draws no symbols for features by default, but allows for labeling and dia...
static QStringList splitToLines(const QString &text, const QString &wrapCharacter, int autoWrapLength=0, bool useMaxLineLengthWhenAutoWrapping=true)
Splits a text string to a list of separate lines, using a specified wrap character (wrapCharacter).
Contains settings for how a map layer will be labeled.
const QgsLabelObstacleSettings & obstacleSettings() const
Returns the label obstacle settings.
const QgsLabelPlacementSettings & placementSettings() const
Returns the label placement settings.
void setFormat(const QgsTextFormat &format)
Sets the label text formatting settings, e.g., font settings, buffer settings, etc.
Qgis::LabelPlacement placement
Label placement mode.
void setDataDefinedProperties(const QgsPropertyCollection &collection)
Sets the label's property collection, used for data defined overrides.
@ LabelRotation
Label rotation.
@ Italic
Use italic style.
@ BufferOpacity
Buffer opacity.
@ Underline
Use underline.
@ FontOpacity
Text opacity.
@ FontWordSpacing
Word spacing.
@ FontLetterSpacing
Letter spacing.
QString fieldName
Name of field (or an expression) to use for label text.
const QgsLabelPointSettings & pointSettings() const
Returns the label point settings, which contain settings related to how the label engine places and f...
virtual Qgis::ProcessingAlgorithmFlags flags() const
Returns the flags indicating how and when the algorithm operates and should be exposed to users.
Contains information about the context in which a processing algorithm is executed.
QgsProject * project() const
Returns the project in which the algorithm is being executed.
Custom exception class for processing related exceptions.
Base class for providing feedback from a processing algorithm.
virtual void pushInfo(const QString &info)
Pushes a general informational message from the algorithm.
Processing feedback object for multi-step operations.
A boolean parameter for processing algorithms.
A rectangular map extent parameter for processing algorithms.
A feature sink output for processing algorithms.
A double numeric parameter for map scale values.
static QgsMapLayer * mapLayerFromString(const QString &string, QgsProcessingContext &context, bool allowLoadingNewLayers=true, QgsProcessingUtils::LayerHint typeHint=QgsProcessingUtils::LayerHint::UnknownType, QgsProcessing::LayerOptionsFlags flags=QgsProcessing::LayerOptionsFlags())
Interprets a string as a map layer within the supplied context.
QgsMapThemeCollection * mapThemeCollection
QgsLayerTree * layerTreeRoot() const
Returns pointer to the root (invisible) node of the project's layer tree.
QgsCoordinateReferenceSystem crs
const QgsLabelingEngineSettings & labelingEngineSettings() const
Returns project's global labeling engine settings.
Qgis::ScaleCalculationMethod scaleMethod
A grouped map of multiple QgsProperty objects, each referenced by an integer key value.
void setProperty(int key, const QgsProperty &property)
Adds a property to the collection and takes ownership of it.
static QgsProperty fromExpression(const QString &expression, bool isActive=true)
Returns a new ExpressionBasedProperty created from the specified expression.
static QgsProperty fromField(const QString &fieldName, bool isActive=true)
Returns a new FieldBasedProperty created from the specified field name.
A rectangle specified with double values.
void setRenderingStopped(bool stopped)
Sets whether the rendering operation has been stopped and any ongoing rendering should be canceled im...
double convertToPainterUnits(double size, Qgis::RenderUnit unit, const QgsMapUnitScale &scale=QgsMapUnitScale(), Qgis::RenderSubcomponentProperty property=Qgis::RenderSubcomponentProperty::Generic) const
Converts a size from the specified units to painter units (pixels).
QPainter * painter()
Returns the destination QPainter for the render operation.
Calculates scale for a given combination of canvas size, map extent, and monitor dpi.
void setDpi(double dpi)
Sets the dpi (dots per inch) for the output resolution, to be used in scale calculations.
void setMapUnits(Qgis::DistanceUnit mapUnits)
Set the map units.
QSizeF calculateImageSize(const QgsRectangle &mapExtent, double scale) const
Calculate the image size in pixel (physical) units.
Container for settings relating to a text buffer.
Qgis::RenderUnit sizeUnit() const
Returns the units for the buffer size.
double size() const
Returns the size of the buffer.
void setColor(const QColor &color)
Sets the color for the buffer.
void setOpacity(double opacity)
Sets the buffer opacity.
QgsMapUnitScale sizeMapUnitScale() const
Returns the map unit scale object for the buffer size.
bool enabled() const
Returns whether the buffer is enabled.
double opacity() const
Returns the buffer opacity.
void setSizeUnit(Qgis::RenderUnit unit)
Sets the units used for the buffer size.
void setEnabled(bool enabled)
Sets whether the text buffer will be drawn.
QColor color() const
Returns the color of the buffer.
void setSize(double size)
Sets the size of the buffer.
Container for all settings relating to text rendering.
void setColor(const QColor &color)
Sets the color that text will be rendered in.
void setSize(double size)
Sets the size for rendered text.
QgsMapUnitScale sizeMapUnitScale() const
Returns the map unit scale object for the size.
double lineHeight() const
Returns the line height for text.
void setSizeUnit(Qgis::RenderUnit unit)
Sets the units for the size of rendered text.
void setOpacity(double opacity)
Sets the text's opacity.
void setBuffer(const QgsTextBufferSettings &bufferSettings)
Sets the text's buffer settings.
Qgis::RenderUnit sizeUnit() const
Returns the units for the size of rendered text.
double opacity() const
Returns the text's opacity.
double size() const
Returns the size for rendered text.
QColor color() const
Returns the color that text will be rendered in.
QgsTextBufferSettings & buffer()
Returns a reference to the text buffer settings.
void setLineHeight(double height)
Sets the line height for text.
QFont definedFont() const
Font to be used for rendering.
const QMap< QgsPalLayerSettings::Property, QVariant > & dataDefinedValues() const
Gets data-defined values.
QString text(int partId) const
Returns the text component corresponding to a specified label part.
Basic implementation of the labeling interface.
Represents a vector layer which manages a vector based dataset.
QgsFeatureId featureId() const
Returns the unique ID of the feature.
double getAlpha() const
Returns the angle to rotate text (in radians).
Qgis::LabelQuadrantPosition quadrant() const
Returns the quadrant associated with this label position.
FeaturePart * getFeaturePart() const
Returns the feature corresponding to this labelposition.
double getX(int i=0) const
Returns the down-left x coordinate.
double getY(int i=0) const
Returns the down-left y coordinate.
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference).
qint64 QgsFeatureId
64 bit feature ids negative numbers are used for uncommitted/newly added features