mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
40 lines
608 B
Plaintext
40 lines
608 B
Plaintext
|
|
class QgsVertexMarker : QgsMapCanvasItem
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsvertexmarker.h>
|
|
%End
|
|
|
|
public:
|
|
|
|
//! Icons
|
|
enum IconType
|
|
{
|
|
ICON_NONE,
|
|
ICON_CROSS,
|
|
ICON_X,
|
|
ICON_BOX,
|
|
ICON_CIRCLE
|
|
};
|
|
|
|
QgsVertexMarker( QgsMapCanvas* mapCanvas /TransferThis/ );
|
|
|
|
void setCenter( const QgsPoint& point );
|
|
|
|
void setIconType( int iconType );
|
|
|
|
void setIconSize( int iconSize );
|
|
|
|
void setColor( const QColor& color );
|
|
|
|
void setPenWidth( int width );
|
|
|
|
void paint( QPainter* p );
|
|
|
|
QRectF boundingRect() const;
|
|
|
|
virtual void updatePosition();
|
|
|
|
};
|
|
|