1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgssnaptogridcanvasitem.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
%ModuleHeaderCode
// For ConvertToSubClassCode.
#include <qgssnaptogridcanvasitem.h>
%End
class QgsSnapToGridCanvasItem : QgsMapCanvasItem
{
%Docstring(signature="appended")
Shows a grid on the map canvas given a spatial resolution.
.. versionadded:: 3.4
%End
%TypeHeaderCode
#include "qgssnaptogridcanvasitem.h"
%End
%ConvertToSubClassCode
if ( dynamic_cast<QgsSnapToGridCanvasItem *>( sipCpp ) )
{
sipType = sipType_QgsSnapToGridCanvasItem;
// We need to tweak the pointer as sip believes it is single inheritance
// from QgsMapCanvasItem, but the raw address of QgsSnapToGridCanvasItem (sipCpp)
// is actually a QObject
*sipCppRet = dynamic_cast<QgsSnapToGridCanvasItem *>( sipCpp );
}
else
sipType = nullptr;
%End
public:
QgsSnapToGridCanvasItem( QgsMapCanvas *mapCanvas /TransferThis/ );
%Docstring
Will automatically be added to the ``mapCanvas``.
%End
virtual void paint( QPainter *painter );
QgsPointXY point() const;
%Docstring
A point that will be highlighted on the map canvas. The point needs to
be in map coordinates. The closest point on the grid will be
highlighted.
%End
void setPoint( const QgsPointXY &point );
%Docstring
A point that will be highlighted on the map canvas. The point needs to
be in map coordinates. The closest point on the grid will be
highlighted.
%End
double precision() const;
%Docstring
The resolution of the grid in map units. If a crs has been specified it
will be in CRS units.
%End
void setPrecision( double precision );
%Docstring
The resolution of the grid in map units. If a crs has been specified it
will be in CRS units.
%End
QgsCoordinateReferenceSystem crs() const;
%Docstring
The CRS in which the grid should be calculated. By default will be an
invalid :py:class:`QgsCoordinateReferenceSystem` and as such equal to
the CRS of the map canvas.
%End
void setCrs( const QgsCoordinateReferenceSystem &crs );
%Docstring
The CRS in which the grid should be calculated. By default will be an
invalid :py:class:`QgsCoordinateReferenceSystem` and as such equal to
the CRS of the map canvas.
%End
bool enabled() const;
%Docstring
Enable this item. It will be hidden if disabled.
%End
void setEnabled( bool enabled );
%Docstring
Enable this item. It will be hidden if disabled.
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgssnaptogridcanvasitem.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|