mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-26 00:02:08 -05:00
Checks whether a function declaration has parameters that are top level const. const values in declarations do not affect the signature of a function, so they should not be put there.
87 lines
2.6 KiB
Plaintext
87 lines
2.6 KiB
Plaintext
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/core/layout/qgslayoutitempolygon.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
class QgsLayoutItemPolygon: QgsLayoutNodesItem
|
|
{
|
|
%Docstring
|
|
Layout item for node based polygon shapes.
|
|
|
|
.. versionadded:: 3.0
|
|
%End
|
|
|
|
%TypeHeaderCode
|
|
#include "qgslayoutitempolygon.h"
|
|
%End
|
|
public:
|
|
|
|
QgsLayoutItemPolygon( QgsLayout *layout );
|
|
%Docstring
|
|
Constructor for QgsLayoutItemPolygon for the specified ``layout``.
|
|
%End
|
|
|
|
QgsLayoutItemPolygon( const QPolygonF &polygon, QgsLayout *layout );
|
|
%Docstring
|
|
Constructor for QgsLayoutItemPolygon for the specified ``polygon``
|
|
and ``layout``.
|
|
%End
|
|
|
|
static QgsLayoutItemPolygon *create( QgsLayout *layout ) /Factory/;
|
|
%Docstring
|
|
Returns a new polygon item for the specified ``layout``.
|
|
|
|
The caller takes responsibility for deleting the returned object.
|
|
%End
|
|
|
|
virtual int type() const;
|
|
|
|
virtual QIcon icon() const;
|
|
|
|
virtual QString displayName() const;
|
|
|
|
|
|
QgsFillSymbol *symbol();
|
|
%Docstring
|
|
Returns the fill symbol used to draw the shape.
|
|
|
|
.. seealso:: :py:func:`setSymbol`
|
|
%End
|
|
|
|
void setSymbol( QgsFillSymbol *symbol );
|
|
%Docstring
|
|
Sets the ``symbol`` used to draw the shape.
|
|
Ownership of ``symbol`` is not transferred.
|
|
|
|
.. seealso:: :py:func:`symbol`
|
|
%End
|
|
|
|
protected:
|
|
virtual bool _addNode( int indexPoint, QPointF newPoint, double radius );
|
|
|
|
virtual bool _removeNode( int nodeIndex );
|
|
|
|
virtual void _draw( QgsLayoutItemRenderContext &context, const QStyleOptionGraphicsItem *itemStyle = 0 );
|
|
|
|
virtual void _readXmlStyle( const QDomElement &elmt, const QgsReadWriteContext &context );
|
|
|
|
virtual void _writeXmlStyle( QDomDocument &doc, QDomElement &elmt, const QgsReadWriteContext &context ) const;
|
|
|
|
|
|
};
|
|
|
|
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/core/layout/qgslayoutitempolygon.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
************************************************************************/
|