2018-07-23 21:41:23 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#ifndef COMMAND_H
|
|
|
|
#define COMMAND_H
|
|
|
|
|
|
|
|
#include "core/dive.h"
|
|
|
|
#include <QVector>
|
|
|
|
#include <QAction>
|
|
|
|
|
|
|
|
// We put everything in a namespace, so that we can shorten names without polluting the global namespace
|
|
|
|
namespace Command {
|
|
|
|
|
Undo: make adding of planned dive undo-able
Planned dives were still added by directly calling core code.
This could confuse the undo-machinery, leading to crashes.
Instead, use the proper undo-command. The problem is that as
opposed to the other AddDive-commands, planned dives may
belong to a trip. Thus, the interface to the AddDive command
was changed to respect the divetrip field. Make sure that
the other callers reset that field (actually, it should never
be set). Add a comment describing the perhaps surprising
interface (the passed-in dive, usually displayed dive, is
reset).
Moreover, a dive cloned in the planner is not assigned a
new number. Thus, add an argument to the AddDive-command,
which expresses whether a new number should be generated
for the to-be-added dive.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2018-09-08 17:58:11 +00:00
|
|
|
// 1) General commands
|
2018-07-23 21:41:23 +00:00
|
|
|
void clear(); // Reset the undo stack. Delete all commands.
|
|
|
|
QAction *undoAction(QObject *parent); // Create an undo action.
|
|
|
|
QAction *redoAction(QObject *parent); // Create an redo action.
|
|
|
|
|
Undo: make adding of planned dive undo-able
Planned dives were still added by directly calling core code.
This could confuse the undo-machinery, leading to crashes.
Instead, use the proper undo-command. The problem is that as
opposed to the other AddDive-commands, planned dives may
belong to a trip. Thus, the interface to the AddDive command
was changed to respect the divetrip field. Make sure that
the other callers reset that field (actually, it should never
be set). Add a comment describing the perhaps surprising
interface (the passed-in dive, usually displayed dive, is
reset).
Moreover, a dive cloned in the planner is not assigned a
new number. Thus, add an argument to the AddDive-command,
which expresses whether a new number should be generated
for the to-be-added dive.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2018-09-08 17:58:11 +00:00
|
|
|
// 2) Dive-list related commands
|
|
|
|
|
2019-03-03 16:10:09 +00:00
|
|
|
// If d->dive_trip is null and autogroup is true, dives within the auto-group
|
|
|
|
// distance are added to a trip. dive d is consumed (the structure is reset)!
|
|
|
|
// If newNumber is true, the dive is assigned a new number, depending on the
|
|
|
|
// insertion position.
|
|
|
|
// Id newDS is not empty, a dive site with that name will be created. d->dive_site
|
|
|
|
// should be null in this case.
|
|
|
|
void addDive(dive *d, const QString &newDS, bool autogroup, bool newNumber);
|
2019-03-03 14:12:22 +00:00
|
|
|
void importDives(struct dive_table *dives, struct trip_table *trips, struct dive_site_table *sites, int flags, const QString &source);
|
2018-07-23 21:41:23 +00:00
|
|
|
void deleteDive(const QVector<struct dive*> &divesToDelete);
|
|
|
|
void shiftTime(const QVector<dive *> &changedDives, int amount);
|
2018-07-30 13:55:29 +00:00
|
|
|
void renumberDives(const QVector<QPair<dive *, int>> &divesToRenumber);
|
2018-07-23 21:41:23 +00:00
|
|
|
void removeDivesFromTrip(const QVector<dive *> &divesToRemove);
|
|
|
|
void removeAutogenTrips();
|
|
|
|
void addDivesToTrip(const QVector<dive *> &divesToAddIn, dive_trip *trip);
|
|
|
|
void createTrip(const QVector<dive *> &divesToAddIn);
|
|
|
|
void autogroupDives();
|
|
|
|
void mergeTrips(dive_trip *trip1, dive_trip *trip2);
|
|
|
|
void splitDives(dive *d, duration_t time);
|
2019-03-31 08:20:13 +00:00
|
|
|
void splitDiveComputer(dive *d, int dc_num);
|
2018-07-23 21:41:23 +00:00
|
|
|
void mergeDives(const QVector <dive *> &dives);
|
|
|
|
|
2019-03-12 21:35:43 +00:00
|
|
|
// 3) Dive-site related commands
|
|
|
|
|
|
|
|
void deleteDiveSites(const QVector <dive_site *> &sites);
|
2019-03-12 22:51:39 +00:00
|
|
|
void editDiveSiteName(dive_site *ds, const QString &value);
|
2019-03-13 19:10:22 +00:00
|
|
|
void editDiveSiteDescription(dive_site *ds, const QString &value);
|
2019-03-13 23:00:54 +00:00
|
|
|
void editDiveSiteNotes(dive_site *ds, const QString &value);
|
2019-03-14 07:26:50 +00:00
|
|
|
void editDiveSiteCountry(dive_site *ds, const QString &value);
|
2019-03-14 22:28:45 +00:00
|
|
|
void editDiveSiteLocation(dive_site *ds, location_t value);
|
2019-03-15 13:32:55 +00:00
|
|
|
void editDiveSiteTaxonomy(dive_site *ds, taxonomy_data &value); // value is consumed (i.e. will be erased after call)!
|
2019-03-13 19:58:25 +00:00
|
|
|
void addDiveSite(const QString &name);
|
2019-03-15 16:41:31 +00:00
|
|
|
void mergeDiveSites(dive_site *ds, const QVector<dive_site *> &sites);
|
2019-03-19 18:52:54 +00:00
|
|
|
void purgeUnusedDiveSites();
|
2019-03-12 21:35:43 +00:00
|
|
|
|
2019-01-25 17:27:31 +00:00
|
|
|
// 4) Dive editing related commands
|
|
|
|
|
|
|
|
void editNotes(const QVector<dive *> dives, const QString &newValue, const QString &oldValue);
|
2019-01-28 20:42:59 +00:00
|
|
|
void editSuit(const QVector<dive *> dives, const QString &newValue, const QString &oldValue);
|
2019-01-28 17:35:27 +00:00
|
|
|
void editMode(const QVector<dive *> dives, int index, int newValue, int oldValue);
|
2019-01-28 21:35:07 +00:00
|
|
|
void editRating(const QVector<dive *> dives, int newValue, int oldValue);
|
|
|
|
void editVisibility(const QVector<dive *> dives, int newValue, int oldValue);
|
2019-01-30 21:13:24 +00:00
|
|
|
void editAirTemp(const QVector<dive *> dives, int newValue, int oldValue);
|
|
|
|
void editWaterTemp(const QVector<dive *> dives, int newValue, int oldValue);
|
2019-02-10 16:37:06 +00:00
|
|
|
void editDepth(const QVector<dive *> dives, int newValue, int oldValue);
|
|
|
|
void editDuration(const QVector<dive *> dives, int newValue, int oldValue);
|
2019-03-20 20:46:58 +00:00
|
|
|
void editDiveSite(const QVector<dive *> dives, struct dive_site *newValue, struct dive_site *oldValue);
|
|
|
|
void editDiveSiteNew(const QVector<dive *> dives, const QString &newName, struct dive_site *oldValue);
|
2019-02-07 18:59:34 +00:00
|
|
|
void editTags(const QVector<dive *> &dives, const QStringList &newList, struct dive *d);
|
2019-02-07 20:00:09 +00:00
|
|
|
void editBuddies(const QVector<dive *> &dives, const QStringList &newList, struct dive *d);
|
2019-02-07 20:23:00 +00:00
|
|
|
void editDiveMaster(const QVector<dive *> &dives, const QStringList &newList, struct dive *d);
|
2019-01-25 17:27:31 +00:00
|
|
|
|
2018-07-23 21:41:23 +00:00
|
|
|
} // namespace Command
|
|
|
|
|
|
|
|
#endif // COMMAND_H
|