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