QGIS/python/gui/qgsvertexmarker.sip
Juergen E. Fischer a90be95f7b sip sync
2016-02-14 03:50:49 +01:00

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();
};