QGIS API Documentation 3.41.0-Master (af5edcb665c)
Loading...
Searching...
No Matches
qgsadvanceddigitizingcanvasitem.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsadvanceddigitizingcanvasitem.h - map canvas item for CAD tools
3 ----------------------
4 begin : October 2014
5 copyright : (C) Denis Rouzaud
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 QGSADVANCEDDIGITIZINGCANVASITEM_H
17#define QGSADVANCEDDIGITIZINGCANVASITEM_H
18
19#include <QPen>
20
21#include "qgsmapcanvasitem.h"
22#include "qgis_gui.h"
23
24
26
27#ifdef SIP_RUN
28//%ModuleHeaderCode
29// For ConvertToSubClassCode.
31//%End
32#endif
33
39{
40#ifdef SIP_RUN
42 if ( dynamic_cast<QgsAdvancedDigitizingCanvasItem *>( sipCpp ) )
43 sipType = sipType_QgsAdvancedDigitizingCanvasItem;
44 else
45 sipType = nullptr;
47#endif
48
49 public:
51
52 void paint( QPainter *painter ) override;
53 void updatePosition() override;
54
55 private:
56 QPen mLockedPen;
57 QPen mConstruction1Pen;
58 QPen mConstruction2Pen;
59 QPen mSnapPen;
60 QPen mSnapLinePen;
61 QPen mCursorPen;
62 QPen mConstructionGuidesPen;
63 QgsAdvancedDigitizingDockWidget *mAdvancedDigitizingDockWidget = nullptr;
64};
65
66#endif // QGSADVANCEDDIGITIZINGCANVASITEM_H
The QgsAdvancedDigitizingCanvasItem class draws the graphical elements of the CAD tools (.
The QgsAdvancedDigitizingDockWidget class is a dockable widget used to handle the CAD tools on top of...
An abstract class for items that can be placed on the map canvas.
virtual void paint(QPainter *painter)=0
function to be implemented by derived classes
virtual void updatePosition()
called on changed extent or resize event to update position of the item
Map canvas is a class for displaying all GIS data types on a canvas.
#define SIP_CONVERT_TO_SUBCLASS_CODE(code)
Definition qgis_sip.h:191
#define SIP_END
Definition qgis_sip.h:208