diff options
author | Grace Karanja <gracie.karanja89@gmail.com> | 2015-02-11 09:28:43 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-02-11 08:05:53 -0800 |
commit | 6d996a78742deb349cc1cb66ddea6abfb1b813d5 (patch) | |
tree | 59dcc66359ca254cf5b9a3a2f033104bf2d6beb9 | |
parent | ef14798d6d5e575a08aa8affc0815962813ecf29 (diff) | |
download | subsurface-6d996a78742deb349cc1cb66ddea6abfb1b813d5.tar.gz |
Add a structure to hold undo commands
Add the undocommands.cpp / undocommands.h files, which will hold a
collection of classes that will hold undo commands.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-ui/undocommands.cpp | 16 | ||||
-rw-r--r-- | qt-ui/undocommands.h | 17 | ||||
-rw-r--r-- | subsurface.pro | 6 |
3 files changed, 37 insertions, 2 deletions
diff --git a/qt-ui/undocommands.cpp b/qt-ui/undocommands.cpp new file mode 100644 index 000000000..f76f021b3 --- /dev/null +++ b/qt-ui/undocommands.cpp @@ -0,0 +1,16 @@ +#include "undocommands.h" + +UndoDeleteDive::UndoDeleteDive(QList<dive *> diveList) +{ + +} + +void UndoDeleteDive::undo() +{ + +} + +void UndoDeleteDive::redo() +{ + +} diff --git a/qt-ui/undocommands.h b/qt-ui/undocommands.h new file mode 100644 index 000000000..9a7803f9e --- /dev/null +++ b/qt-ui/undocommands.h @@ -0,0 +1,17 @@ +#ifndef UNDOCOMMANDS_H +#define UNDOCOMMANDS_H + +#include <QUndoCommand> +#include "dive.h" + +class UndoDeleteDive : public QUndoCommand { +public: + UndoDeleteDive(QList<struct dive*> diveList); + virtual void undo(); + virtual void redo(); + +private: + QList<struct dive*> dives; +}; + +#endif // UNDOCOMMANDS_H diff --git a/subsurface.pro b/subsurface.pro index 5fb6ab5d2..d65c94f50 100644 --- a/subsurface.pro +++ b/subsurface.pro @@ -104,7 +104,8 @@ HEADERS = \ qt-ui/statistics/statisticsbar.h \ qt-ui/statistics/yearstatistics.h \ qt-ui/diveshareexportdialog.h \ - qt-ui/filtermodels.h + qt-ui/filtermodels.h \ + qt-ui/undocommands.h android: HEADERS -= \ qt-ui/usermanual.h \ @@ -198,7 +199,8 @@ SOURCES = \ qt-ui/statistics/statisticsbar.cpp \ qt-ui/statistics/monthstatistics.cpp \ qt-ui/diveshareexportdialog.cpp \ - qt-ui/filtermodels.cpp + qt-ui/filtermodels.cpp \ + qt-ui/undocommands.cpp android: SOURCES += android.cpp else: win32: SOURCES += windows.c |