diff -r 401f76b830d1 -r 4426ecd854bb aboutdialog.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/aboutdialog.h Mon Aug 08 16:16:42 2005 +0000 @@ -0,0 +1,34 @@ +#ifndef ABOUTDIALOG_H +#define ABOUTDIALOG_H + +#include +#include +#include +#include +#include +#include + + +///////////////////////////////////////////////////////////////////////////// +class AboutDialog :public QDialog +{ +public: + AboutDialog( QWidget * parent = 0, const char * name = 0); + ~AboutDialog(); + +public slots: + virtual void openLnk (const QString &); + +private: + QTabWidget *tabs; + QTextBrowser *credits; + QTextBrowser *license; + + QBoxLayout *mainLayout; + QBoxLayout *topLayout; + QBoxLayout *bottomLayout; + QPushButton *okbutton; + +}; + +#endif