historywindow.h
author insilmaril
Wed Sep 06 12:47:06 2006 +0000 (2006-09-06)
changeset 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