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

21 lines
314 B
C
Raw Normal View History

2016-08-02 00:28:56 +02:00
#ifndef TOOLTIP_H
#define TOOLTIP_H
#include <QString>
#include <QList>
2018-09-30 12:16:41 +02:00
#include "common/kv.h"
2016-08-02 00:28:56 +02:00
class ToolTip
{
public:
void insert(const QString &key, const QString &value);
void setImage(const QString &img) {_img = img;}
2016-08-02 00:28:56 +02:00
QString toString();
private:
2018-09-30 12:16:41 +02:00
QList<KV> _list;
QString _img;
2016-08-02 00:28:56 +02:00
};
#endif // TOOLTIP_H