QGIS API Documentation  2.18.21-Las Palmas (9fba24a)
feature.h
Go to the documentation of this file.
1 /*
2  * libpal - Automated Placement of Labels Library
3  *
4  * Copyright (C) 2008 Maxence Laurent, MIS-TIC, HEIG-VD
5  * University of Applied Sciences, Western Switzerland
6  * http://www.hes-so.ch
7  *
8  * Contact:
9  * maxence.laurent <at> heig-vd <dot> ch
10  * or
11  * eric.taillard <at> heig-vd <dot> ch
12  *
13  * This file is part of libpal.
14  *
15  * libpal is free software: you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation, either version 3 of the License, or
18  * (at your option) any later version.
19  *
20  * libpal is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with libpal. If not, see <http://www.gnu.org/licenses/>.
27  *
28  */
29 
30 #ifndef FEATURE_H
31 #define FEATURE_H
32 
33 #include "qgsgeometry.h"
34 #include "pointset.h"
35 #include "util.h"
36 #include "labelposition.h"
37 #include <iostream>
38 #include <fstream>
39 #include <cmath>
40 #include <QString>
41 
42 #include "qgslabelfeature.h"
43 
49 namespace pal
50 {
52  class CORE_EXPORT LabelInfo
53  {
54  public:
55  typedef struct
56  {
57  double width;
58  } CharacterInfo;
59 
60  LabelInfo( int num, double height, double maxinangle = 20.0, double maxoutangle = -20.0 )
61  {
62  max_char_angle_inside = maxinangle;
63  // outside angle should be negative
64  max_char_angle_outside = maxoutangle > 0 ? -maxoutangle : maxoutangle;
65  label_height = height;
66  char_num = num;
67  char_info = new CharacterInfo[num];
68  }
69  ~LabelInfo() { delete [] char_info; }
70 
73  double label_height;
74  int char_num;
76  private:
77 
78  LabelInfo( const LabelInfo& rh );
79  LabelInfo& operator=( const LabelInfo& rh );
80  };
81 
82  class LabelPosition;
83  class FeaturePart;
84 
91  class CORE_EXPORT FeaturePart : public PointSet
92  {
93 
94  public:
95 
100  FeaturePart( QgsLabelFeature* lf, const GEOSGeometry* geom );
101 
102  FeaturePart( const FeaturePart& other );
103 
106  virtual ~FeaturePart();
107 
110  QgsLabelFeature* feature() { return mLF; }
111 
114  Layer* layer();
115 
118  QgsFeatureId featureId() const;
119 
128  int createCandidates( QList<LabelPosition *> &lPos, double bboxMin[2], double bboxMax[2], PointSet *mapShape, RTree<LabelPosition*, double, 2, double>* candidates );
129 
137  int createCandidatesAroundPoint( double x, double y, QList<LabelPosition *> &lPos, double angle );
138 
146  int createCandidatesOverPoint( double x, double y, QList<LabelPosition *> &lPos, double angle );
147 
155  int createCandidatesAtOrderedPositionsOverPoint( double x, double y, QList<LabelPosition *> &lPos, double angle );
156 
162  int createCandidatesAlongLine( QList<LabelPosition *> &lPos, PointSet *mapShape );
163 
170  int createCandidatesAlongLineNearStraightSegments( QList<LabelPosition *> &lPos, PointSet *mapShape );
171 
180  int createCandidatesAlongLineNearMidpoint( QList<LabelPosition *> &lPos, PointSet *mapShape, double initialCost = 0.0 );
181 
192  LabelPosition* curvedPlacementAtOffset( PointSet* path_positions, double* path_distances,
193  int& orientation, int index, double distance, bool& reversed, bool& flip );
194 
200  int createCurvedCandidatesAlongLine( QList<LabelPosition *> &lPos, PointSet* mapShape );
201 
207  int createCandidatesForPolygon( QList<LabelPosition *> &lPos, PointSet *mapShape );
208 
214  bool hasSameLabelFeatureAs( FeaturePart* part ) const;
215 
216 #if 0
217 
221  void print();
222 #endif
223 
224  double getLabelWidth() const { return mLF->size().width(); }
225  double getLabelHeight() const { return mLF->size().height(); }
226  double getLabelDistance() const { return mLF->distLabel(); }
227 
229  bool hasFixedRotation() const { return mLF->hasFixedAngle(); }
230 
232  double fixedAngle() const { return mLF->fixedAngle(); }
233 
235  bool hasFixedPosition() const { return mLF->hasFixedPosition(); }
236 
239  bool alwaysShow() const { return mLF->alwaysShow(); }
240 
242  bool isObstacle() const { return mLF->isObstacle(); }
243 
246  double obstacleFactor() const { return mLF->obstacleFactor(); }
247 
249  double repeatDistance() const { return mLF->repeatDistance(); }
250 
252  int getNumSelfObstacles() const { return mHoles.count(); }
254  FeaturePart* getSelfObstacle( int i ) { return mHoles.at( i ); }
255 
257  bool isConnected( FeaturePart* p2 );
258 
261  bool mergeWithFeaturePart( FeaturePart* other );
262 
263  void addSizePenalty( int nbp, QList<LabelPosition *> &lPos, double bbx[4], double bby[4] );
264 
270  double calculatePriority() const;
271 
273  bool showUprightLabels() const;
274 
276  bool nextCharPosition( double charWidth, double segment_length, PointSet* path_positions, int& index, double& distance,
277  double& start_x, double& start_y, double& end_x, double& end_y ) const;
278 
279  protected:
280 
283 
285  void extractCoords( const GEOSGeometry* geom );
286 
287  private:
288 
289  LabelPosition::Quadrant quadrantFromOffset() const;
290  };
291 
292 } // end namespace pal
293 
294 #endif
static unsigned index
double obstacleFactor() const
Returns the feature&#39;s obstacle factor, which represents the penalty incurred for a label to overlap t...
Definition: feature.h:246
double fixedAngle() const
Returns the fixed angle for the feature&#39;s label.
Definition: feature.h:232
QList< FeaturePart * > mHoles
Definition: feature.h:282
double max_char_angle_outside
Definition: feature.h:72
QgsLabelFeature * feature()
Returns the parent feature.
Definition: feature.h:110
bool hasFixedRotation() const
Returns true if the feature&#39;s label has a fixed rotation.
Definition: feature.h:229
A set of features which influence the labelling process.
Definition: layer.h:58
bool alwaysShow() const
Returns true if the feature&#39;s label should always been shown, even when it collides with other labels...
Definition: feature.h:239
int getNumSelfObstacles() const
Get number of holes (inner rings) - they are considered as obstacles.
Definition: feature.h:252
LabelInfo(int num, double height, double maxinangle=20.0, double maxoutangle=-20.0)
Definition: feature.h:60
double getLabelDistance() const
Definition: feature.h:226
CharacterInfo * char_info
Definition: feature.h:75
double repeatDistance() const
Returns the distance between repeating labels for this feature.
Definition: feature.h:249
bool isObstacle() const
Returns true if the feature should act as an obstacle to labels.
Definition: feature.h:242
Optional additional info about label (for curved labels)
Definition: feature.h:52
double label_height
Definition: feature.h:73
double getLabelHeight() const
Definition: feature.h:225
Main class to handle feature.
Definition: feature.h:91
double ANALYSIS_EXPORT angle(Point3D *p1, Point3D *p2, Point3D *p3, Point3D *p4)
Calculates the angle between two segments (in 2 dimension, z-values are ignored)
bool hasFixedPosition() const
Returns true if the feature&#39;s label has a fixed position.
Definition: feature.h:235
The QgsLabelFeature class describes a feature that should be used within the labeling engine...
double max_char_angle_inside
Definition: feature.h:71
FeaturePart * getSelfObstacle(int i)
Get hole (inner ring) - considered as obstacle.
Definition: feature.h:254
double getLabelWidth() const
Definition: feature.h:224
LabelPosition is a candidate feature label position.
Definition: labelposition.h:51
QgsLabelFeature * mLF
Definition: feature.h:281
qint64 QgsFeatureId
Definition: qgsfeature.h:31
Quadrant
Position of label candidate relative to feature.
Definition: labelposition.h:61
int char_num
Definition: feature.h:74