summaryrefslogtreecommitdiffstats
path: root/qt-ui/undocommands.h
diff options
context:
space:
mode:
authorGravatar Grace Karanja <gracie.karanja89@gmail.com>2015-02-14 20:12:05 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-02-14 15:46:37 -0800
commit87ee8e8aef00f2e183c57a93754717ea41da9179 (patch)
treea10a2297438a290daa8f4648b362bdc7784c9d37 /qt-ui/undocommands.h
parent824cc90a9a489fbd08b480c83d17c2dfb523a1a8 (diff)
downloadsubsurface-87ee8e8aef00f2e183c57a93754717ea41da9179.tar.gz
Add ability to undo shifting of dive time
Adds the ability to undo shifting of dive times. The change is captured at simplewidgets.cpp and an undo command is created. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/undocommands.h')
-rw-r--r--qt-ui/undocommands.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/qt-ui/undocommands.h b/qt-ui/undocommands.h
index 9a7803f9e..addef8138 100644
--- a/qt-ui/undocommands.h
+++ b/qt-ui/undocommands.h
@@ -14,4 +14,15 @@ private:
QList<struct dive*> dives;
};
+class UndoShiftTime : public QUndoCommand {
+public:
+ UndoShiftTime(QList<int> diveList, int amount);
+ virtual void undo();
+ virtual void redo();
+
+private:
+ QList<int> dives;
+ int timeChanged;
+};
+
#endif // UNDOCOMMANDS_H