QGIS API Documentation 3.99.0-Master (d270888f95f)
Loading...
Searching...
No Matches
qgsvectorlayerlabelprovider.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsvectorlayerlabelprovider.cpp
3 --------------------------------------
4 Date : September 2015
5 Copyright : (C) 2015 by Martin Dobias
6 Email : wonder dot sk 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
17
18#include "callouts/qgscallout.h"
19#include "feature.h"
20#include "labelposition.h"
21#include "pal/layer.h"
23#include "qgsgeometry.h"
24#include "qgslabelingresults.h"
25#include "qgslabelsearchtree.h"
26#include "qgslinestring.h"
27#include "qgslogger.h"
28#include "qgsmarkersymbol.h"
29#include "qgsmaskidprovider.h"
30#include "qgsmultipolygon.h"
31#include "qgspallabeling.h"
32#include "qgspolygon.h"
33#include "qgsrenderer.h"
34#include "qgssymbol.h"
36#include "qgstextfragment.h"
37#include "qgstextlabelfeature.h"
38#include "qgstextrenderer.h"
39#include "qgsvectorlayer.h"
41
42#include <QPicture>
43#include <QString>
44#include <QTextDocument>
45#include <QTextFragment>
46
47using namespace Qt::StringLiterals;
48
49using namespace pal;
50
51QgsVectorLayerLabelProvider::QgsVectorLayerLabelProvider( QgsVectorLayer *layer, const QString &providerId, bool withFeatureLoop, const QgsPalLayerSettings *settings, const QString &layerName )
53 , mSettings( settings ? * settings : QgsPalLayerSettings() ) // TODO: all providers should have valid settings?
54 , mLayerGeometryType( layer->geometryType() )
55 , mRenderer( layer->renderer() )
56 , mFields( layer->fields() )
57 , mCrs( layer->crs() )
58{
59 mName = layerName.isEmpty() ? layer->id() : layerName;
60
61 if ( withFeatureLoop )
62 {
63 mSource = std::make_unique<QgsVectorLayerFeatureSource>( layer );
64 }
65
66 init();
67}
68
71 , mSettings( settings ? * settings : QgsPalLayerSettings() ) // TODO: all providers should have valid settings?
72 , mLayerGeometryType( geometryType )
73 , mFields( fields )
74 , mCrs( crs )
75{
76 mName = layerName.isEmpty() ? layer->id() : layerName;
77
78 init();
79}
80
82{
83 mPlacement = mSettings.placement;
84
85 mFlags = Flags();
86 if ( mSettings.drawLabels )
88 if ( mSettings.lineSettings().mergeLines() && !mSettings.lineSettings().addDirectionSymbol() )
90 if ( mSettings.centroidInside )
92
93 mPriority = 1 - mSettings.priority / 10.0; // convert 0..10 --> 1..0
94
96 {
97 //override obstacle type to treat any intersection of a label with the point symbol as a high cost conflict
99 }
100 else
101 {
102 mObstacleType = mSettings.obstacleSettings().type();
103 }
104
105 mUpsidedownLabels = mSettings.upsidedownLabels;
106}
107
108
113
114
115bool QgsVectorLayerLabelProvider::prepare( QgsRenderContext &context, QSet<QString> &attributeNames )
116{
117 const QgsMapSettings &mapSettings = mEngine->mapSettings();
118
119 return mSettings.prepare( context, attributeNames, mFields, mapSettings, mCrs );
120}
121
123{
125 mSettings.startRender( context );
126}
127
129{
131 mSettings.stopRender( context );
132}
133
135{
136 if ( !mSource )
137 {
138 // we have created the provider with "own feature loop" == false
139 // so it is assumed that prepare() has been already called followed by registerFeature() calls
140 return mLabels;
141 }
142
143 QSet<QString> attrNames;
144 if ( !prepare( ctx, attrNames ) )
145 return QList<QgsLabelFeature *>();
146
147 if ( mRenderer )
148 mRenderer->startRender( ctx, mFields );
149
150 QgsRectangle layerExtent = ctx.extent();
151 if ( mSettings.ct.isValid() && !mSettings.ct.isShortCircuited() )
152 {
153 QgsCoordinateTransform extentTransform = mSettings.ct;
154 extentTransform.setBallparkTransformsAreAppropriate( true );
155 layerExtent = extentTransform.transformBoundingBox( ctx.extent(), Qgis::TransformDirection::Reverse );
156 }
157
158 QgsFeatureRequest request;
159 request.setFilterRect( layerExtent );
160 request.setSubsetOfAttributes( attrNames, mFields );
161 QgsFeatureIterator fit = mSource->getFeatures( request );
162
164 ctx.expressionContext().appendScope( symbolScope );
165 QgsFeature fet;
166 while ( fit.nextFeature( fet ) )
167 {
168 QgsGeometry obstacleGeometry;
169 const QgsSymbol *symbol = nullptr;
170 if ( mRenderer )
171 {
172 QgsSymbolList symbols = mRenderer->originalSymbolsForFeature( fet, ctx );
173 if ( !symbols.isEmpty() && fet.geometry().type() == Qgis::GeometryType::Point )
174 {
175 //point feature, use symbol bounds as obstacle
176 obstacleGeometry = QgsVectorLayerLabelProvider::getPointObstacleGeometry( fet, ctx, symbols );
177 }
178 if ( !symbols.isEmpty() )
179 {
180 symbol = symbols.at( 0 );
181 symbolScope = QgsExpressionContextUtils::updateSymbolScope( symbol, symbolScope );
182 }
183 }
184 ctx.expressionContext().setFeature( fet );
185 registerFeature( fet, ctx, obstacleGeometry, symbol );
186 }
187
188 if ( ctx.expressionContext().lastScope() == symbolScope )
189 delete ctx.expressionContext().popScope();
190
191 if ( mRenderer )
192 mRenderer->stopRender( ctx );
193
194 return mLabels;
195}
196
197QList< QgsLabelFeature * > QgsVectorLayerLabelProvider::registerFeature( const QgsFeature &feature, QgsRenderContext &context, const QgsGeometry &obstacleGeometry, const QgsSymbol *symbol )
198{
199 std::vector< std::unique_ptr< QgsLabelFeature > > labels = mSettings.registerFeatureWithDetails( feature, context, obstacleGeometry, symbol );
200 QList< QgsLabelFeature * > res;
201 for ( auto &it : labels )
202 {
203 if ( it )
204 {
205 res << it.get();
206 mLabels << it.release();
207 }
208 }
209 return res;
210}
211
213{
214 if ( !fet.hasGeometry() || fet.geometry().type() != Qgis::GeometryType::Point )
215 return QgsGeometry();
216
217 bool isMultiPoint = fet.geometry().constGet()->nCoordinates() > 1;
218 std::unique_ptr< QgsAbstractGeometry > obstacleGeom;
219 if ( isMultiPoint )
220 obstacleGeom = std::make_unique< QgsMultiPolygon >();
221
222 // for each point
223 for ( int i = 0; i < fet.geometry().constGet()->nCoordinates(); ++i )
224 {
225 QRectF bounds;
226 QgsPoint p = fet.geometry().constGet()->vertexAt( QgsVertexId( i, 0, 0 ) );
227 double x = p.x();
228 double y = p.y();
229 double z = 0; // dummy variable for coordinate transforms
230
231 //transform point to pixels
232 if ( context.coordinateTransform().isValid() )
233 {
234 try
235 {
236 context.coordinateTransform().transformInPlace( x, y, z );
237 }
238 catch ( QgsCsException & )
239 {
240 return QgsGeometry();
241 }
242 }
243 context.mapToPixel().transformInPlace( x, y );
244
245 QPointF pt( x, y );
246 const auto constSymbols = symbols;
247 for ( QgsSymbol *symbol : constSymbols )
248 {
249 if ( symbol->type() == Qgis::SymbolType::Marker )
250 {
251 if ( bounds.isValid() )
252 bounds = bounds.united( static_cast< QgsMarkerSymbol * >( symbol )->bounds( pt, context, fet ) );
253 else
254 bounds = static_cast< QgsMarkerSymbol * >( symbol )->bounds( pt, context, fet );
255 }
256 }
257
258 //convert bounds to a geometry
259 QVector< double > bX;
260 bX << bounds.left() << bounds.right() << bounds.right() << bounds.left();
261 QVector< double > bY;
262 bY << bounds.top() << bounds.top() << bounds.bottom() << bounds.bottom();
263 auto boundLineString = std::make_unique< QgsLineString >( bX, bY );
264
265 //then transform back to map units
266 //TODO - remove when labeling is refactored to use screen units
267 for ( int i = 0; i < boundLineString->numPoints(); ++i )
268 {
269 QgsPointXY point = context.mapToPixel().toMapCoordinates( static_cast<int>( boundLineString->xAt( i ) ),
270 static_cast<int>( boundLineString->yAt( i ) ) );
271 boundLineString->setXAt( i, point.x() );
272 boundLineString->setYAt( i, point.y() );
273 }
274 if ( context.coordinateTransform().isValid() )
275 {
276 try
277 {
278 boundLineString->transform( context.coordinateTransform(), Qgis::TransformDirection::Reverse );
279 }
280 catch ( QgsCsException & )
281 {
282 return QgsGeometry();
283 }
284 }
285 boundLineString->close();
286
287 if ( context.coordinateTransform().isValid() )
288 {
289 // coordinate transforms may have resulted in nan coordinates - if so, strip these out
290 boundLineString->filterVertices( []( const QgsPoint & point )->bool
291 {
292 return std::isfinite( point.x() ) && std::isfinite( point.y() );
293 } );
294 if ( !boundLineString->isRing() )
295 return QgsGeometry();
296 }
297
298 auto obstaclePolygon = std::make_unique< QgsPolygon >();
299 obstaclePolygon->setExteriorRing( boundLineString.release() );
300
301 if ( isMultiPoint )
302 {
303 static_cast<QgsMultiPolygon *>( obstacleGeom.get() )->addGeometry( obstaclePolygon.release() );
304 }
305 else
306 {
307 obstacleGeom = std::move( obstaclePolygon );
308 }
309 }
310
311 return QgsGeometry( std::move( obstacleGeom ) );
312}
313
315{
316 if ( !mSettings.drawLabels )
317 return;
318
319 // render callout
320 if ( mSettings.callout() && mSettings.callout()->drawOrder() == QgsCallout::OrderBelowAllLabels )
321 {
322 drawCallout( context, label );
323 }
324}
325
326void QgsVectorLayerLabelProvider::drawCallout( QgsRenderContext &context, pal::LabelPosition *label ) const
327{
328 bool enabled = mSettings.callout()->enabled();
330 {
331 context.expressionContext().setOriginalValueVariable( enabled );
333 }
334 if ( enabled )
335 {
336 QgsMapToPixel xform = context.mapToPixel();
337 xform.setMapRotation( 0, 0, 0 );
338 QPointF outPt = xform.transform( label->getX(), label->getY() ).toQPointF();
339 QgsPointXY outPt2 = xform.transform( label->getX() + label->getWidth(), label->getY() + label->getHeight() );
340 QRectF rect( outPt.x(), outPt.y(), outPt2.x() - outPt.x(), outPt2.y() - outPt.y() );
341
342 QgsGeometry g( QgsGeos::fromGeos( label->getFeaturePart()->feature()->geometry() ) );
343 g.transform( xform.transform() );
344 QgsCallout::QgsCalloutContext calloutContext;
346 calloutContext.originalFeatureCrs = label->getFeaturePart()->feature()->originalFeatureCrs();
347 mSettings.callout()->render( context, rect, label->getAlpha() * 180 / M_PI, g, calloutContext );
348
349 const QList< QgsCalloutPosition > renderedPositions = calloutContext.positions();
350
351 for ( QgsCalloutPosition position : renderedPositions )
352 {
353 position.layerID = mLayerId;
354 position.featureId = label->getFeaturePart()->featureId();
355 position.providerID = mProviderId;
356 mEngine->results()->mLabelSearchTree->insertCallout( position );
357 }
358 }
359}
360
362{
363 if ( !mSettings.drawLabels )
364 return;
365
366 QgsTextLabelFeature *lf = dynamic_cast<QgsTextLabelFeature *>( label->getFeaturePart()->feature() );
367 if ( !lf )
368 return;
369
370 // Copy to temp, editable layer settings
371 // these settings will be changed by any data defined values, then used for rendering label components
372 // settings may be adjusted during rendering of components
374
375 // apply any previously applied data defined settings for the label
376 const QMap< QgsPalLayerSettings::Property, QVariant > &ddValues = lf->dataDefinedValues();
377
378 //font
379 QFont dFont = lf->definedFont();
380 QgsDebugMsgLevel( u"PAL font tmpLyr: %1, Style: %2"_s.arg( tmpLyr.format().font().toString(), tmpLyr.format().font().styleName() ), 4 );
381 QgsDebugMsgLevel( u"PAL font definedFont: %1, Style: %2"_s.arg( dFont.toString(), dFont.styleName() ), 4 );
382
383 QgsTextFormat format = tmpLyr.format();
384 format.setFont( dFont );
385
386 // size has already been calculated and stored in the defined font - this calculated size
387 // is in pixels
388 format.setSize( dFont.pixelSize() );
390 tmpLyr.setFormat( format );
391
393 {
394 //calculate font alignment based on label quadrant
395 switch ( label->quadrant() )
396 {
401 break;
406 break;
411 break;
412 }
413 }
414
415 // update tmpLyr with any data defined text style values
416 QgsPalLabeling::dataDefinedTextStyle( tmpLyr, ddValues );
417
418 // update tmpLyr with any data defined text buffer values
419 QgsPalLabeling::dataDefinedTextBuffer( tmpLyr, ddValues );
420
421 // update tmpLyr with any data defined text mask values
422 QgsPalLabeling::dataDefinedTextMask( tmpLyr, ddValues );
423
424 // update tmpLyr with any data defined text formatting values
425 QgsPalLabeling::dataDefinedTextFormatting( tmpLyr, ddValues );
426
427 // update tmpLyr with any data defined shape background values
428 QgsPalLabeling::dataDefinedShapeBackground( tmpLyr, ddValues );
429
430 // update tmpLyr with any data defined drop shadow values
431 QgsPalLabeling::dataDefinedDropShadow( tmpLyr, ddValues );
432
433 // Render the components of a label in reverse order
434 // (backgrounds -> text)
435
436 // render callout
437 if ( mSettings.callout() && mSettings.callout()->drawOrder() == QgsCallout::OrderBelowIndividualLabels )
438 {
439 drawCallout( context, label );
440 }
441
443 {
444 QgsTextFormat format = tmpLyr.format();
445
446 if ( tmpLyr.format().background().enabled() && tmpLyr.format().background().type() != QgsTextBackgroundSettings::ShapeMarkerSymbol ) // background shadows not compatible with marker symbol backgrounds
447 {
449 }
450 else if ( tmpLyr.format().buffer().enabled() )
451 {
453 }
454 else
455 {
457 }
458
459 tmpLyr.setFormat( format );
460 }
461
462 if ( tmpLyr.format().background().enabled() )
463 {
464 drawLabelPrivate( label, context, tmpLyr, Qgis::TextComponent::Background );
465 }
466
467 if ( tmpLyr.format().buffer().enabled() )
468 {
469 drawLabelPrivate( label, context, tmpLyr, Qgis::TextComponent::Buffer );
470 }
471
472 drawLabelPrivate( label, context, tmpLyr, Qgis::TextComponent::Text );
473
474 // add to the results
475 QString labeltext = label->getFeaturePart()->feature()->labelText();
476 mEngine->results()->mLabelSearchTree->insertLabel( label, label->getFeaturePart()->featureId(), mLayerId, labeltext, dFont, false, lf->hasFixedPosition(), mProviderId );
477}
478
480{
481 QgsTextLabelFeature *lf = dynamic_cast<QgsTextLabelFeature *>( label->getFeaturePart()->feature() );
482 if ( !lf )
483 return;
484
485 QgsTextFormat format = mSettings.format();
486 if ( mSettings.drawLabels
487 && mSettings.unplacedVisibility() != Qgis::UnplacedLabelVisibility::NeverShow
488 && mEngine->engineSettings().flags() & Qgis::LabelingFlag::DrawUnplacedLabels )
489 {
491 format = tmpLyr.format();
492 format.setColor( mEngine->engineSettings().unplacedLabelColor() );
493 tmpLyr.setFormat( format );
494 drawLabelPrivate( label, context, tmpLyr, Qgis::TextComponent::Text );
495 }
496
497 // add to the results
498 QString labeltext = label->getFeaturePart()->feature()->labelText();
499 mEngine->results()->mLabelSearchTree->insertLabel( label, label->getFeaturePart()->featureId(), mLayerId, labeltext, format.font(), false, lf->hasFixedPosition(), mProviderId, true );
500}
501
503{
504 // NOTE: this is repeatedly called for multi-part labels
505 Qgis::TextComponents components;
506 switch ( drawType )
507 {
510 break;
511
514 break;
515
518 components = drawType;
519 break;
520 }
521
522 // features are pre-rotated but not scaled/translated,
523 // so we only disable rotation here. Ideally, they'd be
524 // also pre-scaled/translated, as suggested here:
525 // https://github.com/qgis/QGIS/issues/20071
526 QgsMapToPixel xform = context.mapToPixel();
527 xform.setMapRotation( 0, 0, 0 );
528
529 QPointF outPt = xform.transform( label->getX(), label->getY() ).toQPointF();
530
531 QgsTextRenderer::Component component;
532 component.dpiRatio = dpiRatio;
533 component.origin = outPt;
534 component.rotation = label->getAlpha();
535
536 if ( drawType == Qgis::TextComponent::Background )
537 {
538 // get rotated label's center point
539 QPointF centerPt( outPt );
540 QgsPointXY outPt2 = xform.transform( label->getX() + label->getWidth() / 2,
541 label->getY() + label->getHeight() / 2 );
542
543 double xc = outPt2.x() - outPt.x();
544 double yc = outPt2.y() - outPt.y();
545
546 double angle = -component.rotation;
547 double xd = xc * std::cos( angle ) - yc * std::sin( angle );
548 double yd = xc * std::sin( angle ) + yc * std::cos( angle );
549
550 centerPt.setX( centerPt.x() + xd );
551 centerPt.setY( centerPt.y() + yd );
552
553 component.center = centerPt;
554
555 {
556 // label size has already been calculated using any symbology reference scale factor -- we need
557 // to temporarily remove the reference scale here or we'll be applying the scaling twice
558 QgsScopedRenderContextReferenceScaleOverride referenceScaleOverride( context, -1.0 );
559
560 // convert label size to render units
561 double labelWidthPx = context.convertToPainterUnits( label->getWidth(), Qgis::RenderUnit::MapUnits, QgsMapUnitScale() );
562 double labelHeightPx = context.convertToPainterUnits( label->getHeight(), Qgis::RenderUnit::MapUnits, QgsMapUnitScale() );
563
564 component.size = QSizeF( labelWidthPx, labelHeightPx );
565 }
566
567 QgsTextRenderer::drawBackground( context, component, tmpLyr.format(), QgsTextDocumentMetrics(), Qgis::TextLayoutMode::Labeling );
568 }
569
570 else if ( drawType == Qgis::TextComponent::Buffer
571 || drawType == Qgis::TextComponent::Text )
572 {
573 // TODO: optimize access :)
574 QgsTextLabelFeature *lf = static_cast<QgsTextLabelFeature *>( label->getFeaturePart()->feature() );
575 QString txt = lf->text( label->getPartId() );
576
577 if ( auto *lMaskIdProvider = context.maskIdProvider() )
578 {
579 int maskId = lMaskIdProvider->maskId( label->getFeaturePart()->layer()->provider()->layerId(),
580 label->getFeaturePart()->layer()->provider()->providerId() );
581 context.setCurrentMaskId( maskId );
582 }
583
584 const QgsTextDocument &precalculatedDocument = lf->document();
585 const QgsTextDocumentMetrics &precalculatedMetrics = lf->documentMetrics();
586 const QgsTextDocument *document = &precalculatedDocument;
587 const QgsTextDocumentMetrics *documentMetrics = &precalculatedMetrics;
588
589 // add the direction symbol if needed
590 // note that IF we do this, we can no longer use the original text document and metrics
591 // but have to re-calculate these with the newly added text!
592 std::optional< QgsTextDocument > newDocument;
593 std::optional< QgsTextDocumentMetrics > newDocumentMetrics;
594 if ( !txt.isEmpty() && tmpLyr.placement == Qgis::LabelPlacement::Line &&
596 {
597 newDocument.emplace( *document );
598 bool prependSymb = false;
599 QString symb = tmpLyr.lineSettings().rightDirectionSymbol();
600
601 if ( label->isReversedFromLineDirection() )
602 {
603 prependSymb = true;
604 symb = tmpLyr.lineSettings().leftDirectionSymbol();
605 }
606
607 if ( tmpLyr.lineSettings().reverseDirectionSymbol() )
608 {
609 if ( symb == tmpLyr.lineSettings().rightDirectionSymbol() )
610 {
611 prependSymb = true;
612 symb = tmpLyr.lineSettings().leftDirectionSymbol();
613 }
614 else
615 {
616 prependSymb = false;
617 symb = tmpLyr.lineSettings().rightDirectionSymbol();
618 }
619 }
620
621 switch ( tmpLyr.lineSettings().directionSymbolPlacement() )
622 {
624 {
625 newDocument->insert( 0, QgsTextBlock( QgsTextFragment( symb ) ) );
626 break;
627 }
628
630 newDocument->append( QgsTextBlock( QgsTextFragment( symb ) ) );
631 break;
632
634 {
635 QgsTextBlock &block = newDocument.value()[ 0 ];
636 if ( prependSymb )
637 {
638 block.insert( 0, QgsTextFragment( symb ) );
639 }
640 else
641 {
642 block.append( QgsTextFragment( symb ) );
643 }
644 break;
645 }
646 }
647
648 QgsScopedRenderContextReferenceScaleOverride referenceScaleOverride( context, -1.0 );
649 newDocumentMetrics.emplace( QgsTextDocumentMetrics::calculateMetrics( newDocument.value(), tmpLyr.format(), context ) );
650 document = &newDocument.value();
651 documentMetrics = &newDocumentMetrics.value();
652 }
653
661
662 QgsTextRenderer::Component component;
663 component.origin = outPt;
664 component.rotation = label->getAlpha();
665
666 // If we are using non-curved, HTML formatted labels then we've already precalculated the text metrics.
667 // Otherwise we'll need to calculate them now.
668 switch ( tmpLyr.placement )
669 {
672 {
673 QgsTextDocument document;
674 const QgsTextCharacterFormat c = lf->characterFormat( label->getPartId() );
675 const QStringList multiLineList = QgsPalLabeling::splitToLines( txt, tmpLyr.wrapChar, tmpLyr.autoWrapLength, tmpLyr.useMaxLineLengthForAutoWrap );
676 for ( const QString &line : multiLineList )
677 {
678 document.append( QgsTextBlock::fromPlainText( line, c ) );
679 }
680
681 QgsScopedRenderContextReferenceScaleOverride referenceScaleOverride( context, -1.0 );
682 const QgsTextDocumentMetrics metrics = QgsTextDocumentMetrics::calculateMetrics( document, tmpLyr.format(), context );
683 QgsTextRenderer::drawTextInternal( components, context, tmpLyr.format(), component, document,
685 break;
686 }
687
695 {
696 const double verticalAlignOffset = -documentMetrics->blockVerticalMargin( document->size() - 1 );
697
698 component.origin.ry() += verticalAlignOffset;
699
700 QgsTextRenderer::drawTextInternal( components, context, tmpLyr.format(), component, *document,
702 break;
703 }
704 }
705 }
706 if ( label->nextPart() )
707 drawLabelPrivate( label->nextPart(), context, tmpLyr, drawType, dpiRatio );
708}
709
714
716{
717 mFields = fields;
718}
@ LabelLargestPartOnly
Place a label only on the largest part from the geometry.
Definition qgis.h:1284
@ OverPoint
Arranges candidates over a point (or centroid of a polygon), or at a preset offset from the point....
Definition qgis.h:1227
@ Curved
Arranges candidates following the curvature of a line feature. Applies to line layers only.
Definition qgis.h:1229
@ AroundPoint
Arranges candidates in a circle around a point (or centroid of a polygon). Applies to point or polygo...
Definition qgis.h:1226
@ Line
Arranges candidates parallel to a generalised line representing the feature or parallel to a polygon'...
Definition qgis.h:1228
@ Free
Arranges candidates scattered throughout a polygon feature. Candidates are rotated to respect the pol...
Definition qgis.h:1231
@ OrderedPositionsAroundPoint
Candidates are placed in predefined positions around a point. Preference is given to positions with g...
Definition qgis.h:1232
@ Horizontal
Arranges horizontal candidates scattered throughout a polygon feature. Applies to polygon layers only...
Definition qgis.h:1230
@ PerimeterCurved
Arranges candidates following the curvature of a polygon's boundary. Applies to polygon layers only.
Definition qgis.h:1233
@ OutsidePolygons
Candidates are placed outside of polygon boundaries. Applies to polygon layers only.
Definition qgis.h:1234
@ Labeling
Labeling-specific layout mode.
Definition qgis.h:2962
@ AboveRight
Above right.
Definition qgis.h:1316
@ BelowLeft
Below left.
Definition qgis.h:1320
@ Above
Above center.
Definition qgis.h:1315
@ BelowRight
Below right.
Definition qgis.h:1322
@ Right
Right middle.
Definition qgis.h:1319
@ AboveLeft
Above left.
Definition qgis.h:1314
@ Below
Below center.
Definition qgis.h:1321
@ Over
Center middle.
Definition qgis.h:1318
@ NeverShow
Never show unplaced labels, regardless of the engine setting.
Definition qgis.h:1176
@ DrawUnplacedLabels
Whether to render unplaced labels as an indicator/warning for users.
Definition qgis.h:2906
GeometryType
The geometry types are used to group Qgis::WkbType in a coarse way.
Definition qgis.h:365
@ Point
Points.
Definition qgis.h:366
@ Center
Center align.
Definition qgis.h:1398
@ FollowPlacement
Alignment follows placement of label, e.g., labels to the left of a feature will be drawn with right ...
Definition qgis.h:1400
@ MapUnits
Map units.
Definition qgis.h:5257
@ Pixels
Pixels.
Definition qgis.h:5258
@ Top
Align to top.
Definition qgis.h:3020
@ Marker
Marker symbol.
Definition qgis.h:630
QFlags< TextComponent > TextComponents
Text components.
Definition qgis.h:2989
TextHorizontalAlignment
Text horizontal alignment.
Definition qgis.h:3000
@ Justify
Justify align.
Definition qgis.h:3004
@ Center
Center align.
Definition qgis.h:3002
TextComponent
Text components.
Definition qgis.h:2976
@ Shadow
Drop shadow.
Definition qgis.h:2980
@ Buffer
Buffer component.
Definition qgis.h:2978
@ Text
Text component.
Definition qgis.h:2977
@ Background
Background shape.
Definition qgis.h:2979
@ Reverse
Reverse/inverse transform (from destination to source).
Definition qgis.h:2731
virtual int nCoordinates() const
Returns the number of nodes contained in the geometry.
virtual QgsPoint vertexAt(QgsVertexId id) const =0
Returns the point corresponding to a specified vertex id.
QgsLabelObstacleSettings::ObstacleType mObstacleType
Type of the obstacle of feature geometries.
QString mName
Name of the layer.
virtual void stopRender(QgsRenderContext &context)
To be called after rendering is complete.
QString mLayerId
Associated layer's ID, if applicable.
double mPriority
Default priority of labels. 0 = highest priority, 1 = lowest priority.
const QgsLabelingEngine * mEngine
Associated labeling engine.
QgsMapLayer * layer() const
Returns the associated layer, or nullptr if no layer is associated with the provider.
Flags mFlags
Flags altering drawing and registration of features.
virtual void startRender(QgsRenderContext &context)
To be called before rendering of labels begins.
Qgis::LabelPlacement mPlacement
Placement strategy.
@ MergeConnectedLines
Whether adjacent lines (with the same label text) should be merged.
@ DrawLabels
Whether the labels should be rendered.
@ CentroidMustBeInside
Whether location of centroid must be inside of polygons.
QString layerId() const
Returns ID of associated layer, or empty string if no layer is associated with the provider.
Qgis::UpsideDownLabelHandling mUpsidedownLabels
How to handle labels that would be upside down.
QString providerId() const
Returns provider ID - useful in case there is more than one label provider within a layer (e....
QgsAbstractLabelProvider(QgsMapLayer *layer, const QString &providerId=QString())
Construct the provider with default values.
QString mProviderId
Associated provider ID (one layer may have multiple providers, e.g. in rule-based labeling).
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.
bool allFeaturePartsLabeled
true if all parts of associated feature were labeled
Definition qgscallout.h:253
QList< QgsCalloutPosition > positions() const
Returns the list of rendered callout positions.
Definition qgscallout.h:287
QgsCoordinateReferenceSystem originalFeatureCrs
Contains the CRS of the original feature associated with this callout.
Definition qgscallout.h:260
@ OrderBelowIndividualLabels
Render callouts below their individual associated labels, some callouts may be drawn over other label...
Definition qgscallout.h:111
@ OrderBelowAllLabels
Render callouts below all labels.
Definition qgscallout.h:110
bool enabled() const
Returns true if the callout is enabled.
Definition qgscallout.h:323
Represents a coordinate reference system (CRS).
Handles coordinate transforms between two coordinate systems.
void setBallparkTransformsAreAppropriate(bool appropriate)
Sets whether approximate "ballpark" results are appropriate for this coordinate transform.
void transformInPlace(double &x, double &y, double &z, Qgis::TransformDirection direction=Qgis::TransformDirection::Forward) const
Transforms an array of x, y and z double coordinates in place, from the source CRS to the destination...
QgsRectangle transformBoundingBox(const QgsRectangle &rectangle, Qgis::TransformDirection direction=Qgis::TransformDirection::Forward, bool handle180Crossover=false) const
Transforms a rectangle from the source CRS to the destination CRS.
bool isValid() const
Returns true if the coordinate transform is valid, ie both the source and destination CRS have been s...
Custom exception class for Coordinate Reference System related exceptions.
Single scope for storing variables and functions for use within a QgsExpressionContext.
static QgsExpressionContextScope * updateSymbolScope(const QgsSymbol *symbol, QgsExpressionContextScope *symbolScope=nullptr)
Updates a symbol scope related to a QgsSymbol to an expression context.
QgsExpressionContextScope * popScope()
Removes the last scope from the expression context and return it.
void setOriginalValueVariable(const QVariant &value)
Sets the original value variable value for the context.
QgsExpressionContextScope * lastScope()
Returns the last scope added to the context.
void appendScope(QgsExpressionContextScope *scope)
Appends a scope to the end of the context.
void setFeature(const QgsFeature &feature)
Convenience function for setting a feature for the context.
Wrapper for iterator of features from vector data provider or vector layer.
bool nextFeature(QgsFeature &f)
Fetch next feature and stores in f, returns true on success.
Wraps a request for features to a vector layer (or directly its vector data provider).
QgsFeatureRequest & setSubsetOfAttributes(const QgsAttributeList &attrs)
Set a subset of attributes that will be fetched.
QgsFeatureRequest & setFilterRect(const QgsRectangle &rectangle)
Sets the rectangle from which features will be taken.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:60
QgsGeometry geometry
Definition qgsfeature.h:71
bool hasGeometry() const
Returns true if the feature has an associated geometry.
Container of fields for a vector layer.
Definition qgsfields.h:46
A geometry is the spatial representation of a feature.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
Qgis::GeometryType type
static std::unique_ptr< QgsAbstractGeometry > fromGeos(const GEOSGeometry *geos)
Create a geometry from a GEOSGeometry.
Definition qgsgeos.cpp:1570
Qgis::MultiPartLabelingBehavior multiPartBehavior() const
Returns the multipart labeling behavior.
QgsCoordinateReferenceSystem originalFeatureCrs() const
Returns the original layer CRS of the feature associated with the label.
GEOSGeometry * geometry() const
Gets access to the associated geometry.
bool hasFixedPosition() const
Whether the label should use a fixed position instead of being automatically placed.
QString labelText() const
Text of the label.
bool reverseDirectionSymbol() const
Returns true if direction symbols should be reversed.
DirectionSymbolPlacement directionSymbolPlacement() const
Returns the placement for direction symbols.
QString leftDirectionSymbol() const
Returns the string to use for left direction arrows.
@ SymbolLeftRight
Place direction symbols on left/right of label.
@ SymbolAbove
Place direction symbols on above label.
@ SymbolBelow
Place direction symbols on below label.
QString rightDirectionSymbol() const
Returns the string to use for right direction arrows.
bool addDirectionSymbol() const
Returns true if '<' or '>' (or custom strings set via leftDirectionSymbol and rightDirectionSymbol) w...
@ PolygonWhole
Avoid placing labels over ANY part of polygon. Where PolygonInterior will prefer to place labels with...
Base class for all map layer types.
Definition qgsmaplayer.h:83
Contains configuration for rendering maps.
Perform transforms between map coordinates and device coordinates.
void setMapRotation(double degrees, double cx, double cy)
Sets map rotation in degrees (clockwise).
QgsPointXY toMapCoordinates(int x, int y) const
Transforms device coordinates to map (world) coordinates.
QgsPointXY transform(const QgsPointXY &p) const
Transforms a point p from map (world) coordinates to device coordinates.
void transformInPlace(double &x, double &y) const
Transforms map coordinates to device coordinates.
Struct for storing maximum and minimum scales for measurements in map units.
A marker symbol type, for rendering Point and MultiPoint geometries.
Multi polygon geometry collection.
bool addGeometry(QgsAbstractGeometry *g) override
Adds a geometry and takes ownership. Returns true in case of success.
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.
void setFormat(const QgsTextFormat &format)
Sets the label text formatting settings, e.g., font settings, buffer settings, etc.
QString wrapChar
Wrapping character string.
Qgis::LabelPlacement placement
Label placement mode.
QgsPropertyCollection & dataDefinedProperties()
Returns a reference to the label's property collection, used for data defined overrides.
Qgis::LabelMultiLineAlignment multilineAlign
Horizontal alignment of multi-line labels.
QgsCallout * callout() const
Returns the label callout renderer, responsible for drawing label callouts.
const QgsLabelLineSettings & lineSettings() const
Returns the label line settings, which contain settings related to how the label engine places and fo...
const QgsTextFormat & format() const
Returns the label text formatting settings, e.g., font settings, buffer settings, etc.
int autoWrapLength
If non-zero, indicates that label text should be automatically wrapped to (ideally) the specified num...
bool useMaxLineLengthForAutoWrap
If true, indicates that when auto wrapping label text the autoWrapLength length indicates the maximum...
Represents a 2D point.
Definition qgspointxy.h:62
double y
Definition qgspointxy.h:66
double x
Definition qgspointxy.h:65
QPointF toQPointF() const
Converts a point to a QPointF.
Definition qgspointxy.h:167
Point geometry type, with support for z-dimension and m-values.
Definition qgspoint.h:53
double x
Definition qgspoint.h:56
double y
Definition qgspoint.h:57
bool isActive(int key) const final
Returns true if the collection contains an active property with the specified key.
A rectangle specified with double values.
Contains information about the context of a rendering operation.
const QgsMaskIdProvider * maskIdProvider() const
Returns the mask id provider attached to the context.
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).
QgsExpressionContext & expressionContext()
Gets the expression context.
const QgsRectangle & extent() const
When rendering a map layer, calling this method returns the "clipping" extent for the layer (in the l...
void setCurrentMaskId(int id)
Stores a mask id as the "current" one.
const QgsMapToPixel & mapToPixel() const
Returns the context's map to pixel transform, which transforms between map coordinates and device coo...
QgsCoordinateTransform coordinateTransform() const
Returns the current coordinate transform for the context.
Scoped object for temporary override of the symbologyReferenceScale property of a QgsRenderContext.
Abstract base class for all rendered symbols.
Definition qgssymbol.h:231
bool enabled() const
Returns whether the background is enabled.
ShapeType type() const
Returns the type of background shape (e.g., square, ellipse, SVG).
Represents a block of text consisting of one or more QgsTextFragment objects.
void insert(int index, const QgsTextFragment &fragment)
Inserts a fragment into the block, at the specified index.
static QgsTextBlock fromPlainText(const QString &text, const QgsTextCharacterFormat &format=QgsTextCharacterFormat())
Constructor for QgsTextBlock consisting of a plain text, and optional character format.
void append(const QgsTextFragment &fragment)
Appends a fragment to the block.
bool enabled() const
Returns whether the buffer is enabled.
Stores information relating to individual character formatting.
Contains pre-calculated metrics of a QgsTextDocument.
static QgsTextDocumentMetrics calculateMetrics(const QgsTextDocument &document, const QgsTextFormat &format, const QgsRenderContext &context, double scaleFactor=1.0, const QgsTextDocumentRenderContext &documentContext=QgsTextDocumentRenderContext())
Returns precalculated text metrics for a text document, when rendered using the given base format and...
double blockVerticalMargin(int blockIndex) const
Returns the vertical margin for the specified block index.
Represents a document consisting of one or more QgsTextBlock objects.
int size() const
Returns the number of blocks in the document.
void append(const QgsTextBlock &block)
Appends a block to the document.
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.
void setFont(const QFont &font)
Sets the font used for rendering text.
void setSizeUnit(Qgis::RenderUnit unit)
Sets the units for the size of rendered text.
QgsTextBackgroundSettings & background()
Returns a reference to the text background settings.
QgsTextShadowSettings & shadow()
Returns a reference to the text drop shadow settings.
QFont font() const
Returns the font used for rendering text.
QgsTextBufferSettings & buffer()
Returns a reference to the text buffer settings.
Stores a fragment of document along with formatting overrides to be used when rendering the fragment.
Adds extra information to QgsLabelFeature for text labels.
QFont definedFont() const
Font to be used for rendering.
const QgsTextDocumentMetrics & documentMetrics() const
Returns the document metrics for the label.
const QgsTextDocument & document() const
Returns the document for the label.
QgsTextCharacterFormat characterFormat(int partId) const
Returns the character format corresponding to the specified label part.
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.
bool enabled() const
Returns whether the shadow is enabled.
void setShadowPlacement(QgsTextShadowSettings::ShadowPlacement placement)
Sets the placement for the drop shadow.
@ ShadowBuffer
Draw shadow under buffer.
@ ShadowShape
Draw shadow under background shape.
@ ShadowLowest
Draw shadow below all text components.
@ ShadowText
Draw shadow under text.
QgsTextShadowSettings::ShadowPlacement shadowPlacement() const
Returns the placement for the drop shadow.
void stopRender(QgsRenderContext &context) override
To be called after rendering is complete.
QgsCoordinateReferenceSystem mCrs
Layer's CRS.
virtual bool prepare(QgsRenderContext &context, QSet< QString > &attributeNames)
Prepare for registration of features.
void drawUnplacedLabel(QgsRenderContext &context, pal::LabelPosition *label) const override
Draw an unplaced label.
QList< QgsLabelFeature * > mLabels
List of generated.
QgsVectorLayerLabelProvider(QgsVectorLayer *layer, const QString &providerId, bool withFeatureLoop, const QgsPalLayerSettings *settings, const QString &layerName=QString())
Convenience constructor to initialize the provider from given vector layer.
void startRender(QgsRenderContext &context) override
To be called before rendering of labels begins.
const QgsPalLayerSettings & settings() const
Returns the layer's settings.
void drawLabelPrivate(pal::LabelPosition *label, QgsRenderContext &context, QgsPalLayerSettings &tmpLyr, Qgis::TextComponent drawType, double dpiRatio=1.0) const
Internal label drawing method.
Qgis::GeometryType mLayerGeometryType
Geometry type of layer.
static QgsGeometry getPointObstacleGeometry(QgsFeature &fet, QgsRenderContext &context, const QgsSymbolList &symbols)
Returns the geometry for a point feature which should be used as an obstacle for labels.
QgsPalLayerSettings mSettings
Layer's labeling configuration.
std::unique_ptr< QgsAbstractFeatureSource > mSource
Layer's feature source.
QList< QgsLabelFeature * > labelFeatures(QgsRenderContext &context) override
Returns list of label features (they are owned by the provider and thus deleted on its destruction).
virtual QList< QgsLabelFeature * > registerFeature(const QgsFeature &feature, QgsRenderContext &context, const QgsGeometry &obstacleGeometry=QgsGeometry(), const QgsSymbol *symbol=nullptr)
Register a feature for labeling as one or more QgsLabelFeature objects stored into mLabels.
void init()
initialization method - called from constructors
void setFields(const QgsFields &fields)
Sets fields of this label provider.
void drawLabel(QgsRenderContext &context, pal::LabelPosition *label) const override
Draw this label at the position determined by the labeling engine.
void drawLabelBackground(QgsRenderContext &context, pal::LabelPosition *label) const override
Draw the background for the specified label.
Represents a vector layer which manages a vector based dataset.
QgsFeatureId featureId() const
Returns the unique ID of the feature.
Definition feature.cpp:169
QgsLabelFeature * feature()
Returns the parent feature.
Definition feature.h:89
Layer * layer()
Returns the layer that feature belongs to.
Definition feature.cpp:164
LabelPosition is a candidate feature label position.
double getAlpha() const
Returns the angle to rotate text (in radians).
double getHeight() const
double getWidth() const
bool isReversedFromLineDirection() const
Returns true if the label direction is the reversed from the line or polygon ring direction.
Qgis::LabelQuadrantPosition quadrant() const
Returns the quadrant associated with this label position.
FeaturePart * getFeaturePart() const
Returns the feature corresponding to this labelposition.
int getPartId() const
double getX(int i=0) const
Returns the down-left x coordinate.
double getY(int i=0) const
Returns the down-left y coordinate.
LabelPosition * nextPart() const
Returns the next part of this label position (i.e.
QgsAbstractLabelProvider * provider() const
Returns pointer to the associated provider.
Definition layer.h:157
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
#define QgsDebugMsgLevel(str, level)
Definition qgslogger.h:63
QList< QgsSymbol * > QgsSymbolList
Definition qgsrenderer.h:51
Utility class for identifying a unique vertex within a geometry.
Definition qgsvertexid.h:34