Undo: make weight-deletion an undoable action

This one is a bit more complicated than weight adding, because the
multiple-dive case is not well defined. If multiple dives are selected,
this implementation will search for weights that are identical to the
weight deleted in the currently shown dive. The position of the weight
in the list is ignored.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2019-11-03 15:04:48 +01:00 committed by Dirk Hohndel
parent b3253304a5
commit b3f530bfb9
9 changed files with 111 additions and 18 deletions

View file

@ -339,6 +339,18 @@ private:
bool workToBeDone() override;
};
class RemoveWeight : public EditDivesBase {
public:
RemoveWeight(int index, bool currentDiveOnly);
~RemoveWeight();
private:
weightsystem_t ws;
std::vector<int> indexes; // An index for each dive in the dives vector.
void undo() override;
void redo() override;
bool workToBeDone() override;
};
} // namespace Command
#endif