00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef ALERTDLG_H
00011 #define ALERTDLG_H
00012
00013 #include <ntqvariant.h>
00014 #include <ntqpixmap.h>
00015 #include <ntqdialog.h>
00016
00017 class TQVBoxLayout;
00018 class TQHBoxLayout;
00019 class TQGridLayout;
00020 class TQSpacerItem;
00021 class TQPushButton;
00022 class TQLabel;
00023
00024 class AlertDlg : public TQDialog
00025 {
00026 Q_OBJECT
00027
00028 public:
00029 AlertDlg( TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00030 ~AlertDlg();
00031
00032 TQPushButton* m_ButtonIgnore;
00033 TQPushButton* m_ButtonOk;
00034 TQLabel* PixmapLabel2;
00035 TQLabel* TQLabel_1;
00036 TQLabel* TQLabel_2;
00037
00038 public slots:
00039 virtual void slotOk();
00040
00041 protected:
00042 TQGridLayout* AlertDlgLayout;
00043
00044 protected slots:
00045 virtual void languageChange();
00046
00047 private:
00048 TQPixmap image0;
00049
00050 };
00051
00052 #endif // ALERTDLG_H