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
|
2019-03-30 17:39:27 +00:00
|
|
|
void init(); // Setup signals to inform frontend of clean status.
|
2018-07-23 21:41:23 +00:00
|
|
|
void clear(); // Reset the undo stack. Delete all commands.
|
2019-03-30 17:39:27 +00:00
|
|
|
void setClean(); // Call after save - this marks a state where no changes need to be saved.
|
|
|
|
bool isClean(); // Any changes need to be saved?
|
2018-07-23 21:41:23 +00:00
|
|
|
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.
|
2019-03-28 16:23:35 +00:00
|
|
|
void addDive(dive *d, const 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);
|
2019-05-17 20:22:55 +00:00
|
|
|
void moveDiveComputerToFront(dive *d, int dc_num);
|
2019-05-19 12:27:10 +00:00
|
|
|
void deleteDiveComputer(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-05-05 03:40:27 +00:00
|
|
|
void importDiveSites(struct dive_site_table *sites, const QString &source);
|
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
|
|
|
|
|
2019-02-14 22:07:12 +00:00
|
|
|
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);
|
2019-04-30 10:42:33 +00:00
|
|
|
void editAtmPress(int newValue, bool currentDiveOnly);
|
2019-02-14 22:07:12 +00:00
|
|
|
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);
|
2019-02-23 17:17:20 +00:00
|
|
|
void pasteDives(const dive *d, dive_components what);
|
2019-01-25 17:27:31 +00:00
|
|
|
|
2019-02-24 20:22:33 +00:00
|
|
|
// 4) Trip editing commands
|
|
|
|
void editTripLocation(dive_trip *trip, const QString &s);
|
|
|
|
void editTripNotes(dive_trip *trip, const QString &s);
|
|
|
|
|
2018-07-23 21:41:23 +00:00
|
|
|
} // namespace Command
|
|
|
|
|
|
|
|
#endif // COMMAND_H
|