mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Consistent variable names in UndoCommands class
Implements a uniform variable naming scheme in the undocommands class. Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
d2b8fb31eb
commit
8fe738bf64
2 changed files with 21 additions and 22 deletions
|
@ -2,18 +2,18 @@
|
|||
#include "mainwindow.h"
|
||||
#include "divelist.h"
|
||||
|
||||
UndoDeleteDive::UndoDeleteDive(QList<dive *> diveList)
|
||||
UndoDeleteDive::UndoDeleteDive(QList<dive *> deletedDives)
|
||||
: diveList(deletedDives)
|
||||
{
|
||||
dives = diveList;
|
||||
setText("delete dive");
|
||||
if (dives.count() > 1)
|
||||
setText(QString("delete %1 dives").arg(QString::number(dives.count())));
|
||||
if (diveList.count() > 1)
|
||||
setText(QString("delete %1 dives").arg(QString::number(diveList.count())));
|
||||
}
|
||||
|
||||
void UndoDeleteDive::undo()
|
||||
{
|
||||
for (int i = 0; i < dives.count(); i++)
|
||||
record_dive(dives.at(i));
|
||||
for (int i = 0; i < diveList.count(); i++)
|
||||
record_dive(diveList.at(i));
|
||||
mark_divelist_changed(true);
|
||||
MainWindow::instance()->refreshDisplay();
|
||||
}
|
||||
|
@ -21,32 +21,31 @@ void UndoDeleteDive::undo()
|
|||
void UndoDeleteDive::redo()
|
||||
{
|
||||
QList<struct dive*> newList;
|
||||
for (int i = 0; i < dives.count(); i++) {
|
||||
for (int i = 0; i < diveList.count(); i++) {
|
||||
//make a copy of the dive before deleting it
|
||||
struct dive* d = alloc_dive();
|
||||
copy_dive(dives.at(i), d);
|
||||
copy_dive(diveList.at(i), d);
|
||||
newList.append(d);
|
||||
//delete the dive
|
||||
delete_single_dive(get_divenr(dives.at(i)));
|
||||
delete_single_dive(get_divenr(diveList.at(i)));
|
||||
}
|
||||
mark_divelist_changed(true);
|
||||
MainWindow::instance()->refreshDisplay();
|
||||
dives.clear();
|
||||
dives = newList;
|
||||
diveList.clear();
|
||||
diveList = newList;
|
||||
}
|
||||
|
||||
|
||||
UndoShiftTime::UndoShiftTime(QList<int> diveList, int amount)
|
||||
UndoShiftTime::UndoShiftTime(QList<int> changedDives, int amount)
|
||||
: diveList(changedDives), timeChanged(amount)
|
||||
{
|
||||
setText("shift time");
|
||||
dives = diveList;
|
||||
timeChanged = amount;
|
||||
}
|
||||
|
||||
void UndoShiftTime::undo()
|
||||
{
|
||||
for (int i = 0; i < dives.count(); i++) {
|
||||
struct dive* d = get_dive_by_uniq_id(dives.at(i));
|
||||
for (int i = 0; i < diveList.count(); i++) {
|
||||
struct dive* d = get_dive_by_uniq_id(diveList.at(i));
|
||||
d->when -= timeChanged;
|
||||
}
|
||||
mark_divelist_changed(true);
|
||||
|
@ -55,8 +54,8 @@ void UndoShiftTime::undo()
|
|||
|
||||
void UndoShiftTime::redo()
|
||||
{
|
||||
for (int i = 0; i < dives.count(); i++) {
|
||||
struct dive* d = get_dive_by_uniq_id(dives.at(i));
|
||||
for (int i = 0; i < diveList.count(); i++) {
|
||||
struct dive* d = get_dive_by_uniq_id(diveList.at(i));
|
||||
d->when += timeChanged;
|
||||
}
|
||||
mark_divelist_changed(true);
|
||||
|
|
|
@ -7,22 +7,22 @@
|
|||
|
||||
class UndoDeleteDive : public QUndoCommand {
|
||||
public:
|
||||
UndoDeleteDive(QList<struct dive*> diveList);
|
||||
UndoDeleteDive(QList<struct dive*> deletedDives);
|
||||
virtual void undo();
|
||||
virtual void redo();
|
||||
|
||||
private:
|
||||
QList<struct dive*> dives;
|
||||
QList<struct dive*> diveList;
|
||||
};
|
||||
|
||||
class UndoShiftTime : public QUndoCommand {
|
||||
public:
|
||||
UndoShiftTime(QList<int> diveList, int amount);
|
||||
UndoShiftTime(QList<int> changedDives, int amount);
|
||||
virtual void undo();
|
||||
virtual void redo();
|
||||
|
||||
private:
|
||||
QList<int> dives;
|
||||
QList<int> diveList;
|
||||
int timeChanged;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue