1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-01-05 22:13:59 +01:00
GPXSee/src/GUI/thumbnail.h

21 lines
292 B
C++

#ifndef THUMBNAIL_H
#define THUMBNAIL_H
#include <QLabel>
class ImageInfo;
class Thumbnail : public QLabel
{
public:
Thumbnail(const QString &path, int limit, QWidget *parent = 0);
protected:
void mousePressEvent(QMouseEvent *event);
private:
QString _path;
};
#endif // THUMBNAIL_H