00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef PROGRESSDIALOGBASE_H
00010 #define PROGRESSDIALOGBASE_H
00011
00012 #include <qvariant.h>
00013 #include <qdialog.h>
00014 class QVBoxLayout;
00015 class QHBoxLayout;
00016 class QGridLayout;
00017 class QLabel;
00018 class QProgressBar;
00019
00021
00025 class progressDialogBase : public QDialog
00026 {
00027 Q_OBJECT
00028
00029 public:
00031
00034 progressDialogBase( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00036 ~progressDialogBase();
00037
00039
00043 QLabel* progressText;
00045
00048 QProgressBar* progressBar;
00049
00050 };
00051
00052 #endif // PROGRESSDIALOGBASE_H