diff -r 5391ab620c95 -r bf5ba1bd4764 historywindow.h --- a/historywindow.h Wed Sep 06 12:47:06 2006 +0000 +++ b/historywindow.h Thu Sep 14 11:38:17 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; };