00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef ABOUTDLG_H
00011 #define ABOUTDLG_H
00012
00013 #include <qvariant.h>
00014 #include <qpixmap.h>
00015 #include <qdialog.h>
00016
00017 class QVBoxLayout;
00018 class QHBoxLayout;
00019 class QGridLayout;
00020 class QLabel;
00021 class QTextEdit;
00022 class QPushButton;
00023
00024 class AboutDlg : public QDialog
00025 {
00026 Q_OBJECT
00027
00028 public:
00029 AboutDlg( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00030 ~AboutDlg();
00031
00032 QLabel* PixmapLabel2;
00033 QTextEdit* textEdit1;
00034 QPushButton* PushButton1;
00035
00036 protected:
00037 QVBoxLayout* AboutDlgLayout;
00038 QVBoxLayout* layout2;
00039 QHBoxLayout* Layout2;
00040
00041 protected slots:
00042 virtual void languageChange();
00043
00044 private:
00045 QPixmap image0;
00046
00047 };
00048
00049 #endif // ABOUTDLG_H