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
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgsmapcanvasitem.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsMapCanvasItem : QGraphicsItem
{
%Docstring(signature="appended")
An abstract class for items that can be placed on the map canvas.
%End
%TypeHeaderCode
#include "qgsmapcanvasitem.h"
%End
protected:
QgsMapCanvasItem( QgsMapCanvas *mapCanvas /TransferThis/ );
%Docstring
protected constructor: cannot be constructed directly
%End
~QgsMapCanvasItem();
virtual void paint( QPainter *painter ) = 0;
%Docstring
function to be implemented by derived classes
%End
virtual void paint( QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0 );
void updateCanvas();
%Docstring
schedules map canvas for repaint
%End
bool setRenderContextVariables( QPainter *p, QgsRenderContext &context ) const;
%Docstring
Sets render context parameters
:param p: painter for rendering
:param context: out: configured context
:return: ``True`` in case of success
%End
public:
virtual void updatePosition();
%Docstring
called on changed extent or resize event to update position of the item
%End
virtual QRectF boundingRect() const;
QgsRectangle rect() const;
%Docstring
returns canvas item rectangle in map units
%End
void setRect( const QgsRectangle &r, bool resetRotation = true );
%Docstring
sets canvas item rectangle in map units
%End
QgsPointXY toMapCoordinates( QPoint point ) const;
%Docstring
transformation from screen coordinates to map coordinates
%End
QPointF toCanvasCoordinates( const QgsPointXY &point ) const;
%Docstring
transformation from map coordinates to screen coordinates
%End
protected:
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgsmapcanvasitem.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|