From 5436f9b8590e6022ce2dabefb23ffb037020784a Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Thu, 14 Feb 2019 23:07:12 +0100 Subject: Undo: move dive-list logic into edit commands The edit-commands were called with a list of selected dives and the original value. Move the creation of the list and extraction of the original value into the edit-commmands. This removes the "current is last" rule and allows for more flexibility. Since the depth- and duration editing applies only to the current dive and not all selected dives, add a parameter to the edit-commands controlling whether only the current or all selected dives are edited. Signed-off-by: Berthold Stoeger --- desktop-widgets/command.h | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'desktop-widgets/command.h') diff --git a/desktop-widgets/command.h b/desktop-widgets/command.h index 4754a6937..7667f3482 100644 --- a/desktop-widgets/command.h +++ b/desktop-widgets/command.h @@ -52,20 +52,20 @@ void purgeUnusedDiveSites(); // 4) Dive editing related commands -void editNotes(const QVector dives, const QString &newValue, const QString &oldValue); -void editSuit(const QVector dives, const QString &newValue, const QString &oldValue); -void editMode(const QVector dives, int index, int newValue, int oldValue); -void editRating(const QVector dives, int newValue, int oldValue); -void editVisibility(const QVector dives, int newValue, int oldValue); -void editAirTemp(const QVector dives, int newValue, int oldValue); -void editWaterTemp(const QVector dives, int newValue, int oldValue); -void editDepth(const QVector dives, int newValue, int oldValue); -void editDuration(const QVector dives, int newValue, int oldValue); -void editDiveSite(const QVector dives, struct dive_site *newValue, struct dive_site *oldValue); -void editDiveSiteNew(const QVector dives, const QString &newName, struct dive_site *oldValue); -void editTags(const QVector &dives, const QStringList &newList, struct dive *d); -void editBuddies(const QVector &dives, const QStringList &newList, struct dive *d); -void editDiveMaster(const QVector &dives, const QStringList &newList, struct dive *d); +void editNotes(const QString &newValue, bool currentDiveOnly); +void editSuit(const QString &newValue, bool currentDiveOnly); +void editMode(int index, int newValue, bool currentDiveOnly); +void editRating(int newValue, bool currentDiveOnly); +void editVisibility(int newValue, bool currentDiveOnly); +void editAirTemp(int newValue, bool currentDiveOnly); +void editWaterTemp(int newValue, bool currentDiveOnly); +void editDepth(int newValue, bool currentDiveOnly); +void editDuration(int newValue, bool currentDiveOnly); +void editDiveSite(struct dive_site *newValue, bool currentDiveOnly); +void editDiveSiteNew(const QString &newName, bool currentDiveOnly); +void editTags(const QStringList &newList, bool currentDiveOnly); +void editBuddies(const QStringList &newList, bool currentDiveOnly); +void editDiveMaster(const QStringList &newList, bool currentDiveOnly); } // namespace Command -- cgit v1.2.3-70-g09d2