Added Israleli grid projection
[GPXSee.git] / src / GUI / trackinfo.h
blob240b198c6c3c63db04cc204903f0c875e33f2b16
1 #ifndef TRACKINFO_H
2 #define TRACKINFO_H
4 #include <QGraphicsScene>
6 class InfoItem;
8 class TrackInfo : public QGraphicsScene
10 Q_OBJECT
12 public:
13 TrackInfo(QObject *parent = 0);
15 void insert(const QString &key, const QString &value);
16 void plot(QPainter *painter, const QRectF &target, qreal scale);
17 bool isEmpty() const;
18 QSizeF contentSize() const;
20 private:
21 InfoItem *_info;
24 #endif // TRACKINFO_H