historywindow.h
author insilmaril
Mon, 20 Nov 2006 12:12:02 +0000
changeset 404 53efc2562a7d
parent 388 3a58c9ef4a18
child 421 5522d1da7e37
permissions -rw-r--r--
historywindow moved to mainwindow. Started to get rid of Q3PtrList finally
     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