mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-12-02 23:49:09 +01:00
23 lines
421 B
C++
23 lines
421 B
C++
#ifndef TOOLTIP_H
|
|
#define TOOLTIP_H
|
|
|
|
#include <QString>
|
|
#include <QList>
|
|
#include <QVector>
|
|
#include "common/kv.h"
|
|
#include "data/imageinfo.h"
|
|
|
|
class ToolTip
|
|
{
|
|
public:
|
|
void insert(const QString &key, const QString &value);
|
|
void setImages(const QVector<ImageInfo> &images) {_images = images;}
|
|
QString toString() const;
|
|
|
|
private:
|
|
QList<KV<QString, QString> > _list;
|
|
QVector<ImageInfo> _images;
|
|
};
|
|
|
|
#endif // TOOLTIP_H
|