historywindow.h
author insilmaril
Wed, 25 Apr 2007 16:02:54 +0000
changeset 468 82bd254b58da
parent 442 dfbc371b7280
child 483 01a0e82280f9
permissions -rw-r--r--
started doxygen documentation
     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 protected:
    22     void closeEvent( QCloseEvent* );
    23 
    24 private slots:	
    25 	void undo();
    26 	void redo();
    27 	void select();
    28 
    29 signals:
    30 	void windowClosed();
    31 
    32 private:
    33 	void clearRow (int);
    34 	void updateRow (int, int, SimpleSettings &);
    35 	Ui::HistoryWindow ui;
    36 	bool showwithmain;
    37 };
    38 
    39 
    40 #endif