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 19:58:25 +00:00
|
|
|
void addDiveSite(const QString &name);
|
2019-03-12 21:35:43 +00:00
|
|
|
|
2018-07-23 21:41:23 +00:00
|
|
|
} // namespace Command
|
|
|
|
|
|
|
|
#endif // COMMAND_H
|