aboutsummaryrefslogtreecommitdiffstats
path: root/commands/command_edit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'commands/command_edit.cpp')
-rw-r--r--commands/command_edit.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/commands/command_edit.cpp b/commands/command_edit.cpp
index 5e02ed80e..541eac61a 100644
--- a/commands/command_edit.cpp
+++ b/commands/command_edit.cpp
@@ -953,4 +953,36 @@ void ReplanDive::redo()
undo();
}
+// ***** Add Weight *****
+AddWeight::AddWeight(bool currentDiveOnly) :
+ EditDivesBase(currentDiveOnly)
+{
+ //: remove the part in parentheses for %n = 1
+ setText(tr("Add weight (%n dive(s))", "", dives.size()));
+}
+
+bool AddWeight::workToBeDone()
+{
+ return true;
+}
+
+void AddWeight::undo()
+{
+ for (dive *d: dives) {
+ if (d->weightsystems.nr <= 0)
+ continue;
+ remove_weightsystem(d, d->weightsystems.nr - 1);
+ emit diveListNotifier.weightRemoved(d, d->weightsystems.nr);
+ }
+}
+
+void AddWeight::redo()
+{
+ weightsystem_t ws { {0}, "" };
+ for (dive *d: dives) {
+ add_cloned_weightsystem(&d->weightsystems, ws);
+ emit diveListNotifier.weightAdded(d, d->weightsystems.nr - 1);
+ }
+}
+
} // namespace Command