QGIS API Documentation  2.2.0-Valmiera
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgis.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgis.h - QGIS namespace
3  -------------------
4  begin : Sat Jun 30 2002
5  copyright : (C) 2002 by Gary E.Sherman
6  email : sherman at mrcc.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 QGIS_H
19 #define QGIS_H
20 
21 #include <QEvent>
22 #include <QString>
23 #include <QRegExp>
24 #include <QMetaType>
25 #include <QVariant>
26 #include <stdlib.h>
27 #include <cfloat>
28 #include <cmath>
29 #include <qnumeric.h>
30 
34 class CORE_EXPORT QGis
35 {
36  public:
37  // Version constants
38  //
39  // Version string
40  static const char* QGIS_VERSION;
41  // Version number used for comparing versions using the "Check QGIS Version" function
42  static const int QGIS_VERSION_INT;
43  // Release name
44  static const char* QGIS_RELEASE_NAME;
45  // The development version
46  static const char* QGIS_DEV_VERSION;
47 
48  // Enumerations
49  //
50 
52  // Feature types
53  enum WkbType
54  {
55  WKBUnknown = 0,
56  WKBPoint = 1,
62  WKBNoGeometry = 100, //attributes only
63  WKBPoint25D = 0x80000001,
69  };
70 
71  static WkbType singleType( WkbType type )
72  {
73  switch ( type )
74  {
75  case WKBMultiPoint: return WKBPoint;
76  case WKBMultiLineString: return WKBLineString;
77  case WKBMultiPolygon: return WKBPolygon;
78  case WKBMultiPoint25D: return WKBPoint25D;
79  case WKBMultiLineString25D: return WKBLineString25D;
80  case WKBMultiPolygon25D: return WKBPolygon25D;
81  default: return type;
82  }
83  }
84 
85  static WkbType multiType( WkbType type )
86  {
87  switch ( type )
88  {
89  case WKBPoint: return WKBMultiPoint;
90  case WKBLineString: return WKBMultiLineString;
91  case WKBPolygon: return WKBMultiPolygon;
92  case WKBPoint25D: return WKBMultiPoint25D;
93  case WKBLineString25D: return WKBMultiLineString25D;
94  case WKBPolygon25D: return WKBMultiPolygon25D;
95  default: return type;
96  }
97  }
98 
99  static WkbType flatType( WkbType type )
100  {
101  switch ( type )
102  {
103  case WKBPoint25D: return WKBPoint;
104  case WKBLineString25D: return WKBLineString;
105  case WKBPolygon25D: return WKBPolygon;
106  case WKBMultiPoint25D: return WKBMultiPoint;
107  case WKBMultiLineString25D: return WKBMultiLineString;
108  case WKBMultiPolygon25D: return WKBMultiPolygon;
109  default: return type;
110  }
111  }
112 
113  static bool isSingleType( WkbType type )
114  {
115  switch ( flatType( type ) )
116  {
117  case WKBPoint:
118  case WKBLineString:
119  case WKBPolygon:
120  return true;
121  default:
122  return false;
123  }
124  }
125 
126  static bool isMultiType( WkbType type )
127  {
128  switch ( flatType( type ) )
129  {
130  case WKBMultiPoint:
131  case WKBMultiLineString:
132  case WKBMultiPolygon:
133  return true;
134  default:
135  return false;
136  }
137  }
138 
139  static int wkbDimensions( WkbType type )
140  {
141  switch ( type )
142  {
143  case WKBUnknown: return 0;
144  case WKBNoGeometry: return 0;
145  case WKBPoint25D: return 3;
146  case WKBLineString25D: return 3;
147  case WKBPolygon25D: return 3;
148  case WKBMultiPoint25D: return 3;
149  case WKBMultiLineString25D: return 3;
150  case WKBMultiPolygon25D: return 3;
151  default: return 2;
152  }
153  }
154 
156  {
161  NoGeometry
162  };
163 
165  static const char *vectorGeometryType( GeometryType type )
166  {
167  switch ( type )
168  {
169  case Point: return "Point";
170  case Line: return "Line";
171  case Polygon: return "Polygon";
172  case UnknownGeometry: return "Unknown geometry";
173  case NoGeometry: return "No geometry";
174  default: return "Invalid type";
175  }
176  }
177 
179  static const char *featureType( WkbType type )
180  {
181  switch ( type )
182  {
183  case WKBUnknown: return "WKBUnknown";
184  case WKBPoint: return "WKBPoint";
185  case WKBLineString: return "WKBLineString";
186  case WKBPolygon: return "WKBPolygon";
187  case WKBMultiPoint: return "WKBMultiPoint";
188  case WKBMultiLineString: return "WKBMultiLineString";
189  case WKBMultiPolygon: return "WKBMultiPolygon";
190  case WKBNoGeometry: return "WKBNoGeometry";
191  case WKBPoint25D: return "WKBPoint25D";
192  case WKBLineString25D: return "WKBLineString25D";
193  case WKBPolygon25D: return "WKBPolygon25D";
194  case WKBMultiPoint25D: return "WKBMultiPoint25D";
195  case WKBMultiLineString25D: return "WKBMultiLineString25D";
196  case WKBMultiPolygon25D: return "WKBMultiPolygon25D";
197  default: return "invalid wkbtype";
198  }
199  }
200 
204  enum DataType
205  { UnknownDataType = 0, Byte = 1, UInt16 = 2, Int16 = 3, UInt32 = 4, Int32 = 5, Float32 = 6, Float64 = 7, CInt16 = 8, CInt32 = 9, CFloat32 = 10, CFloat64 = 11, ARGB32 = 12, ARGB32_Premultiplied = 13
222  };
223 
224 
229  enum UnitType
230  {
231  Meters = 0,
232  Feet = 1,
233  Degrees = 2, //for 1.0 api backwards compatibility
234  UnknownUnit = 3,
235 
236  // for [1.4;1.8] api compatibility
237  DecimalDegrees = 2, // was 2
238  DegreesMinutesSeconds = 2, // was 4
239  DegreesDecimalMinutes = 2, // was 5
240  NauticalMiles = 7
241  };
242 
244  // Added in version 2.0
245  static QString toLiteral( QGis::UnitType unit );
247  // Added in version 2.0
248  static UnitType fromLiteral( QString literal, QGis::UnitType defaultType = UnknownUnit );
250  // Added in version 2.0
251  static QString tr( QGis::UnitType unit );
253  static double fromUnitToUnitFactor( QGis::UnitType fromUnit, QGis::UnitType toUnit );
254 
257  {
258  // These first two are useful for threads to alert their parent data providers
259 
261  ProviderExtentCalcEvent = ( QEvent::User + 1 ),
262 
264  ProviderCountCalcEvent
265  };
266 
267  static const double DEFAULT_IDENTIFY_RADIUS;
268 
270  static const float DEFAULT_MAPTOPIXEL_THRESHOLD;
271 
272  private:
273  // String representation of unit types (set in qgis.cpp)
274  static const char *qgisUnitTypes[];
275 
276 };
277 
278 // hack to workaround warnings when casting void pointers
279 // retrieved from QLibrary::resolve to function pointers.
280 // It's assumed that this works on all systems supporting
281 // QLibrary
282 inline void ( *cast_to_fptr( void *p ) )()
283 {
284  union
285  {
286  void *p;
287  void ( *f )();
288  } u;
289 
290  u.p = p;
291  return u.f;
292 }
293 
294 //
295 // return a string representation of a double
296 //
297 inline QString qgsDoubleToString( const double &a )
298 {
299  return QString::number( a, 'f', 17 ).remove( QRegExp( "\\.?0+$" ) );
300 }
301 
302 //
303 // compare two doubles (but allow some difference)
304 //
305 inline bool qgsDoubleNear( double a, double b, double epsilon = 4 * DBL_EPSILON )
306 {
307  const double diff = a - b;
308  return diff > -epsilon && diff <= epsilon;
309 }
310 
311 //
312 // compare two doubles using specified number of significant digits
313 //
314 inline bool qgsDoubleNearSig( double a, double b, int significantDigits = 10 )
315 {
316  // The most simple would be to print numbers as %.xe and compare as strings
317  // but that is probably too costly
318  // Then the fastest would be to set some bits directly, but little/big endian
319  // has to be considered (maybe TODO)
320  // Is there a better way?
321  int aexp, bexp;
322  double ar = frexp( a, &aexp );
323  double br = frexp( b, &bexp );
324 
325  return aexp == bexp &&
326  qRound( ar * pow( 10.0, significantDigits ) ) == qRound( br * pow( 10.0, significantDigits ) ) ;
327 }
328 
329 bool qgsVariantLessThan( const QVariant& lhs, const QVariant& rhs );
330 
331 bool qgsVariantGreaterThan( const QVariant& lhs, const QVariant& rhs );
332 
333 QString qgsVsiPrefix( QString path );
334 
339 void CORE_EXPORT *qgsMalloc( size_t size );
340 
347 void CORE_EXPORT *qgsCalloc( size_t nmemb, size_t size );
348 
352 void CORE_EXPORT qgsFree( void *ptr );
353 
357 extern CORE_EXPORT const QString GEOWKT;
358 extern CORE_EXPORT const QString PROJECT_SCALES;
359 
361 extern CORE_EXPORT const QString GEOPROJ4;
363 const long GEOSRID = 4326;
365 const long GEOCRS_ID = 3452;
367 const long GEO_EPSG_CRS_ID = 4326;
369 extern CORE_EXPORT const QString GEO_EPSG_CRS_AUTHID;
371 const int PROJ_PREFIX_LEN = 6;
373 const int ELLPS_PREFIX_LEN = 7;
375 const int LAT_PREFIX_LEN = 7;
378 const int USER_CRS_START_ID = 100000;
379 
381 // Added in version 2.0
382 extern CORE_EXPORT const QString GEO_NONE;
383 
384 //
385 // Constants for point symbols
386 //
387 
389 const double MINIMUM_POINT_SIZE = 0.1;
391 const double DEFAULT_POINT_SIZE = 2.0;
392 const double DEFAULT_LINE_WIDTH = 0.26;
393 
395 const double DEFAULT_SEGMENT_EPSILON = 1e-8;
396 
397 typedef QMap<QString, QString> QgsStringMap;
398 
405 typedef unsigned long long qgssize;
406 
407 // FIXME: also in qgisinterface.h
408 #ifndef QGISEXTERN
409 #ifdef WIN32
410 # define QGISEXTERN extern "C" __declspec( dllexport )
411 # ifdef _MSC_VER
412 // do not warn about C bindings returing QString
413 # pragma warning(disable:4190)
414 # endif
415 #else
416 # define QGISEXTERN extern "C"
417 #endif
418 #endif
419 #endif