PacMaster 2.0(r200)
Controls digital PAC measurements and collects the results

PacWaitDialog.h

Go to the documentation of this file.
00001 #ifndef PACWAITDIALOG_H
00002 #define PACWAITDIALOG_H
00003 
00004 #include <QDialog>
00005 #include <QProgressBar>
00006 
00007 namespace Ui {
00008     class PacWaitDialog;
00009 }
00010 
00011 class PacWaitDialog : public QDialog
00012 {
00013   Q_OBJECT
00014 
00015 public:
00016   explicit PacWaitDialog(QWidget *parent = 0);
00017   ~PacWaitDialog();
00018 
00019   class PacTimeProgressBar : public QProgressBar
00020   {
00021   public:
00022     PacTimeProgressBar(QWidget *parent = 0) : QProgressBar(parent) {};
00023     virtual QString text() const;
00024   };
00025 
00026 public slots:
00027   void setText(const QString &text);
00028   void setMaximum(int max);
00029   void setValue(int value);
00030 
00031 private:
00032   Ui::PacWaitDialog *ui;
00033 };
00034 
00035 #endif // PACWAITDIALOG_H
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Properties Friends Defines