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

39 lines
737 B
C
Raw Normal View History

2015-10-12 01:12:12 +02:00
#ifndef INFOITEM_H
#define INFOITEM_H
#include <QGraphicsItem>
2015-10-13 00:27:49 +02:00
#include <QList>
2015-10-12 01:12:12 +02:00
class InfoItem : public QGraphicsItem
{
public:
2015-10-17 01:33:02 +02:00
InfoItem(QGraphicsItem *parent = 0);
2015-10-12 01:12:12 +02:00
QRectF boundingRect() const {return _boundingRect;}
2015-10-12 01:12:12 +02:00
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
QWidget *widget);
void insert(const QString &key, const QString &value);
void clear();
bool isEmpty() {return _list.isEmpty();}
2015-10-12 01:12:12 +02:00
private:
void updateBoundingRect();
2015-10-13 00:27:49 +02:00
class KV {
public:
QString key;
QString value;
KV(const QString &k, const QString &v)
{key = k; value = v;}
bool operator==(const KV &other) const
{return this->key == other.key;}
};
QList<KV> _list;
QRectF _boundingRect;
2015-10-12 01:12:12 +02:00
};
#endif // INFOITEM_H