mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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 <bstoeger@mail.tuwien.ac.at>
203 lines
4.4 KiB
C++
203 lines
4.4 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include "command.h"
|
|
#include "command_divelist.h"
|
|
#include "command_divesite.h"
|
|
#include "command_edit.h"
|
|
|
|
namespace Command {
|
|
|
|
// Dive-list related commands
|
|
void addDive(dive *d, const QString &newDS, bool autogroup, bool newNumber)
|
|
{
|
|
execute(new AddDive(d, newDS, autogroup, newNumber));
|
|
}
|
|
|
|
void importDives(struct dive_table *dives, struct trip_table *trips, struct dive_site_table *sites, int flags, const QString &source)
|
|
{
|
|
execute(new ImportDives(dives, trips, sites, flags, source));
|
|
}
|
|
|
|
void deleteDive(const QVector<struct dive*> &divesToDelete)
|
|
{
|
|
execute(new DeleteDive(divesToDelete));
|
|
}
|
|
|
|
void shiftTime(const QVector<dive *> &changedDives, int amount)
|
|
{
|
|
execute(new ShiftTime(changedDives, amount));
|
|
}
|
|
|
|
void renumberDives(const QVector<QPair<dive *, int>> &divesToRenumber)
|
|
{
|
|
execute(new RenumberDives(divesToRenumber));
|
|
}
|
|
|
|
void removeDivesFromTrip(const QVector<dive *> &divesToRemove)
|
|
{
|
|
execute(new RemoveDivesFromTrip(divesToRemove));
|
|
}
|
|
|
|
void removeAutogenTrips()
|
|
{
|
|
execute(new RemoveAutogenTrips);
|
|
}
|
|
|
|
void addDivesToTrip(const QVector<dive *> &divesToAddIn, dive_trip *trip)
|
|
{
|
|
execute(new AddDivesToTrip(divesToAddIn, trip));
|
|
}
|
|
|
|
void createTrip(const QVector<dive *> &divesToAddIn)
|
|
{
|
|
execute(new CreateTrip(divesToAddIn));
|
|
}
|
|
|
|
void autogroupDives()
|
|
{
|
|
execute(new AutogroupDives);
|
|
}
|
|
|
|
void mergeTrips(dive_trip *trip1, dive_trip *trip2)
|
|
{
|
|
execute(new MergeTrips(trip1, trip2));
|
|
}
|
|
|
|
void splitDives(dive *d, duration_t time)
|
|
{
|
|
execute(new SplitDives(d, time));
|
|
}
|
|
|
|
void splitDiveComputer(dive *d, int dc_num)
|
|
{
|
|
execute(new SplitDiveComputer(d, dc_num));
|
|
}
|
|
|
|
void mergeDives(const QVector <dive *> &dives)
|
|
{
|
|
execute(new MergeDives(dives));
|
|
}
|
|
|
|
// Dive site related commands
|
|
void deleteDiveSites(const QVector <dive_site *> &sites)
|
|
{
|
|
execute(new DeleteDiveSites(sites));
|
|
}
|
|
|
|
void editDiveSiteName(dive_site *ds, const QString &value)
|
|
{
|
|
execute(new EditDiveSiteName(ds, value));
|
|
}
|
|
|
|
void editDiveSiteDescription(dive_site *ds, const QString &value)
|
|
{
|
|
execute(new EditDiveSiteDescription(ds, value));
|
|
}
|
|
|
|
void editDiveSiteNotes(dive_site *ds, const QString &value)
|
|
{
|
|
execute(new EditDiveSiteNotes(ds, value));
|
|
}
|
|
|
|
void editDiveSiteCountry(dive_site *ds, const QString &value)
|
|
{
|
|
execute(new EditDiveSiteCountry(ds, value));
|
|
}
|
|
|
|
void editDiveSiteLocation(dive_site *ds, location_t value)
|
|
{
|
|
execute(new EditDiveSiteLocation(ds, value));
|
|
}
|
|
|
|
void editDiveSiteTaxonomy(dive_site *ds, taxonomy_data &value)
|
|
{
|
|
execute(new EditDiveSiteTaxonomy(ds, value));
|
|
}
|
|
|
|
void addDiveSite(const QString &name)
|
|
{
|
|
execute(new AddDiveSite(name));
|
|
}
|
|
|
|
void mergeDiveSites(dive_site *ds, const QVector<dive_site *> &sites)
|
|
{
|
|
execute(new MergeDiveSites(ds, sites));
|
|
}
|
|
|
|
void purgeUnusedDiveSites()
|
|
{
|
|
execute(new PurgeUnusedDiveSites);
|
|
}
|
|
|
|
// Dive editing related commands
|
|
void editNotes(const QString &newValue, bool currentDiveOnly)
|
|
{
|
|
execute(new EditNotes(newValue, currentDiveOnly));
|
|
}
|
|
|
|
void editMode(int index, int newValue, bool currentDiveOnly)
|
|
{
|
|
execute(new EditMode(index, newValue, currentDiveOnly));
|
|
}
|
|
|
|
void editSuit(const QString &newValue, bool currentDiveOnly)
|
|
{
|
|
execute(new EditSuit(newValue, currentDiveOnly));
|
|
}
|
|
|
|
void editRating(int newValue, bool currentDiveOnly)
|
|
{
|
|
execute(new EditRating(newValue, currentDiveOnly));
|
|
}
|
|
|
|
void editVisibility(int newValue, bool currentDiveOnly)
|
|
{
|
|
execute(new EditVisibility(newValue, currentDiveOnly));
|
|
}
|
|
|
|
void editAirTemp(int newValue, bool currentDiveOnly)
|
|
{
|
|
execute(new EditAirTemp(newValue, currentDiveOnly));
|
|
}
|
|
|
|
void editWaterTemp(int newValue, bool currentDiveOnly)
|
|
{
|
|
execute(new EditWaterTemp(newValue, currentDiveOnly));
|
|
}
|
|
|
|
void editDepth(int newValue, bool currentDiveOnly)
|
|
{
|
|
execute(new EditDepth(newValue, currentDiveOnly));
|
|
}
|
|
|
|
void editDuration(int newValue, bool currentDiveOnly)
|
|
{
|
|
execute(new EditDuration(newValue, currentDiveOnly));
|
|
}
|
|
|
|
void editDiveSite(struct dive_site *newValue, bool currentDiveOnly)
|
|
{
|
|
execute(new EditDiveSite(newValue, currentDiveOnly));
|
|
}
|
|
|
|
void editDiveSiteNew(const QString &newName, bool currentDiveOnly)
|
|
{
|
|
execute(new EditDiveSiteNew(newName, currentDiveOnly));
|
|
}
|
|
|
|
void editTags(const QStringList &newList, bool currentDiveOnly)
|
|
{
|
|
execute(new EditTags(newList, currentDiveOnly));
|
|
}
|
|
|
|
void editBuddies(const QStringList &newList, bool currentDiveOnly)
|
|
{
|
|
execute(new EditBuddies(newList, currentDiveOnly));
|
|
}
|
|
|
|
void editDiveMaster(const QStringList &newList, bool currentDiveOnly)
|
|
{
|
|
execute(new EditDiveMaster(newList, currentDiveOnly));
|
|
}
|
|
|
|
} // namespace Command
|