progress_dialog.hpp
Go to the documentation of this file.
1 #ifndef RQT_BAG_EXPORTER_PROGRESS_DIALOG_HPP
2 #define RQT_BAG_EXPORTER_PROGRESS_DIALOG_HPP
3 
4 #ifndef Q_MOC_RUN
5 #include <ros/ros.h>
6 #endif
7 
8 #include <QDialog>
9 #include <QProgressBar>
10 #include <QVBoxLayout>
11 #include <QLabel>
12 #include <QPushButton>
13 
14 class ProgressDialog : public QDialog
15 {
16 Q_OBJECT
17 
18 public:
20 
21 Q_SIGNALS:
22  void drawProgress(const int value,
23  const QString msg);
24 
25  void drawProgress(const int value);
26 
27  void drawProgress(const QString msg);
28 
29 private Q_SLOTS:
30  void progressValueChanged();
31 
32  void progressChanged(const int value,
33  const QString msg);
34 
35  void progressChanged(const int value);
36 
37  void progressChanged(const QString msg);
38 
39 private:
41  QProgressBar *progress_value_;
42  QPushButton *cancel_button_;
43 };
44 
45 #endif
void progressValueChanged()
QProgressBar * progress_value_
void drawProgress(const int value, const QString msg)
QPushButton * cancel_button_
void progressChanged(const int value, const QString msg)
QLabel * progress_message_


rqt_bag_exporter
Author(s): Romain Hernandez, Victor Lamoine - Institut Maupertuis
autogenerated on Mon Jun 10 2019 14:57:01