mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-07-23 15:14:24 +02:00
Project structure refactoring
This commit is contained in:
16
src/GUI/markeritem.h
Normal file
16
src/GUI/markeritem.h
Normal file
@ -0,0 +1,16 @@
|
||||
#ifndef MARKERITEM_H
|
||||
#define MARKERITEM_H
|
||||
|
||||
#include <QGraphicsItem>
|
||||
|
||||
class MarkerItem : public QGraphicsItem
|
||||
{
|
||||
public:
|
||||
MarkerItem(QGraphicsItem *parent = 0);
|
||||
|
||||
QRectF boundingRect() const;
|
||||
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
|
||||
QWidget *widget);
|
||||
};
|
||||
|
||||
#endif // MARKERITEM_H
|
Reference in New Issue
Block a user