Use the canonical file name also for the "already open" check
[GPXSee.git] / src / GUI / thumbnail.h
blobabf04d7c984a47952286b9811732807c5787abf3
1 #ifndef THUMBNAIL_H
2 #define THUMBNAIL_H
4 #include <QLabel>
6 class ImageInfo;
8 class Thumbnail : public QLabel
10 public:
11 Thumbnail(const QString &path, int limit, QWidget *parent = 0);
13 protected:
14 void mousePressEvent(QMouseEvent *event);
16 private:
17 QString _path;
20 #endif // THUMBNAIL_H