summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qmlmanager.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2020-03-26 12:12:38 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-03-26 12:59:00 -0700
commit66fd93c9ccc958b080d902fb06fff0aa34ae8a36 (patch)
treee7157a5276b0dd2823f2da46f47cb0f857780498 /mobile-widgets/qmlmanager.cpp
parent241d378f1402b767d65873f93d4eec68730d2755 (diff)
downloadsubsurface-66fd93c9ccc958b080d902fb06fff0aa34ae8a36.tar.gz
mobile/dive-list: add ability to create trip
This adds a context menu entry for top level dives that allows the user to create a trip for that dive. Unfortunately this creates a new string to translate right before a release... Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qmlmanager.cpp')
-rw-r--r--mobile-widgets/qmlmanager.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp
index 06bc5d8ef..86f199ae7 100644
--- a/mobile-widgets/qmlmanager.cpp
+++ b/mobile-widgets/qmlmanager.cpp
@@ -1231,6 +1231,23 @@ void QMLManager::removeDiveFromTrip(int id)
changesNeedSaving();
}
+void QMLManager::addTripForDive(int id)
+{
+ struct dive *d = get_dive_by_uniq_id(id);
+ if (!d) {
+ appendTextToLog(QString("Asked to create trip for non-existing dive with id %1").arg(id));
+ return;
+ }
+ if (d->divetrip) {
+ appendTextToLog(QString("Asked to create trip for dive %1 with id %2 but it's already part of a trip with location %3.").arg(d->number).arg(id).arg(d->divetrip->location));
+ return;
+ }
+ QVector <dive *> dives;
+ dives.append(d);
+ Command::createTrip(dives);
+ changesNeedSaving();
+}
+
void QMLManager::addDiveToTrip(int id, int tripId)
{
struct dive *d = get_dive_by_uniq_id(id);