1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 23:03:22 +02:00
GPXSee/src/trackinfo.h

24 lines
360 B
C
Raw Normal View History

2016-05-12 09:03:05 +02:00
#ifndef TRACKINFO_H
#define TRACKINFO_H
#include <QGraphicsScene>
class InfoItem;
class TrackInfo : public QGraphicsScene
{
Q_OBJECT
public:
TrackInfo(QObject *parent = 0);
void insert(const QString &key, const QString &value);
void plot(QPainter *painter, const QRectF &target);
bool isEmpty();
2016-05-12 09:03:05 +02:00
private:
InfoItem *_info;
};
#endif // TRACKINFO_H