QGIS API Documentation 4.1.0-Master (60fea48833c)
Loading...
Searching...
No Matches
util.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 PAL_UTIL_H
31#define PAL_UTIL_H
32
33
34#include <memory>
35#include <vector>
36
37#include <QVector>
38
39#define SIP_NO_FILE
40
41typedef struct GEOSGeom_t GEOSGeometry;
42
43namespace pal
44{
45
46 class LabelPosition;
47 class Layer;
48 class FeaturePart;
49 class PointSet;
50
56 class Feats
57 {
58 public:
59 Feats() = default;
60
61 FeaturePart *feature = nullptr;
62 PointSet *shape = nullptr;
63 double priority = 0;
64 std::vector< std::unique_ptr< LabelPosition > > candidates;
65 };
66
67
68 struct ElemTrans
69 {
70 int feat;
73 };
74
75 struct Point
76 {
77 double x, y;
78 };
79
80#define EPSILON 1e-9
81
88 class Util
89 {
90 public:
91 static std::optional<QVector<const GEOSGeometry *>> unmulti( const GEOSGeometry *the_geom );
92 };
93
94
95} //namespace pal
96
97Q_DECLARE_TYPEINFO( pal::Point, Q_PRIMITIVE_TYPE );
98
99#endif
std::vector< std::unique_ptr< LabelPosition > > candidates
Definition util.h:64
double priority
Definition util.h:63
Feats()=default
PointSet * shape
Definition util.h:62
FeaturePart * feature
Definition util.h:61
Represents a part of a label feature.
Definition feature.h:60
The underlying raw pal geometry class.
Definition pointset.h:76
Pal utilities.
Definition util.h:89
static std::optional< QVector< const GEOSGeometry * > > unmulti(const GEOSGeometry *the_geom)
Definition util.cpp:39
int new_label
Definition util.h:72
int old_label
Definition util.h:71
double y
Definition util.h:77
double x
Definition util.h:77
struct GEOSGeom_t GEOSGeometry
Definition util.h:41
Q_DECLARE_TYPEINFO(pal::Point, Q_PRIMITIVE_TYPE)