QGIS API Documentation  3.10.0-A Coruña (6c816b4204)
qgsreferencedgeometry.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsreferencedgeometry.h
3  ----------------------
4  begin : June 2017
5  copyright : (C) 2017 by Nyall Dawson
6  email : nyall dot dawson at gmail dot com
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef QGSREFERENCEDGEOMETRY_H
19 #define QGSREFERENCEDGEOMETRY_H
20 
21 #include "qgis_sip.h"
22 #include "qgis_core.h"
24 #include "qgsrectangle.h"
25 
38 class CORE_EXPORT QgsReferencedGeometryBase
39 {
40  public:
41 
46 
52  QgsCoordinateReferenceSystem crs() const { return mCrs; }
53 
59  void setCrs( const QgsCoordinateReferenceSystem &crs ) { mCrs = crs; }
60 
61  private:
62 
64 
65 };
66 
73 {
74  public:
75 
81 
85  QgsReferencedRectangle() = default;
86 
88  operator QVariant() const
89  {
90  return QVariant::fromValue( *this );
91  }
92 
93  bool operator==( const QgsReferencedRectangle &other );
94  bool operator!=( const QgsReferencedRectangle &other );
95 
96 #ifdef SIP_RUN
97  SIP_PYOBJECT __repr__();
98  % MethodCode
99  QString str = QStringLiteral( "<QgsReferencedRectangle: %1 (%2)>" ).arg( sipCpp->asWktCoordinates(), sipCpp->crs().authid() );
100  sipRes = PyUnicode_FromString( str.toUtf8().constData() );
101  % End
102 #endif
103 
104 };
105 
107 
108 
114 {
115  public:
116 
122 
126  QgsReferencedPointXY() = default;
127 
129  operator QVariant() const
130  {
131  return QVariant::fromValue( *this );
132  }
133 
134  bool operator==( const QgsReferencedPointXY &other );
135  bool operator!=( const QgsReferencedPointXY &other );
136 
137 #ifdef SIP_RUN
138  SIP_PYOBJECT __repr__();
139  % MethodCode
140  QString str = QStringLiteral( "<QgsReferencedPointXY: %1 (%2)>" ).arg( sipCpp->asWkt(), sipCpp->crs().authid() );
141  sipRes = PyUnicode_FromString( str.toUtf8().constData() );
142  % End
143 #endif
144 
145 };
146 
148 
149 #endif // QGSREFERENCEDGEOMETRY_H
A rectangle specified with double values.
Definition: qgsrectangle.h:41
A class to represent a 2D point.
Definition: qgspointxy.h:43
A QgsPointXY with associated coordinate reference system.
const QgsCoordinateReferenceSystem & crs
QgsCoordinateReferenceSystem crs() const
Returns the associated coordinate reference system, or an invalid CRS if no reference system is set...
void setCrs(const QgsCoordinateReferenceSystem &crs)
Sets the associated crs.
Q_DECLARE_METATYPE(QgsMeshTimeSettings)
A QgsRectangle with associated coordinate reference system.
bool operator==(const QgsRectangle &r1) const
Comparison operator.
Definition: qgsrectangle.h:478
This class represents a coordinate reference system (CRS).
A base class for geometry primitives which are stored with an associated reference system...
bool operator!=(const QgsRectangle &r1) const
Comparison operator.
Definition: qgsrectangle.h:490