25 mIconSize( 5 ), mIconType( ICON_BOX ), mGeometryType( geomType )
27 mPen = QPen( QColor( 255, 0, 0 ) );
28 mBrush = QBrush( QColor( 255, 0, 0 ) );
37 if ( !mGeometry || !painter )
43 painter->translate( -pos() );
47 painter->setBrush( mBrush );
51 painter->setBrush( Qt::NoBrush );
53 painter->setPen( mPen );
56 std::unique_ptr< QgsAbstractGeometry > paintGeom( mGeometry->clone() );
59 paintGeom->draw( *painter );
67 while ( paintGeom->nextVertex( vertexId, vertex ) )
69 drawVertex( painter, vertex.
x(), vertex.
y() );
83 void QgsGeometryRubberBand::drawVertex( QPainter *p,
double x,
double y )
85 qreal s = ( mIconSize - 1 ) / 2.0;
93 p->drawLine( QLineF( x - s, y, x + s, y ) );
94 p->drawLine( QLineF( x, y - s, x, y + s ) );
98 p->drawLine( QLineF( x - s, y - s, x + s, y + s ) );
99 p->drawLine( QLineF( x - s, y + s, x + s, y - s ) );
103 p->drawLine( QLineF( x - s, y - s, x + s, y - s ) );
104 p->drawLine( QLineF( x + s, y - s, x + s, y + s ) );
105 p->drawLine( QLineF( x + s, y + s, x - s, y + s ) );
106 p->drawLine( QLineF( x - s, y + s, x - s, y - s ) );
110 p->drawRect( x - s, y - s, mIconSize, mIconSize );
114 p->drawEllipse( x - s, y - s, mIconSize, mIconSize );
121 mGeometry.reset( geom );
125 setRect( rubberBandRectangle() );
133 mGeometry->moveVertex(
id, newPos );
134 setRect( rubberBandRectangle() );
140 mBrush.setColor(
c );
150 mPen.setWidth( width );
155 mPen.setStyle( penStyle );
160 mBrush.setStyle( brushStyle );
165 mDrawVertices = isVerticesDrawn;
168 QgsRectangle QgsGeometryRubberBand::rubberBandRectangle()
const
171 qreal s = ( mIconSize - 1 ) / 2.0 * scale;
172 qreal p = mPen.width() * scale;
173 return mGeometry->boundingBox().buffered( s + p );
Abstract base class for all geometries.
void setStrokeColor(const QColor &c)
Sets stroke color for vertex markers.
~QgsGeometryRubberBand() override
@ ICON_X
A cross is used to highlight points (x)
@ ICON_NONE
No icon is used.
@ ICON_FULL_BOX
A full box is used to highlight points (■)
@ 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 (+)
QgsWkbTypes::GeometryType geometryType() const
Returns which geometry is handled by the rubber band, polygon or line.
void setBrushStyle(Qt::BrushStyle brushStyle)
Sets brush style.
void setGeometryType(const QgsWkbTypes::GeometryType &geometryType)
Sets which geometry is handled by the rubber band, polygon or line.
void setLineStyle(Qt::PenStyle penStyle)
Sets pen style.
virtual void setGeometry(QgsAbstractGeometry *geom)
Sets geometry (takes ownership). Geometry is expected to be in map coordinates.
void paint(QPainter *painter) override
function to be implemented by derived classes
void moveVertex(QgsVertexId id, const QgsPoint &newPos)
Moves vertex to new position (in map coordinates)
void setStrokeWidth(int width)
Sets stroke width.
void setVertexDrawingEnabled(bool isVerticesDrawn)
Sets whether the vertices are drawn.
QgsGeometryRubberBand(QgsMapCanvas *mapCanvas, QgsWkbTypes::GeometryType geomType=QgsWkbTypes::LineGeometry)
void setFillColor(const QColor &c)
Sets fill color for vertex markers.
An abstract class for items that can be placed on the map canvas.
QgsMapCanvas * mMapCanvas
pointer to map canvas
void setRect(const QgsRectangle &r, bool resetRotation=true)
sets canvas item rectangle in map units
Map canvas is a class for displaying all GIS data types on a canvas.
double mapUnitsPerPixel() const
Returns the mapUnitsPerPixel (map units per pixel) for the canvas.
const QgsMapToPixel * getCoordinateTransform()
Gets the current coordinate transform.
QgsPointXY transform(const QgsPointXY &p) const
Transform the point p from map (world) coordinates to device coordinates.
Point geometry type, with support for z-dimension and m-values.
A rectangle specified with double values.
Scoped object for saving and restoring a QPainter object's state.
GeometryType
The geometry types are used to group QgsWkbTypes::Type in a coarse way.
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
Utility class for identifying a unique vertex within a geometry.