diff options
Diffstat (limited to 'qt-models/divepicturemodel.h')
-rw-r--r-- | qt-models/divepicturemodel.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/qt-models/divepicturemodel.h b/qt-models/divepicturemodel.h index 74f92f449..443be4a0e 100644 --- a/qt-models/divepicturemodel.h +++ b/qt-models/divepicturemodel.h @@ -10,7 +10,6 @@ struct PictureEntry { struct picture *picture; QString filename; QImage image; - QImage imageProfile; // For the profile widget keep a copy of a constant sized image int offsetSeconds; }; @@ -31,7 +30,10 @@ private: DivePictureModel(); QList<PictureEntry> pictures; double zoomLevel; // -1.0: minimum, 0.0: standard, 1.0: maximum + int defaultSize; + int size; void updateThumbnails(); + void updateZoom(); }; #endif |