mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
|
|
class QgsMapCanvasItem : QGraphicsItem
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsmapcanvasitem.h>
|
|
%End
|
|
|
|
protected:
|
|
|
|
//! protected constructor: cannot be constructed directly
|
|
QgsMapCanvasItem(QgsMapCanvas* mapCanvas);
|
|
|
|
virtual ~QgsMapCanvasItem();
|
|
|
|
//! function to be implemented by derived classes
|
|
virtual void paint(QPainter * painter) = 0;
|
|
|
|
//! paint function called by map canvas
|
|
virtual void paint(QPainter * painter,
|
|
const QStyleOptionGraphicsItem * option,
|
|
QWidget * widget = 0);
|
|
|
|
//! schedules map canvas for repaint
|
|
void updateCanvas();
|
|
|
|
|
|
public:
|
|
|
|
//! called on changed extent or resize event to update position of the item
|
|
virtual void updatePosition();
|
|
|
|
//! default implementation for canvas items
|
|
virtual QRectF boundingRect() const;
|
|
|
|
//! sets current offset, to be called from QgsMapCanvas
|
|
void setPanningOffset(const QPoint& point);
|
|
|
|
//! returns canvas item rectangle
|
|
QgsRect rect() const;
|
|
|
|
//! sets canvas item rectangle
|
|
void setRect(const QgsRect& r);
|
|
|
|
//! transformation from screen coordinates to map coordinates
|
|
QgsPoint toMapCoords(const QPoint& point);
|
|
|
|
//! transformation from map coordinates to screen coordinates
|
|
QPointF toCanvasCoords(const QgsPoint& point);
|
|
|
|
};
|
|
|
|
|