Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef RQT_MULTIPLOT_PROGRESS_WIDGET_H
00020 #define RQT_MULTIPLOT_PROGRESS_WIDGET_H
00021
00022 #include <QWidget>
00023
00024 namespace Ui {
00025 class ProgressWidget;
00026 };
00027
00028 namespace rqt_multiplot {
00029 class ProgressWidget :
00030 public QWidget {
00031 Q_OBJECT
00032 public:
00033 ProgressWidget(QWidget* parent = 0);
00034 virtual ~ProgressWidget();
00035
00036 void setCurrentProgress(double progress);
00037 double getCurrentProgress() const;
00038 bool isStarted() const;
00039
00040 void start(const QString& toolTip = QString());
00041 void finish(const QString& toolTip = QString());
00042 void fail(const QString& toolTip = QString());
00043
00044 private:
00045 Ui::ProgressWidget* ui_;
00046
00047 bool started_;
00048 };
00049 };
00050
00051 #endif