00001 #ifndef UIHELP_H 00002 #define UIHELP_H 00003 00004 #include <QMainWindow> 00005 #include <QDebug> 00006 00007 #include "utils/utils.h" 00008 00009 namespace Ui { 00010 class uihelp; 00011 } 00012 00018 class uihelp : public QMainWindow 00019 { 00020 Q_OBJECT 00021 00022 public: 00034 explicit uihelp(QString path, QString title, QFont fnt, QWidget *parent = 0); 00035 00039 ~uihelp(); 00040 00041 protected: 00049 void changeEvent(QEvent *e); 00050 00051 private: 00052 Ui::uihelp *ui; 00053 }; 00054 00055 #endif // UIHELP_H