00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef ALERTDLG_H
00011 #define ALERTDLG_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 QSpacerItem;
00021 class QPushButton;
00022 class QLabel;
00023
00024 class AlertDlg : public QDialog
00025 {
00026 Q_OBJECT
00027
00028 public:
00029 AlertDlg( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00030 ~AlertDlg();
00031
00032 QPushButton* m_ButtonIgnore;
00033 QPushButton* m_ButtonOk;
00034 QLabel* PixmapLabel2;
00035 QLabel* QLabel_1;
00036 QLabel* QLabel_2;
00037
00038 public slots:
00039 virtual void slotOk();
00040
00041 protected:
00042 QGridLayout* AlertDlgLayout;
00043
00044 protected slots:
00045 virtual void languageChange();
00046
00047 private:
00048 QPixmap image0;
00049
00050 };
00051
00052 #endif // ALERTDLG_H