diff -r 5f6e176e9718 -r c79df732d095 historywindow.h --- a/historywindow.h Wed Sep 06 12:47:06 2006 +0000 +++ b/historywindow.h Fri Sep 08 12:30:09 2006 +0000 @@ -1,9 +1,13 @@ #ifndef HISTORYWINDOW_H #define HISTORYWINDOW_H +//#include "mapeditor.h" #include "settings.h" #include "ui_historywindow.h" + +class MapEditor; + ///////////////////////////////////////////////////////////////////////////// class HistoryWindow:public QDialog { @@ -12,10 +16,18 @@ public: HistoryWindow(QWidget* parent = 0); void update (SimpleSettings &); - + void setME (MapEditor *); + void setStepsTotal (int); + +private slots: + void undo(); + void redo(); + void select(); private: + void updateRow (int, int, SimpleSettings &); Ui::HistoryWindow ui; + MapEditor *mapEditor; };