aboutdialog.h
author insilmaril
Wed, 10 Aug 2005 06:26:20 +0000
changeset 150 85eab6b8120b
parent 149 4426ecd854bb
child 153 47cd4ae30000
permissions -rw-r--r--
still changing aboutWindow
     1 #ifndef ABOUTDIALOG_H
     2 #define ABOUTDIALOG_H
     3 
     4 #include <qtabwidget.h>
     5 #include <qtextbrowser.h>
     6 #include <qlayout.h>
     7 #include <qdialog.h>
     8 #include <qpushbutton.h>
     9 #include <qstring.h>
    10 
    11 
    12 /////////////////////////////////////////////////////////////////////////////
    13 class AboutDialog :public QDialog
    14 {
    15 	Q_OBJECT
    16 
    17 public:
    18 	AboutDialog(QWidget* parent = 0, const char* name = 0);
    19 
    20 
    21 public slots:
    22 	virtual void openLink (const QString &);
    23 
    24 private:
    25 	QTabWidget *tabs;
    26 	QTextBrowser *credits;
    27 	QTextBrowser *license;
    28 
    29 	QBoxLayout *mainLayout;
    30 	QBoxLayout *topLayout;
    31 	QBoxLayout *bottomLayout;
    32 	QPushButton *okbutton;
    33 	
    34 };
    35 
    36 #endif