mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 19:55:53 +01:00
58 lines
1.1 KiB
C++
58 lines
1.1 KiB
C++
#ifndef MAPITEM_H
|
|
#define MAPITEM_H
|
|
|
|
#include "planeitem.h"
|
|
|
|
class MapAction;
|
|
|
|
class MapItem : public QObject, public PlaneItem
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MapItem(MapAction *action, Map *map, GraphicsItem *parent = 0);
|
|
|
|
QPainterPath shape() const {return _painterPath;}
|
|
QRectF boundingRect() const {return _painterPath.boundingRect();}
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
|
|
QWidget *widget);
|
|
|
|
RectC bounds() const {return _bounds;}
|
|
void setMap(Map *map);
|
|
|
|
void setColor(const QColor &color);
|
|
void setOpacity(qreal opacity);
|
|
void setWidth(qreal width);
|
|
void setStyle(Qt::PenStyle style);
|
|
void setDigitalZoom(int zoom);
|
|
|
|
QString info() const;
|
|
|
|
signals:
|
|
void triggered();
|
|
|
|
protected:
|
|
void hoverEnterEvent(QGraphicsSceneHoverEvent *event);
|
|
void hoverLeaveEvent(QGraphicsSceneHoverEvent *event);
|
|
void mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event);
|
|
|
|
private:
|
|
void updatePainterPath();
|
|
|
|
RectC _bounds;
|
|
QString _name;
|
|
QString _fileName;
|
|
|
|
Map *_map;
|
|
int _digitalZoom;
|
|
|
|
qreal _width;
|
|
QPen _pen;
|
|
QBrush _brush;
|
|
qreal _opacity;
|
|
|
|
QPainterPath _painterPath;
|
|
};
|
|
|
|
#endif // MAPITEM_H
|