QGIS API Documentation 3.99.0-Master (2fe06baccd8)
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 <QTextDocument>
44#include <QTextFragment>
45
46using namespace pal;
47
48QgsVectorLayerLabelProvider::QgsVectorLayerLabelProvider( QgsVectorLayer *layer, const QString &providerId, bool withFeatureLoop, const QgsPalLayerSettings *settings, const QString &layerName )
50 , mSettings( settings ? * settings : QgsPalLayerSettings() ) // TODO: all providers should have valid settings?
51 , mLayerGeometryType( layer->geometryType() )
52 , mRenderer( layer->renderer() )
53 , mFields( layer->fields() )
54 , mCrs( layer->crs() )
55{
56 mName = layerName.isEmpty() ? layer->id() : layerName;
57
58 if ( withFeatureLoop )
59 {
60 mSource = std::make_unique<QgsVectorLayerFeatureSource>( layer );
61 }
62
63 init();
64}
65
68 , mSettings( settings ? * settings : QgsPalLayerSettings() ) // TODO: all providers should have valid settings?
69 , mLayerGeometryType( geometryType )
70 , mFields( fields )
71 , mCrs( crs )
72{
73 mName = layerName.isEmpty() ? layer->id() : layerName;
74
75 init();
76}
77
79{
80 mPlacement = mSettings.placement;
81
82 mFlags = Flags();
83 if ( mSettings.drawLabels )
85 if ( mSettings.lineSettings().mergeLines() && !mSettings.lineSettings().addDirectionSymbol() )
87 if ( mSettings.centroidInside )
89
90 mPriority = 1 - mSettings.priority / 10.0; // convert 0..10 --> 1..0
91
93 {
94 //override obstacle type to treat any intersection of a label with the point symbol as a high cost conflict
96 }
97 else
98 {
99 mObstacleType = mSettings.obstacleSettings().type();
100 }
101
102 mUpsidedownLabels = mSettings.upsidedownLabels;
103}
104
105
110
111
112bool QgsVectorLayerLabelProvider::prepare( QgsRenderContext &context, QSet<QString> &attributeNames )
113{
114 const QgsMapSettings &mapSettings = mEngine->mapSettings();
115
116 return mSettings.prepare( context, attributeNames, mFields, mapSettings, mCrs );
117}
118
120{
122 mSettings.startRender( context );
123}
124
126{
128 mSettings.stopRender( context );
129}
130
132{
133 if ( !mSource )
134 {
135 // we have created the provider with "own feature loop" == false
136 // so it is assumed that prepare() has been already called followed by registerFeature() calls
137 return mLabels;
138 }
139
140 QSet<QString> attrNames;
141 if ( !prepare( ctx, attrNames ) )
142 return QList<QgsLabelFeature *>();
143
144 if ( mRenderer )
145 mRenderer->startRender( ctx, mFields );
146
147 QgsRectangle layerExtent = ctx.extent();
148 if ( mSettings.ct.isValid() && !mSettings.ct.isShortCircuited() )
149 {
150 QgsCoordinateTransform extentTransform = mSettings.ct;
151 extentTransform.setBallparkTransformsAreAppropriate( true );
152 layerExtent = extentTransform.transformBoundingBox( ctx.extent(), Qgis::TransformDirection::Reverse );
153 }
154
155 QgsFeatureRequest request;
156 request.setFilterRect( layerExtent );
157 request.setSubsetOfAttributes( attrNames, mFields );
158 QgsFeatureIterator fit = mSource->getFeatures( request );
159
161 ctx.expressionContext().appendScope( symbolScope );
162 QgsFeature fet;
163 while ( fit.nextFeature( fet ) )
164 {
165 QgsGeometry obstacleGeometry;
166 const QgsSymbol *symbol = nullptr;
167 if ( mRenderer )
168 {
169 QgsSymbolList symbols = mRenderer->originalSymbolsForFeature( fet, ctx );
170 if ( !symbols.isEmpty() && fet.geometry().type() == Qgis::GeometryType::Point )
171 {
172 //point feature, use symbol bounds as obstacle
173 obstacleGeometry = QgsVectorLayerLabelProvider::getPointObstacleGeometry( fet, ctx, symbols );
174 }
175 if ( !symbols.isEmpty() )
176 {
177 symbol = symbols.at( 0 );
178 symbolScope = QgsExpressionContextUtils::updateSymbolScope( symbol, symbolScope );
179 }
180 }
181 ctx.expressionContext().setFeature( fet );
182 registerFeature( fet, ctx, obstacleGeometry, symbol );
183 }
184
185 if ( ctx.expressionContext().lastScope() == symbolScope )
186 delete ctx.expressionContext().popScope();
187
188 if ( mRenderer )
189 mRenderer->stopRender( ctx );
190
191 return mLabels;
192}
193
194QList< QgsLabelFeature * > QgsVectorLayerLabelProvider::registerFeature( const QgsFeature &feature, QgsRenderContext &context, const QgsGeometry &obstacleGeometry, const QgsSymbol *symbol )
195{
196 std::unique_ptr< QgsLabelFeature > label = mSettings.registerFeatureWithDetails( feature, context, obstacleGeometry, symbol );
197 QList< QgsLabelFeature * > res;
198 if ( label )
199 {
200 res << label.get();
201 mLabels << label.release();
202 }
203 return res;
204}
205
207{
208 if ( !fet.hasGeometry() || fet.geometry().type() != Qgis::GeometryType::Point )
209 return QgsGeometry();
210
211 bool isMultiPoint = fet.geometry().constGet()->nCoordinates() > 1;
212 std::unique_ptr< QgsAbstractGeometry > obstacleGeom;
213 if ( isMultiPoint )
214 obstacleGeom = std::make_unique< QgsMultiPolygon >();
215
216 // for each point
217 for ( int i = 0; i < fet.geometry().constGet()->nCoordinates(); ++i )
218 {
219 QRectF bounds;
220 QgsPoint p = fet.geometry().constGet()->vertexAt( QgsVertexId( i, 0, 0 ) );
221 double x = p.x();
222 double y = p.y();
223 double z = 0; // dummy variable for coordinate transforms
224
225 //transform point to pixels
226 if ( context.coordinateTransform().isValid() )
227 {
228 try
229 {
230 context.coordinateTransform().transformInPlace( x, y, z );
231 }
232 catch ( QgsCsException & )
233 {
234 return QgsGeometry();
235 }
236 }
237 context.mapToPixel().transformInPlace( x, y );
238
239 QPointF pt( x, y );
240 const auto constSymbols = symbols;
241 for ( QgsSymbol *symbol : constSymbols )
242 {
243 if ( symbol->type() == Qgis::SymbolType::Marker )
244 {
245 if ( bounds.isValid() )
246 bounds = bounds.united( static_cast< QgsMarkerSymbol * >( symbol )->bounds( pt, context, fet ) );
247 else
248 bounds = static_cast< QgsMarkerSymbol * >( symbol )->bounds( pt, context, fet );
249 }
250 }
251
252 //convert bounds to a geometry
253 QVector< double > bX;
254 bX << bounds.left() << bounds.right() << bounds.right() << bounds.left();
255 QVector< double > bY;
256 bY << bounds.top() << bounds.top() << bounds.bottom() << bounds.bottom();
257 auto boundLineString = std::make_unique< QgsLineString >( bX, bY );
258
259 //then transform back to map units
260 //TODO - remove when labeling is refactored to use screen units
261 for ( int i = 0; i < boundLineString->numPoints(); ++i )
262 {
263 QgsPointXY point = context.mapToPixel().toMapCoordinates( static_cast<int>( boundLineString->xAt( i ) ),
264 static_cast<int>( boundLineString->yAt( i ) ) );
265 boundLineString->setXAt( i, point.x() );
266 boundLineString->setYAt( i, point.y() );
267 }
268 if ( context.coordinateTransform().isValid() )
269 {
270 try
271 {
272 boundLineString->transform( context.coordinateTransform(), Qgis::TransformDirection::Reverse );
273 }
274 catch ( QgsCsException & )
275 {
276 return QgsGeometry();
277 }
278 }
279 boundLineString->close();
280
281 if ( context.coordinateTransform().isValid() )
282 {
283 // coordinate transforms may have resulted in nan coordinates - if so, strip these out
284 boundLineString->filterVertices( []( const QgsPoint & point )->bool
285 {
286 return std::isfinite( point.x() ) && std::isfinite( point.y() );
287 } );
288 if ( !boundLineString->isRing() )
289 return QgsGeometry();
290 }
291
292 auto obstaclePolygon = std::make_unique< QgsPolygon >();
293 obstaclePolygon->setExteriorRing( boundLineString.release() );
294
295 if ( isMultiPoint )
296 {
297 static_cast<QgsMultiPolygon *>( obstacleGeom.get() )->addGeometry( obstaclePolygon.release() );
298 }
299 else
300 {
301 obstacleGeom = std::move( obstaclePolygon );
302 }
303 }
304
305 return QgsGeometry( std::move( obstacleGeom ) );
306}
307
309{
310 if ( !mSettings.drawLabels )
311 return;
312
313 // render callout
314 if ( mSettings.callout() && mSettings.callout()->drawOrder() == QgsCallout::OrderBelowAllLabels )
315 {
316 drawCallout( context, label );
317 }
318}
319
320void QgsVectorLayerLabelProvider::drawCallout( QgsRenderContext &context, pal::LabelPosition *label ) const
321{
322 bool enabled = mSettings.callout()->enabled();
324 {
325 context.expressionContext().setOriginalValueVariable( enabled );
327 }
328 if ( enabled )
329 {
330 QgsMapToPixel xform = context.mapToPixel();
331 xform.setMapRotation( 0, 0, 0 );
332 QPointF outPt = xform.transform( label->getX(), label->getY() ).toQPointF();
333 QgsPointXY outPt2 = xform.transform( label->getX() + label->getWidth(), label->getY() + label->getHeight() );
334 QRectF rect( outPt.x(), outPt.y(), outPt2.x() - outPt.x(), outPt2.y() - outPt.y() );
335
336 QgsGeometry g( QgsGeos::fromGeos( label->getFeaturePart()->feature()->geometry() ) );
337 g.transform( xform.transform() );
338 QgsCallout::QgsCalloutContext calloutContext;
339 calloutContext.allFeaturePartsLabeled = label->getFeaturePart()->feature()->labelAllParts();
340 calloutContext.originalFeatureCrs = label->getFeaturePart()->feature()->originalFeatureCrs();
341 mSettings.callout()->render( context, rect, label->getAlpha() * 180 / M_PI, g, calloutContext );
342
343 const QList< QgsCalloutPosition > renderedPositions = calloutContext.positions();
344
345 for ( QgsCalloutPosition position : renderedPositions )
346 {
347 position.layerID = mLayerId;
348 position.featureId = label->getFeaturePart()->featureId();
349 position.providerID = mProviderId;
350 mEngine->results()->mLabelSearchTree->insertCallout( position );
351 }
352 }
353}
354
356{
357 if ( !mSettings.drawLabels )
358 return;
359
360 QgsTextLabelFeature *lf = dynamic_cast<QgsTextLabelFeature *>( label->getFeaturePart()->feature() );
361 if ( !lf )
362 return;
363
364 // Copy to temp, editable layer settings
365 // these settings will be changed by any data defined values, then used for rendering label components
366 // settings may be adjusted during rendering of components
368
369 // apply any previously applied data defined settings for the label
370 const QMap< QgsPalLayerSettings::Property, QVariant > &ddValues = lf->dataDefinedValues();
371
372 //font
373 QFont dFont = lf->definedFont();
374 QgsDebugMsgLevel( QStringLiteral( "PAL font tmpLyr: %1, Style: %2" ).arg( tmpLyr.format().font().toString(), tmpLyr.format().font().styleName() ), 4 );
375 QgsDebugMsgLevel( QStringLiteral( "PAL font definedFont: %1, Style: %2" ).arg( dFont.toString(), dFont.styleName() ), 4 );
376
377 QgsTextFormat format = tmpLyr.format();
378 format.setFont( dFont );
379
380 // size has already been calculated and stored in the defined font - this calculated size
381 // is in pixels
382 format.setSize( dFont.pixelSize() );
384 tmpLyr.setFormat( format );
385
387 {
388 //calculate font alignment based on label quadrant
389 switch ( label->quadrant() )
390 {
395 break;
400 break;
405 break;
406 }
407 }
408
409 // update tmpLyr with any data defined text style values
410 QgsPalLabeling::dataDefinedTextStyle( tmpLyr, ddValues );
411
412 // update tmpLyr with any data defined text buffer values
413 QgsPalLabeling::dataDefinedTextBuffer( tmpLyr, ddValues );
414
415 // update tmpLyr with any data defined text mask values
416 QgsPalLabeling::dataDefinedTextMask( tmpLyr, ddValues );
417
418 // update tmpLyr with any data defined text formatting values
419 QgsPalLabeling::dataDefinedTextFormatting( tmpLyr, ddValues );
420
421 // update tmpLyr with any data defined shape background values
422 QgsPalLabeling::dataDefinedShapeBackground( tmpLyr, ddValues );
423
424 // update tmpLyr with any data defined drop shadow values
425 QgsPalLabeling::dataDefinedDropShadow( tmpLyr, ddValues );
426
427 // Render the components of a label in reverse order
428 // (backgrounds -> text)
429
430 // render callout
431 if ( mSettings.callout() && mSettings.callout()->drawOrder() == QgsCallout::OrderBelowIndividualLabels )
432 {
433 drawCallout( context, label );
434 }
435
437 {
438 QgsTextFormat format = tmpLyr.format();
439
440 if ( tmpLyr.format().background().enabled() && tmpLyr.format().background().type() != QgsTextBackgroundSettings::ShapeMarkerSymbol ) // background shadows not compatible with marker symbol backgrounds
441 {
443 }
444 else if ( tmpLyr.format().buffer().enabled() )
445 {
447 }
448 else
449 {
451 }
452
453 tmpLyr.setFormat( format );
454 }
455
456 if ( tmpLyr.format().background().enabled() )
457 {
458 drawLabelPrivate( label, context, tmpLyr, Qgis::TextComponent::Background );
459 }
460
461 if ( tmpLyr.format().buffer().enabled() )
462 {
463 drawLabelPrivate( label, context, tmpLyr, Qgis::TextComponent::Buffer );
464 }
465
466 drawLabelPrivate( label, context, tmpLyr, Qgis::TextComponent::Text );
467
468 // add to the results
469 QString labeltext = label->getFeaturePart()->feature()->labelText();
470 mEngine->results()->mLabelSearchTree->insertLabel( label, label->getFeaturePart()->featureId(), mLayerId, labeltext, dFont, false, lf->hasFixedPosition(), mProviderId );
471}
472
474{
475 QgsTextLabelFeature *lf = dynamic_cast<QgsTextLabelFeature *>( label->getFeaturePart()->feature() );
476 if ( !lf )
477 return;
478
479 QgsTextFormat format = mSettings.format();
480 if ( mSettings.drawLabels
481 && mSettings.unplacedVisibility() != Qgis::UnplacedLabelVisibility::NeverShow
482 && mEngine->engineSettings().flags() & Qgis::LabelingFlag::DrawUnplacedLabels )
483 {
485 format = tmpLyr.format();
486 format.setColor( mEngine->engineSettings().unplacedLabelColor() );
487 tmpLyr.setFormat( format );
488 drawLabelPrivate( label, context, tmpLyr, Qgis::TextComponent::Text );
489 }
490
491 // add to the results
492 QString labeltext = label->getFeaturePart()->feature()->labelText();
493 mEngine->results()->mLabelSearchTree->insertLabel( label, label->getFeaturePart()->featureId(), mLayerId, labeltext, format.font(), false, lf->hasFixedPosition(), mProviderId, true );
494}
495
497{
498 // NOTE: this is repeatedly called for multi-part labels
499 Qgis::TextComponents components;
500 switch ( drawType )
501 {
504 break;
505
508 break;
509
512 components = drawType;
513 break;
514 }
515
516 // features are pre-rotated but not scaled/translated,
517 // so we only disable rotation here. Ideally, they'd be
518 // also pre-scaled/translated, as suggested here:
519 // https://github.com/qgis/QGIS/issues/20071
520 QgsMapToPixel xform = context.mapToPixel();
521 xform.setMapRotation( 0, 0, 0 );
522
523 QPointF outPt = xform.transform( label->getX(), label->getY() ).toQPointF();
524
525 QgsTextRenderer::Component component;
526 component.dpiRatio = dpiRatio;
527 component.origin = outPt;
528 component.rotation = label->getAlpha();
529
530 if ( drawType == Qgis::TextComponent::Background )
531 {
532 // get rotated label's center point
533 QPointF centerPt( outPt );
534 QgsPointXY outPt2 = xform.transform( label->getX() + label->getWidth() / 2,
535 label->getY() + label->getHeight() / 2 );
536
537 double xc = outPt2.x() - outPt.x();
538 double yc = outPt2.y() - outPt.y();
539
540 double angle = -component.rotation;
541 double xd = xc * std::cos( angle ) - yc * std::sin( angle );
542 double yd = xc * std::sin( angle ) + yc * std::cos( angle );
543
544 centerPt.setX( centerPt.x() + xd );
545 centerPt.setY( centerPt.y() + yd );
546
547 component.center = centerPt;
548
549 {
550 // label size has already been calculated using any symbology reference scale factor -- we need
551 // to temporarily remove the reference scale here or we'll be applying the scaling twice
552 QgsScopedRenderContextReferenceScaleOverride referenceScaleOverride( context, -1.0 );
553
554 // convert label size to render units
555 double labelWidthPx = context.convertToPainterUnits( label->getWidth(), Qgis::RenderUnit::MapUnits, QgsMapUnitScale() );
556 double labelHeightPx = context.convertToPainterUnits( label->getHeight(), Qgis::RenderUnit::MapUnits, QgsMapUnitScale() );
557
558 component.size = QSizeF( labelWidthPx, labelHeightPx );
559 }
560
561 QgsTextRenderer::drawBackground( context, component, tmpLyr.format(), QgsTextDocumentMetrics(), Qgis::TextLayoutMode::Labeling );
562 }
563
564 else if ( drawType == Qgis::TextComponent::Buffer
565 || drawType == Qgis::TextComponent::Text )
566 {
567 // TODO: optimize access :)
568 QgsTextLabelFeature *lf = static_cast<QgsTextLabelFeature *>( label->getFeaturePart()->feature() );
569 QString txt = lf->text( label->getPartId() );
570
571 if ( auto *lMaskIdProvider = context.maskIdProvider() )
572 {
573 int maskId = lMaskIdProvider->maskId( label->getFeaturePart()->layer()->provider()->layerId(),
574 label->getFeaturePart()->layer()->provider()->providerId() );
575 context.setCurrentMaskId( maskId );
576 }
577
578 const QgsTextDocument &precalculatedDocument = lf->document();
579 const QgsTextDocumentMetrics &precalculatedMetrics = lf->documentMetrics();
580 const QgsTextDocument *document = &precalculatedDocument;
581 const QgsTextDocumentMetrics *documentMetrics = &precalculatedMetrics;
582
583 // add the direction symbol if needed
584 // note that IF we do this, we can no longer use the original text document and metrics
585 // but have to re-calculate these with the newly added text!
586 std::optional< QgsTextDocument > newDocument;
587 std::optional< QgsTextDocumentMetrics > newDocumentMetrics;
588 if ( !txt.isEmpty() && tmpLyr.placement == Qgis::LabelPlacement::Line &&
590 {
591 newDocument.emplace( *document );
592 bool prependSymb = false;
593 QString symb = tmpLyr.lineSettings().rightDirectionSymbol();
594
595 if ( label->isReversedFromLineDirection() )
596 {
597 prependSymb = true;
598 symb = tmpLyr.lineSettings().leftDirectionSymbol();
599 }
600
601 if ( tmpLyr.lineSettings().reverseDirectionSymbol() )
602 {
603 if ( symb == tmpLyr.lineSettings().rightDirectionSymbol() )
604 {
605 prependSymb = true;
606 symb = tmpLyr.lineSettings().leftDirectionSymbol();
607 }
608 else
609 {
610 prependSymb = false;
611 symb = tmpLyr.lineSettings().rightDirectionSymbol();
612 }
613 }
614
615 switch ( tmpLyr.lineSettings().directionSymbolPlacement() )
616 {
618 {
619 newDocument->insert( 0, QgsTextBlock( QgsTextFragment( symb ) ) );
620 break;
621 }
622
624 newDocument->append( QgsTextBlock( QgsTextFragment( symb ) ) );
625 break;
626
628 {
629 QgsTextBlock &block = newDocument.value()[ 0 ];
630 if ( prependSymb )
631 {
632 block.insert( 0, QgsTextFragment( symb ) );
633 }
634 else
635 {
636 block.append( QgsTextFragment( symb ) );
637 }
638 break;
639 }
640 }
641
642 QgsScopedRenderContextReferenceScaleOverride referenceScaleOverride( context, -1.0 );
643 newDocumentMetrics.emplace( QgsTextDocumentMetrics::calculateMetrics( newDocument.value(), tmpLyr.format(), context ) );
644 document = &newDocument.value();
645 documentMetrics = &newDocumentMetrics.value();
646 }
647
655
656 QgsTextRenderer::Component component;
657 component.origin = outPt;
658 component.rotation = label->getAlpha();
659
660 // If we are using non-curved, HTML formatted labels then we've already precalculated the text metrics.
661 // Otherwise we'll need to calculate them now.
662 switch ( tmpLyr.placement )
663 {
666 {
667 QgsTextDocument document;
668 const QgsTextCharacterFormat c = lf->characterFormat( label->getPartId() );
669 const QStringList multiLineList = QgsPalLabeling::splitToLines( txt, tmpLyr.wrapChar, tmpLyr.autoWrapLength, tmpLyr.useMaxLineLengthForAutoWrap );
670 for ( const QString &line : multiLineList )
671 {
672 document.append( QgsTextBlock::fromPlainText( line, c ) );
673 }
674
675 QgsScopedRenderContextReferenceScaleOverride referenceScaleOverride( context, -1.0 );
676 const QgsTextDocumentMetrics metrics = QgsTextDocumentMetrics::calculateMetrics( document, tmpLyr.format(), context );
677 QgsTextRenderer::drawTextInternal( components, context, tmpLyr.format(), component, document,
679 break;
680 }
681
689 {
690 const double verticalAlignOffset = -documentMetrics->blockVerticalMargin( document->size() - 1 );
691
692 component.origin.ry() += verticalAlignOffset;
693
694 QgsTextRenderer::drawTextInternal( components, context, tmpLyr.format(), component, *document,
696 break;
697 }
698 }
699 }
700 if ( label->nextPart() )
701 drawLabelPrivate( label->nextPart(), context, tmpLyr, drawType, dpiRatio );
702}
703
708
710{
711 mFields = fields;
712}
@ OverPoint
Arranges candidates over a point (or centroid of a polygon), or at a preset offset from the point....
Definition qgis.h:1196
@ Curved
Arranges candidates following the curvature of a line feature. Applies to line layers only.
Definition qgis.h:1198
@ AroundPoint
Arranges candidates in a circle around a point (or centroid of a polygon). Applies to point or polygo...
Definition qgis.h:1195
@ Line
Arranges candidates parallel to a generalised line representing the feature or parallel to a polygon'...
Definition qgis.h:1197
@ Free
Arranges candidates scattered throughout a polygon feature. Candidates are rotated to respect the pol...
Definition qgis.h:1200
@ OrderedPositionsAroundPoint
Candidates are placed in predefined positions around a point. Preference is given to positions with g...
Definition qgis.h:1201
@ Horizontal
Arranges horizontal candidates scattered throughout a polygon feature. Applies to polygon layers only...
Definition qgis.h:1199
@ PerimeterCurved
Arranges candidates following the curvature of a polygon's boundary. Applies to polygon layers only.
Definition qgis.h:1202
@ OutsidePolygons
Candidates are placed outside of polygon boundaries. Applies to polygon layers only.
Definition qgis.h:1203
@ Labeling
Labeling-specific layout mode.
Definition qgis.h:2904
@ AboveRight
Above right.
Definition qgis.h:1258
@ BelowLeft
Below left.
Definition qgis.h:1262
@ Above
Above center.
Definition qgis.h:1257
@ BelowRight
Below right.
Definition qgis.h:1264
@ Right
Right middle.
Definition qgis.h:1261
@ AboveLeft
Above left.
Definition qgis.h:1256
@ Below
Below center.
Definition qgis.h:1263
@ Over
Center middle.
Definition qgis.h:1260
@ NeverShow
Never show unplaced labels, regardless of the engine setting.
Definition qgis.h:1157
@ DrawUnplacedLabels
Whether to render unplaced labels as an indicator/warning for users.
Definition qgis.h:2848
GeometryType
The geometry types are used to group Qgis::WkbType in a coarse way.
Definition qgis.h:358
@ Point
Points.
Definition qgis.h:359
@ Center
Center align.
Definition qgis.h:1340
@ FollowPlacement
Alignment follows placement of label, e.g., labels to the left of a feature will be drawn with right ...
Definition qgis.h:1342
@ MapUnits
Map units.
Definition qgis.h:5185
@ Pixels
Pixels.
Definition qgis.h:5186
@ Top
Align to top.
Definition qgis.h:2962
@ Marker
Marker symbol.
Definition qgis.h:611
QFlags< TextComponent > TextComponents
Text components.
Definition qgis.h:2931
TextHorizontalAlignment
Text horizontal alignment.
Definition qgis.h:2942
@ Justify
Justify align.
Definition qgis.h:2946
@ Center
Center align.
Definition qgis.h:2944
TextComponent
Text components.
Definition qgis.h:2918
@ Shadow
Drop shadow.
Definition qgis.h:2922
@ Buffer
Buffer component.
Definition qgis.h:2920
@ Text
Text component.
Definition qgis.h:2919
@ Background
Background shape.
Definition qgis.h:2921
@ Reverse
Reverse/inverse transform (from destination to source).
Definition qgis.h:2673
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 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:58
QgsGeometry geometry
Definition qgsfeature.h:69
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:1574
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 labelAllParts() const
Returns true if all parts of the feature should be labeled.
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:80
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:60
double y
Definition qgspointxy.h:64
double x
Definition qgspointxy.h:63
QPointF toQPointF() const
Converts a point to a QPointF.
Definition qgspointxy.h:165
Point geometry type, with support for z-dimension and m-values.
Definition qgspoint.h:49
double x
Definition qgspoint.h:52
double y
Definition qgspoint.h:53
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:167
QgsLabelFeature * feature()
Returns the parent feature.
Definition feature.h:89
Layer * layer()
Returns the layer that feature belongs to.
Definition feature.cpp:162
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:158
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:61
QList< QgsSymbol * > QgsSymbolList
Definition qgsrenderer.h:49
Utility class for identifying a unique vertex within a geometry.
Definition qgsvertexid.h:30