historywindow.h
author insilmaril
Wed, 06 Sep 2006 12:47:06 +0000
changeset 379 a62478df8d46
parent 377 5391ab620c95
child 381 c79df732d095
permissions -rw-r--r--
1.8.55 New history window and showtextwindow
     1 #ifndef HISTORYWINDOW_H
     2 #define HISTORYWINDOW_H
     3 
     4 #include "settings.h"
     5 #include "ui_historywindow.h"
     6 
     7 /////////////////////////////////////////////////////////////////////////////
     8 class HistoryWindow:public QDialog
     9 {
    10 	Q_OBJECT
    11 
    12 public:
    13 	HistoryWindow(QWidget* parent = 0);
    14 	void update (SimpleSettings &);
    15 	
    16 
    17 private:
    18 	Ui::HistoryWindow ui;
    19 };
    20 
    21 
    22 #endif