historywindow.h
author insilmaril
Thu, 14 Dec 2006 17:01:44 +0000
changeset 411 910ba9fab728
parent 404 53efc2562a7d
child 421 5522d1da7e37
permissions -rw-r--r--
1.8.61 various fixes, see changelog
     1 #ifndef HISTORYWINDOW_H
     2 #define HISTORYWINDOW_H
     3 
     4 #include "settings.h"
     5 #include "ui_historywindow.h"
     6 
     7 
     8 /////////////////////////////////////////////////////////////////////////////
     9 class HistoryWindow:public QDialog
    10 {
    11 	Q_OBJECT
    12 
    13 public:
    14 	HistoryWindow(QWidget* parent = 0);
    15 	~HistoryWindow();
    16 	void update (SimpleSettings &);
    17 	void setStepsTotal (int);
    18 
    19 private slots:	
    20 	void undo();
    21 	void redo();
    22 	void select();
    23 
    24 private:
    25 	void clearRow (int);
    26 	void updateRow (int, int, SimpleSettings &);
    27 	Ui::HistoryWindow ui;
    28 };
    29 
    30 
    31 #endif