1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/pathitem.h

23 lines
372 B
C
Raw Normal View History

2016-09-19 00:55:03 +02:00
#ifndef PATHITEM_H
#define PATHITEM_H
2016-09-19 00:56:10 +02:00
#include <QGraphicsObject>
#include "units.h"
class PathItem : public QGraphicsObject
{
Q_OBJECT
public:
PathItem(QGraphicsItem *parent = 0) : QGraphicsObject(parent) {}
virtual void showMarker(bool show) = 0;
public slots:
virtual void moveMarker(qreal distance) = 0;
signals:
void selected(bool);
2016-09-19 00:56:10 +02:00
};
2016-09-19 00:55:03 +02:00
#endif // PATHITEM_H