QGIS API Documentation  3.4.15-Madeira (e83d02e274)
qgslabelfeature.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgslabelfeature.h
3  ---------------------
4  begin : December 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 #ifndef QGSLABELFEATURE_H
16 #define QGSLABELFEATURE_H
17 
18 #define SIP_NO_FILE
19 
20 #include "qgis_core.h"
21 #include "qgspallabeling.h"
22 #include "geos_c.h"
23 #include "qgsgeos.h"
24 #include "qgsmargins.h"
25 #include "pal.h"
26 
27 namespace pal
28 {
29  class LabelInfo;
30 }
31 
33 class QgsRenderContext;
34 class QgsGeometry;
35 
36 
54 class CORE_EXPORT QgsLabelFeature
55 {
56  public:
57 
59  QgsLabelFeature( QgsFeatureId id, geos::unique_ptr geometry, QSizeF size );
61  virtual ~QgsLabelFeature();
62 
64  QgsFeatureId id() const { return mId; }
65 
67  GEOSGeometry *geometry() const { return mGeometry.get(); }
68 
78  void setObstacleGeometry( geos::unique_ptr obstacleGeom );
79 
85  GEOSGeometry *obstacleGeometry() const { return mObstacleGeometry.get(); }
86 
96  void setPermissibleZone( const QgsGeometry &geometry );
97 
106  QgsGeometry permissibleZone() const { return mPermissibleZone; }
107 
113  //TODO - remove when QgsGeometry caches GEOS preparedness
114  const GEOSPreparedGeometry *permissibleZonePrepared() const { return mPermissibleZoneGeosPrepared.get(); }
115 
117  QSizeF size() const { return mSize; }
118 
129  void setVisualMargin( const QgsMargins &margin ) { mVisualMargin = margin; }
130 
135  const QgsMargins &visualMargin() const { return mVisualMargin; }
136 
143  void setSymbolSize( QSizeF size ) { mSymbolSize = size; }
144 
152  const QSizeF &symbolSize() const { return mSymbolSize; }
153 
160  double priority() const { return mPriority; }
161 
169  void setPriority( double priority ) { mPriority = priority; }
170 
177  double zIndex() const { return mZIndex; }
178 
186  void setZIndex( double zIndex ) { mZIndex = zIndex; }
187 
189  bool hasFixedPosition() const { return mHasFixedPosition; }
191  void setHasFixedPosition( bool enabled ) { mHasFixedPosition = enabled; }
193  QgsPointXY fixedPosition() const { return mFixedPosition; }
195  void setFixedPosition( const QgsPointXY &point ) { mFixedPosition = point; }
196 
198  bool hasFixedAngle() const { return mHasFixedAngle; }
200  void setHasFixedAngle( bool enabled ) { mHasFixedAngle = enabled; }
202  double fixedAngle() const { return mFixedAngle; }
204  void setFixedAngle( double angle ) { mFixedAngle = angle; }
205 
212  bool hasFixedQuadrant() const { return mHasFixedQuadrant; }
213 
220  void setHasFixedQuadrant( bool enabled ) { mHasFixedQuadrant = enabled; }
221 
228  QPointF quadOffset() const { return mQuadOffset; }
229 
234  void setQuadOffset( QPointF quadOffset ) { mQuadOffset = quadOffset; }
235 
240  QgsPointXY positionOffset() const { return mPositionOffset; }
241 
246  void setPositionOffset( const QgsPointXY &offset ) { mPositionOffset = offset; }
247 
254  QgsPalLayerSettings::OffsetType offsetType() const { return mOffsetType; }
255 
262  void setOffsetType( QgsPalLayerSettings::OffsetType type ) { mOffsetType = type; }
263 
268  double distLabel() const { return mDistLabel; }
269 
274  void setDistLabel( double dist ) { mDistLabel = dist; }
275 
281  QVector< QgsPalLayerSettings::PredefinedPointPosition > predefinedPositionOrder() const { return mPredefinedPositionOrder; }
282 
288  void setPredefinedPositionOrder( const QVector< QgsPalLayerSettings::PredefinedPointPosition > &order ) { mPredefinedPositionOrder = order; }
289 
294  double repeatDistance() const { return mRepeatDistance; }
295 
300  void setRepeatDistance( double dist ) { mRepeatDistance = dist; }
301 
303  bool alwaysShow() const { return mAlwaysShow; }
305  void setAlwaysShow( bool enabled ) { mAlwaysShow = enabled; }
306 
312  bool isObstacle() const { return mIsObstacle; }
313 
319  void setIsObstacle( bool enabled ) { mIsObstacle = enabled; }
320 
326  double obstacleFactor() const { return mObstacleFactor; }
327 
336  void setObstacleFactor( double factor ) { mObstacleFactor = factor; }
337 
342  pal::LineArrangementFlags arrangementFlags() const { return mArrangementFlags; }
343 
349  void setArrangementFlags( pal::LineArrangementFlags flags ) { mArrangementFlags = flags; }
350 
357  QString labelText() const { return mLabelText; }
359  void setLabelText( const QString &text ) { mLabelText = text; }
360 
362  pal::LabelInfo *curvedLabelInfo() const { return mInfo; }
364  void setCurvedLabelInfo( pal::LabelInfo *info ) { mInfo = info; }
365 
367  pal::Layer *layer() const { return mLayer; }
369  void setLayer( pal::Layer *layer ) { mLayer = layer; }
370 
372  QgsAbstractLabelProvider *provider() const;
373 
374  protected:
376  pal::Layer *mLayer = nullptr;
377 
387  QSizeF mSize;
391  QSizeF mSymbolSize;
393  double mPriority;
395  double mZIndex;
403  double mFixedAngle;
407  QPointF mQuadOffset;
411  double mDistLabel;
415  QVector< QgsPalLayerSettings::PredefinedPointPosition > mPredefinedPositionOrder;
425  QString mLabelText;
427  pal::LabelInfo *mInfo = nullptr;
428 
429  pal::LineArrangementFlags mArrangementFlags = nullptr;
430 
431  private:
432 
434  geos::unique_ptr mPermissibleZoneGeos;
435 
436  // TODO - not required when QgsGeometry caches geos preparedness
437  geos::prepared_unique_ptr mPermissibleZoneGeosPrepared;
438 
439 };
440 
441 #endif // QGSLABELFEATURE_H
QgsPointXY positionOffset() const
Applies only to "offset from point" placement strategy.
pal::Layer * layer() const
Gets PAL layer of the label feature. Should be only used internally in PAL.
void setSymbolSize(QSizeF size)
Sets the size of the rendered symbol associated with this feature.
QgsPointXY mFixedPosition
fixed position for the label (instead of automatic placement)
double repeatDistance() const
Applies only to linestring features - after what distance (in map units) the labels should be repeate...
void setVisualMargin(const QgsMargins &margin)
Sets the visual margin for the label feature.
bool alwaysShow() const
Whether label should be always shown (sets very high label priority)
std::unique_ptr< const GEOSPreparedGeometry, GeosDeleter > prepared_unique_ptr
Scoped GEOS prepared geometry pointer.
Definition: qgsgeos.h:84
A set of features which influence the labeling process.
Definition: layer.h:63
A class to represent a 2D point.
Definition: qgspointxy.h:43
QString mLabelText
text of the label
const GEOSPreparedGeometry * permissibleZonePrepared() const
Returns a GEOS prepared geometry representing the label&#39;s permissibleZone().
QgsMargins mVisualMargin
Visual margin of label contents.
qint64 QgsFeatureId
Definition: qgsfeatureid.h:25
bool mIsObstacle
whether the feature geometry acts as an obstacle for labels
void setObstacleFactor(double factor)
Sets the obstacle factor for the feature.
QPointF quadOffset() const
Applies to "offset from point" placement strategy and "around point" (in case hasFixedQuadrant() retu...
A geometry is the spatial representation of a feature.
Definition: qgsgeometry.h:106
void setCurvedLabelInfo(pal::LabelInfo *info)
takes ownership of the instance
bool mHasFixedQuadrant
whether mQuadOffset should be respected (only for "around point" placement)
double priority() const
Returns the feature&#39;s labeling priority.
double mRepeatDistance
distance after which label should be repeated (only for linestrings)
double mObstacleFactor
how strong is the geometry acting as obstacle
QgsFeatureId mId
Associated ID unique within the parent label provider.
void setAlwaysShow(bool enabled)
Sets whether label should be always shown (sets very high label priority)
void setLabelText(const QString &text)
Sets text of the label.
bool mHasFixedPosition
whether mFixedPosition should be respected
double ANALYSIS_EXPORT angle(QgsPoint *p1, QgsPoint *p2, QgsPoint *p3, QgsPoint *p4)
Calculates the angle between two segments (in 2 dimension, z-values are ignored)
Definition: MathUtils.cpp:786
bool isObstacle() const
Returns whether the feature will act as an obstacle for labels.
QgsPalLayerSettings::OffsetType offsetType() const
Returns the offset type, which determines how offsets and distance to label behaves.
void setHasFixedPosition(bool enabled)
Sets whether the label should use a fixed position instead of being automatically placed...
GEOSGeometry * geometry() const
Gets access to the associated geometry.
pal::LabelInfo * curvedLabelInfo() const
Gets additional infor required for curved label placement. Returns null if not set.
QSizeF size() const
Size of the label (in map units)
void setPositionOffset(const QgsPointXY &offset)
Applies only to "offset from point" placement strategy.
QSizeF mSize
Width and height of the label.
bool hasFixedPosition() const
Whether the label should use a fixed position instead of being automatically placed.
geos::unique_ptr mObstacleGeometry
Optional geometry to use for label obstacles, if different to mGeometry.
double mFixedAngle
fixed rotation for the label (instead of automatic choice)
QgsGeometry permissibleZone() const
Returns the label&#39;s permissible zone geometry.
void setIsObstacle(bool enabled)
Sets whether the feature will act as an obstacle for labels.
void setZIndex(double zIndex)
Sets the label&#39;s z-index.
const QSizeF & symbolSize() const
Returns the size of the rendered symbol associated with this feature, if applicable.
QSizeF mSymbolSize
Size of associated rendered symbol, if applicable.
GEOSGeometry * obstacleGeometry() const
Returns the label&#39;s obstacle geometry, if different to the feature geometry.
QVector< QgsPalLayerSettings::PredefinedPointPosition > mPredefinedPositionOrder
Ordered list of predefined positions for label (only for OrderedPositionsAroundPoint placement) ...
void setLayer(pal::Layer *layer)
Assign PAL layer to the label feature. Should be only used internally in PAL.
std::unique_ptr< GEOSGeometry, GeosDeleter > unique_ptr
Scoped GEOS pointer.
Definition: qgsgeos.h:79
bool hasFixedQuadrant() const
Returns whether the quadrant for the label is fixed.
Optional additional info about label (for curved labels)
Definition: feature.h:55
void setFixedAngle(double angle)
Sets angle in degrees of the fixed angle (relevant only if hasFixedAngle() returns true) ...
OffsetType
Behavior modifier for label offset and distance, only applies in some label placement modes...
void setPredefinedPositionOrder(const QVector< QgsPalLayerSettings::PredefinedPointPosition > &order)
Sets the priority ordered list of predefined positions for label candidates.
void setOffsetType(QgsPalLayerSettings::OffsetType type)
Sets the offset type, which determines how offsets and distance to label behaves. ...
void setDistLabel(double dist)
Applies to "around point" placement strategy or linestring features.
bool mAlwaysShow
whether to always show label - even in case of collisions
The QgsAbstractLabelProvider class is an interface class.
QgsPointXY mPositionOffset
offset of label from the feature (only for "offset from point" placement)
const QgsMargins & visualMargin() const
Returns the visual margin for the label feature.
void setFixedPosition(const QgsPointXY &point)
Sets coordinates of the fixed position (relevant only if hasFixedPosition() returns true) ...
bool mHasFixedAngle
whether mFixedAngle should be respected
QgsPointXY fixedPosition() const
Coordinates of the fixed position (relevant only if hasFixedPosition() returns true) ...
double zIndex() const
Returns the label&#39;s z-index.
Contains information about the context of a rendering operation.
double obstacleFactor() const
Returns the obstacle factor for the feature.
geos::unique_ptr mGeometry
Geometry of the feature to be labelled.
The QgsLabelFeature class describes a feature that should be used within the labeling engine...
double mPriority
Priority of the label.
QVector< QgsPalLayerSettings::PredefinedPointPosition > predefinedPositionOrder() const
Returns the priority ordered list of predefined positions for label candidates.
void setHasFixedAngle(bool enabled)
Sets whether the label should use a fixed angle instead of using angle from automatic placement...
void setRepeatDistance(double dist)
Applies only to linestring features - set after what distance (in map units) the labels should be rep...
double distLabel() const
Applies to "around point" placement strategy or linestring features.
void setHasFixedQuadrant(bool enabled)
Sets whether the quadrant for the label must be respected.
bool hasFixedAngle() const
Whether the label should use a fixed angle instead of using angle from automatic placement.
QgsGeometry mPermissibleZone
Optional geometry to use for label&#39;s permissible zone.
double mDistLabel
distance of label from the feature (only for "around point" placement or linestrings) ...
double mZIndex
Z-index of label (higher z-index labels are rendered on top of lower z-index labels) ...
void setArrangementFlags(pal::LineArrangementFlags flags)
Sets the feature&#39;s arrangement flags.
QString labelText() const
Text of the label.
double fixedAngle() const
Angle in degrees of the fixed angle (relevant only if hasFixedAngle() returns true) ...
QgsPalLayerSettings::OffsetType mOffsetType
Offset type for certain placement modes.
The QgsMargins class defines the four margins of a rectangle.
Definition: qgsmargins.h:37
void setQuadOffset(QPointF quadOffset)
Set which side of the point to use.
void setPriority(double priority)
Sets the priority for labeling the feature.
QgsFeatureId id() const
Identifier of the label (unique within the parent label provider)
pal::LineArrangementFlags arrangementFlags() const
Returns the feature&#39;s arrangement flags.
QPointF mQuadOffset
whether the side of the label is fixed (only for "around point" placement)