summaryrefslogtreecommitdiffstats
path: root/qt-ui/divelistview.cpp
diff options
context:
space:
mode:
authorGravatar Robert C. Helling <helling@atdotde.de>2014-05-05 12:10:41 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-05-05 08:16:16 -0700
commit7bcb85dd549d713a7bacf0e6768b884cb3045382 (patch)
tree5eb562d621f82c0533b9492168edc13cdb7588fb /qt-ui/divelistview.cpp
parent7e43a4529377cc54b36760978a55f6ee4de36a9f (diff)
downloadsubsurface-7bcb85dd549d713a7bacf0e6768b884cb3045382.tar.gz
Add images to all dive computers and refresh profile
Signed-off-by: Robert C. Helling <helling@atdotde.de> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/divelistview.cpp')
-rw-r--r--qt-ui/divelistview.cpp41
1 files changed, 25 insertions, 16 deletions
diff --git a/qt-ui/divelistview.cpp b/qt-ui/divelistview.cpp
index d8e66d0c6..8c1c6a3ed 100644
--- a/qt-ui/divelistview.cpp
+++ b/qt-ui/divelistview.cpp
@@ -845,6 +845,9 @@ void DiveListView::loadImages()
EXIFInfo exif;
int retval;
time_t imagetime;
+ struct divecomputer *dc;
+ time_t when;
+ int duration_s;
QStringList fileNames = QFileDialog::getOpenFileNames(this, tr("Open Image Files"), lastUsedImageDir(), tr("Image Files (*.jpg *.jpeg *.pnm *.tif *.tiff)"));
if (fileNames.isEmpty())
@@ -874,26 +877,32 @@ void DiveListView::loadImages()
for_each_dive(j, dive) {
if (!dive->selected)
continue;
- // FIXME: this adds the events only to the first DC
- if (dive->when - 3600 < imagetime && dive->when + dive->duration.seconds + 3600 > imagetime) {
- if (dive->when > imagetime) {
- // Before dive
- add_event(&(dive->dc), 0, 123, 0, 0, fileNames.at(i).toUtf8().data());
- } else if (dive->when + dive->duration.seconds < imagetime) {
- // After dive
- add_event(&(dive->dc), dive->duration.seconds, 123, 0, 0, fileNames.at(i).toUtf8().data());
- } else {
- add_event(&(dive->dc), imagetime - dive->when, 123, 0, 0, fileNames.at(i).toUtf8().data());
+ dc = &(dive->dc);
+ while (dc) {
+ when = dc->when ? dc->when : dive->when;
+ duration_s = dc->duration.seconds ? dc->duration.seconds : dive->duration.seconds;
+ if (when - 3600 < imagetime && when + duration_s + 3600 > imagetime) {
+ if (when > imagetime) {
+ // Before dive
+ add_event(dc, 0, 123, 0, 0, fileNames.at(i).toUtf8().data());
+ } else if (when + duration_s < imagetime) {
+ // After dive
+ add_event(dc, duration_s, 123, 0, 0, fileNames.at(i).toUtf8().data());
+ } else {
+ add_event(dc, imagetime - when, 123, 0, 0, fileNames.at(i).toUtf8().data());
+ }
+ if (!dive->latitude.udeg && !IS_FP_SAME(exif.GeoLocation.Latitude, 0.0)) {
+ dive->latitude.udeg = lrint(1000000.0 * exif.GeoLocation.Latitude);
+ dive->longitude.udeg = lrint(1000000.0 * exif.GeoLocation.Longitude);
+ }
+ mark_divelist_changed(true);
+ MainWindow::instance()->refreshDisplay();
+ MainWindow::instance()->graphics()->replot();
}
- if (!dive->latitude.udeg && !IS_FP_SAME(exif.GeoLocation.Latitude, 0.0)) {
- dive->latitude.udeg = lrint(1000000.0 * exif.GeoLocation.Latitude);
- dive->longitude.udeg = lrint(1000000.0 * exif.GeoLocation.Longitude);
- }
- mark_divelist_changed(true);
+ dc = dc->next;
}
}
}
- MainWindow::instance()->refreshDisplay();
}
void DiveListView::uploadToDivelogsDE()