QGIS API Documentation  2.0.1-Dufour
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgstolerance.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgstolerance.h - wrapper for tolerance handling
3  ----------------------
4  begin : March 2009
5  copyright : (C) 2009 by Richard Kostecky
6  email : csf.kostej 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 
16 #ifndef QGSTOLERANCE_H
17 #define QGSTOLERANCE_H
18 #include "qgsmaptopixel.h"
19 #include "qgsmaprenderer.h"
20 #include "qgsmaplayer.h"
21 #include "qgspoint.h"
22 
28 class CORE_EXPORT QgsTolerance
29 {
30 
31  public:
33  enum UnitType
34  {
38  Pixels
39  };
40 
46  static double vertexSearchRadius( QgsMapLayer* layer, QgsMapRenderer* renderer );
47 
53  static double defaultTolerance( QgsMapLayer* layer, QgsMapRenderer* renderer );
54 
63  static double toleranceInMapUnits( double tolerance, QgsMapLayer* layer, QgsMapRenderer* renderer, UnitType units = MapUnits );
64 
65  private:
66  static double computeMapUnitPerPixel( QgsMapLayer* layer, QgsMapRenderer* renderer );
67  static QgsPoint toLayerCoordinates( QgsMapLayer* layer, QgsMapRenderer* renderer, const QPoint& point );
68 
69 };
70 
71 #endif