mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-05 22:13:59 +01:00
21 lines
292 B
C++
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
|