mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-31 09:05:14 +01:00
25 lines
476 B
C++
25 lines
476 B
C++
#ifndef POIITEM_H
|
|
#define POIITEM_H
|
|
|
|
#include <QGraphicsItem>
|
|
#include "poi.h"
|
|
|
|
class POIItem : public QGraphicsItem
|
|
{
|
|
public:
|
|
POIItem(const Entry &entry, QGraphicsItem *parent = 0);
|
|
const Entry &entry() const {return _entry;}
|
|
|
|
QRectF boundingRect() const {return _boundingRect;}
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
|
|
QWidget *widget);
|
|
|
|
private:
|
|
void updateBoundingRect();
|
|
|
|
Entry _entry;
|
|
QRectF _boundingRect;
|
|
};
|
|
|
|
#endif // POIITEM_H
|