QGIS/python/gui/auto_generated/qgsvertexmarker.sip.in
Nyall Dawson 3f6b490218 Sipify
2025-04-02 11:11:10 +10:00

127 lines
3.0 KiB
Plaintext

/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgsvertexmarker.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
%ModuleHeaderCode
// For ConvertToSubClassCode.
#include <qgsvertexmarker.h>
%End
class QgsVertexMarker : QgsMapCanvasItem
{
%Docstring(signature="appended")
A map canvas item for marking vertices of features using e.g. circles or
'x'.
%End
%TypeHeaderCode
#include "qgsvertexmarker.h"
%End
%ConvertToSubClassCode
if ( dynamic_cast<QgsVertexMarker *>( sipCpp ) )
sipType = sipType_QgsVertexMarker;
else
sipType = nullptr;
%End
public:
enum IconType
{
ICON_NONE,
ICON_CROSS,
ICON_X,
ICON_BOX,
ICON_CIRCLE,
ICON_DOUBLE_TRIANGLE,
ICON_TRIANGLE,
ICON_RHOMBUS,
ICON_INVERTED_TRIANGLE,
};
QgsVertexMarker( QgsMapCanvas *mapCanvas /TransferThis/ );
void setCenter( const QgsPointXY &point );
%Docstring
Sets the center ``point`` of the marker, in map coordinates.
.. seealso:: :py:func:`center`
%End
QgsPointXY center() const;
%Docstring
Returns the center point of the marker, in map coordinates.
.. seealso:: :py:func:`setCenter`
.. versionadded:: 3.18
%End
void setIconType( int iconType );
void setIconSize( int iconSize );
void setColor( const QColor &color );
%Docstring
Sets the stroke ``color`` for the marker.
.. seealso:: :py:func:`color`
.. seealso:: :py:func:`setFillColor`
%End
QColor color() const;
%Docstring
Returns the stroke color for the marker.
.. seealso:: :py:func:`setColor`
.. seealso:: :py:func:`fillColor`
%End
void setFillColor( const QColor &color );
%Docstring
Sets the fill ``color`` for the marker. This setting only applies to
some icon types.
.. seealso:: :py:func:`fillColor`
.. seealso:: :py:func:`setColor`
%End
QColor fillColor() const;
%Docstring
Returns the fill ``color`` for the marker. This setting only applies to
some icon types.
.. seealso:: :py:func:`setFillColor`
.. seealso:: :py:func:`color`
%End
void setPenWidth( int width );
virtual void paint( QPainter *p );
virtual QRectF boundingRect() const;
virtual void updatePosition();
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgsvertexmarker.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/