historywindow.h
author insilmaril
Sat, 24 Feb 2007 12:32:53 +0000
changeset 431 c2ffbc9b832d
parent 421 5522d1da7e37
child 442 dfbc371b7280
permissions -rw-r--r--
bak
     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 	void setShowWithMain (bool);
    19 	bool showWithMain ();
    20 
    21 private slots:	
    22 	void undo();
    23 	void redo();
    24 	void select();
    25 
    26 private:
    27 	void clearRow (int);
    28 	void updateRow (int, int, SimpleSettings &);
    29 	Ui::HistoryWindow ui;
    30 	bool showwithmain;
    31 };
    32 
    33 
    34 #endif