QGIS API Documentation 3.41.0-Master (cea29feecf2)
Loading...
Searching...
No Matches
qgsgeometryrubberband.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsgeometryrubberband.h
3 -----------------------
4 begin : December 2014
5 copyright : (C) 2014 by Marco Hugentobler
6 email : marco at sourcepole dot ch
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 QGSGEOMETRYRUBBERBAND_H
19#define QGSGEOMETRYRUBBERBAND_H
20
21#include "qgsmapcanvasitem.h"
22#include "qgswkbtypes.h"
23#include <QBrush>
24#include <QPen>
25#include "qgis_gui.h"
26
27#include "qgscompoundcurve.h"
28#include "qgscurvepolygon.h"
29#include "qgscircularstring.h"
30#include "qgslinestring.h"
31#include "qgspoint.h"
32
33#ifdef SIP_RUN
34//%ModuleHeaderCode
35// For ConvertToSubClassCode.
37//%End
38#endif
39
41class QgsPoint;
42struct QgsVertexId;
43
48class GUI_EXPORT QgsGeometryRubberBand : public QgsMapCanvasItem
49{
50#ifdef SIP_RUN
52 if ( dynamic_cast<QgsGeometryRubberBand *>( sipCpp ) )
53 sipType = sipType_QgsGeometryRubberBand;
54 else
55 sipType = nullptr;
57#endif
58
59 public:
61 {
62
67
72
77
82
87
91 ICON_FULL_BOX
92 };
93
98 ~QgsGeometryRubberBand() override;
99
101 virtual void setGeometry( QgsAbstractGeometry *geom SIP_TRANSFER );
103 const QgsAbstractGeometry *geometry() { return mGeometry.get(); }
105 void moveVertex( QgsVertexId id, const QgsPoint &newPos );
107 void setFillColor( const QColor &c );
109 void setStrokeColor( const QColor &c );
111 void setStrokeWidth( int width );
113 void setLineStyle( Qt::PenStyle penStyle );
115 void setBrushStyle( Qt::BrushStyle brushStyle );
117 void setIconType( IconType iconType ) { mIconType = iconType; }
119 void setVertexDrawingEnabled( bool isVerticesDrawn );
120 void updatePosition() override;
121
122 protected:
123 void paint( QPainter *painter ) override;
124
126 Qgis::GeometryType geometryType() const;
127
129 void setGeometryType( Qgis::GeometryType geometryType );
130
131 private:
132 std::unique_ptr<QgsAbstractGeometry> mGeometry = nullptr;
133 QBrush mBrush;
134 QPen mPen;
135 int mIconSize;
136 IconType mIconType;
137 Qgis::GeometryType mGeometryType;
138 bool mDrawVertices = true;
139
140 void drawVertex( QPainter *p, double x, double y );
141 QgsRectangle rubberBandRectangle() const;
142};
143
144
145#endif // QGSGEOMETRYRUBBERBAND_H
GeometryType
The geometry types are used to group Qgis::WkbType in a coarse way.
Definition qgis.h:337
Abstract base class for all geometries.
A rubberband class for QgsAbstractGeometry (considering curved geometries).
const QgsAbstractGeometry * geometry()
Returns a pointer to the geometry.
@ ICON_X
A cross is used to highlight points (x)
@ ICON_CIRCLE
A circle is used to highlight points (○)
@ ICON_BOX
A box is used to highlight points (□)
@ ICON_CROSS
A cross is used to highlight points (+)
void setIconType(IconType iconType)
Sets vertex marker icon type.
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.
Point geometry type, with support for z-dimension and m-values.
Definition qgspoint.h:49
A rectangle specified with double values.
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
#define SIP_CONVERT_TO_SUBCLASS_CODE(code)
Definition qgis_sip.h:191
#define SIP_TRANSFER
Definition qgis_sip.h:36
#define SIP_END
Definition qgis_sip.h:208
Utility class for identifying a unique vertex within a geometry.
Definition qgsvertexid.h:30