mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 14:25:27 +00:00
Enable undo for the Edit mode on Added Dives.
This enables undo for the edit mode on added dives, it uses the premade backup to fill the old dive with data. :) Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
This commit is contained in:
parent
23a193b0d1
commit
0e96c9f62e
4 changed files with 17 additions and 2 deletions
|
@ -1197,6 +1197,16 @@ void DivePlannerPointsModel::createTemporaryPlan()
|
|||
#endif
|
||||
}
|
||||
|
||||
void DivePlannerPointsModel::undoEdition()
|
||||
{
|
||||
beginRemoveRows(QModelIndex(), 0, rowCount()-1);
|
||||
divepoints.clear();
|
||||
endRemoveRows();
|
||||
Q_FOREACH(const sample &s, backupSamples){
|
||||
plannerModel->addStop(s.depth.mm, s.time.seconds, tr("Air"), 0);
|
||||
}
|
||||
}
|
||||
|
||||
void DivePlannerPointsModel::deleteTemporaryPlan()
|
||||
{
|
||||
deleteTemporaryPlan(diveplan.dp);
|
||||
|
|
|
@ -55,7 +55,7 @@ public slots:
|
|||
void createTemporaryPlan();
|
||||
void deleteTemporaryPlan();
|
||||
void loadFromDive(dive* d);
|
||||
|
||||
void undoEdition();
|
||||
signals:
|
||||
void planCreated();
|
||||
void planCanceled();
|
||||
|
|
|
@ -507,6 +507,9 @@ void MainTab::rejectChanges()
|
|||
delete_single_dive(selected_dive);
|
||||
DivePlannerPointsModel::instance()->cancelPlan();
|
||||
}
|
||||
else if (editMode == MANUALLY_ADDED_DIVE ){
|
||||
DivePlannerPointsModel::instance()->undoEdition();
|
||||
}
|
||||
struct dive *curr = current_dive;
|
||||
ui.notes->setText(notesBackup[curr].notes );
|
||||
ui.location->setText(notesBackup[curr].location);
|
||||
|
|
|
@ -46,7 +46,8 @@ class MainTab : public QTabWidget
|
|||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
enum EditMode { NONE, DIVE, TRIP, ADD, MANUALLY_ADDED_DIVE } editMode;
|
||||
enum EditMode { NONE, DIVE, TRIP, ADD, MANUALLY_ADDED_DIVE };
|
||||
|
||||
MainTab(QWidget *parent);
|
||||
void clearStats();
|
||||
void clearInfo();
|
||||
|
@ -78,6 +79,7 @@ public slots:
|
|||
void enableEdition(EditMode newEditMode = NONE);
|
||||
|
||||
private:
|
||||
EditMode editMode;
|
||||
Ui::MainTab ui;
|
||||
WeightModel *weightModel;
|
||||
CylindersModel *cylindersModel;
|
||||
|
|
Loading…
Add table
Reference in a new issue