00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef WORKDIALOG_H
00011 #define WORKDIALOG_H
00012
00013 #include <qvariant.h>
00014 #include <qdialog.h>
00015
00016 class QVBoxLayout;
00017 class QHBoxLayout;
00018 class QGridLayout;
00019 class QSpacerItem;
00020 class QGroupBox;
00021 class QTextEdit;
00022 class QPushButton;
00023 class QLabel;
00024 class QProgressBar;
00025
00026 class WorkDialog : public QDialog
00027 {
00028 Q_OBJECT
00029
00030 public:
00031 WorkDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00032 ~WorkDialog();
00033
00034 QGroupBox* groupBox1;
00035 QTextEdit* TextOutput;
00036 QPushButton* buttonCancel;
00037 QPushButton* buttonClose;
00038 QLabel* OverallLabel;
00039 QProgressBar* OverProgressBar;
00040 QProgressBar* ProgressBar;
00041 QLabel* textLabel2;
00042 QLabel* EstSize;
00043 QLabel* TimeLeft;
00044
00045 protected:
00046 QGridLayout* WorkDialogLayout;
00047 QSpacerItem* spacer3;
00048 QGridLayout* groupBox1Layout;
00049 QHBoxLayout* layout1;
00050
00051 protected slots:
00052 virtual void languageChange();
00053
00054 };
00055
00056 #endif // WORKDIALOG_H