aboutsummaryrefslogtreecommitdiffstats
path: root/qt-models/divepicturemodel.h
diff options
context:
space:
mode:
Diffstat (limited to 'qt-models/divepicturemodel.h')
-rw-r--r--qt-models/divepicturemodel.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/qt-models/divepicturemodel.h b/qt-models/divepicturemodel.h
index b0494d355..bbb82293e 100644
--- a/qt-models/divepicturemodel.h
+++ b/qt-models/divepicturemodel.h
@@ -6,17 +6,15 @@
#include <QImage>
#include <QFuture>
-struct PhotoHelper {
+struct PictureEntry {
+ struct picture *picture;
+ QString filename;
QImage image;
int offsetSeconds;
};
-typedef QList<struct picture *> SPictureList;
-typedef struct picture *picturepointer;
-typedef QPair<picturepointer, QImage> SPixmap;
-
// function that will scale the pixmap, used inside the QtConcurrent thread.
-SPixmap scaleImages(picturepointer picture);
+void scaleImages(PictureEntry &entry);
class DivePictureModel : public QAbstractTableModel {
Q_OBJECT
@@ -31,11 +29,10 @@ public:
protected:
DivePictureModel();
- int numberOfPictures;
// Currently, load the images on the fly
// Later, use a thread to load the images
// Later, save the thumbnails so we don't need to reopen every time.
- QHash<QString, PhotoHelper> stringPixmapCache;
+ QList<PictureEntry> pictures;
};
#endif