QGIS API Documentation  3.4.15-Madeira (e83d02e274)
qgsmapcanvassnappingutils.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsmapcanvassnappingutils.h
3  ---------------------
4  begin : December 2014
5  copyright : (C) 2014 by Martin Dobias
6  email : wonder dot sk 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 #ifndef QGSMAPCANVASSNAPPINGUTILS_H
16 #define QGSMAPCANVASSNAPPINGUTILS_H
17 
18 #include "qgssnappingutils.h"
19 #include "qgis_gui.h"
20 
21 #include "qgsmaptool.h"
22 
23 class QgsMapCanvas;
24 
25 class QProgressDialog;
26 
34 {
35  Q_OBJECT
36  public:
37  QgsMapCanvasSnappingUtils( QgsMapCanvas *canvas, QObject *parent = nullptr );
38 
39  protected:
40  void prepareIndexStarting( int count ) override;
41  void prepareIndexProgress( int index ) override;
42 
43  private slots:
44  void canvasMapSettingsChanged();
45  void canvasTransformContextChanged();
46  void canvasCurrentLayerChanged();
47  void canvasMapToolChanged();
48 
49  private:
50  QgsMapCanvas *mCanvas = nullptr;
51  QProgressDialog *mProgress = nullptr;
52 };
53 
54 
55 #endif // QGSMAPCANVASSNAPPINGUTILS_H
virtual void prepareIndexProgress(int index)
Called when finished indexing a layer. When index == count the indexing is complete.
Snapping utils instance that is connected to a canvas and updates the configuration (map settings + c...
Map canvas is a class for displaying all GIS data types on a canvas.
Definition: qgsmapcanvas.h:74
virtual void prepareIndexStarting(int count)
Called when starting to index - can be overridden and e.g. progress dialog can be provided...
This class has all the configuration of snapping and can return answers to snapping queries...