author | insilmaril |
Sat Mar 31 09:28:27 2007 +0000 (2007-03-31) | |
changeset 441 | 658ad3bc0c8a |
parent 404 | 53efc2562a7d |
child 442 | dfbc371b7280 |
permissions | -rw-r--r-- |
1 #ifndef HISTORYWINDOW_H
2 #define HISTORYWINDOW_H
4 #include "settings.h"
5 #include "ui_historywindow.h"
8 /////////////////////////////////////////////////////////////////////////////
9 class HistoryWindow:public QDialog
10 {
11 Q_OBJECT
13 public:
14 HistoryWindow(QWidget* parent = 0);
15 ~HistoryWindow();
16 void update (SimpleSettings &);
17 void setStepsTotal (int);
18 void setShowWithMain (bool);
19 bool showWithMain ();
21 private slots:
22 void undo();
23 void redo();
24 void select();
26 private:
27 void clearRow (int);
28 void updateRow (int, int, SimpleSettings &);
29 Ui::HistoryWindow ui;
30 bool showwithmain;
31 };
34 #endif