subsurface/qt-ui/undobuffer.h
Grace Karanja d60a620193 Add ability to undo deleted dives
Before the dive is deleted, a copy is made and passed to the
undo buffer. When edit->undo is clicked, this dive is restored
to the dive list.

Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2015-02-09 21:02:19 -08:00

39 lines
767 B
C++

#ifndef UNDOBUFFER_H
#define UNDOBUFFER_H
#include <QObject>
#include "dive.h"
class UndoCommand {
private:
dive* stateBefore;
dive* stateAfter;
QString name;
public:
explicit UndoCommand(QString commandName, dive* affectedDive);
void setStateAfter(dive* affectedDive) { stateAfter = affectedDive; }
void undo();
void redo();
};
class UndoBuffer : public QObject
{
Q_OBJECT
public:
explicit UndoBuffer(QObject *parent = 0);
~UndoBuffer();
bool canUndo();
bool canRedo();
UndoCommand *current() const { return list.at(curIdx - 1); }
private:
QList<UndoCommand*> list;
int curIdx;
public slots:
void redo();
void undo();
void recordbefore(QString commandName, dive *affectedDive);
void recordAfter(dive *affectedDive);
};
#endif // UNDOBUFFER_H