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
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 #ifndef STATISTICS_DIALOG_H_
00042 #define STATISTICS_DIALOG_H_
00043
00044 #include <QLineEdit>
00045 #include <QDialog>
00046 #include <QDialogButtonBox>
00047 #include <QFormLayout>
00048 #include <QVBoxLayout>
00049 #include <QLineEdit>
00050 #include <QLabel>
00051 #include <QTimer>
00052 #include <pcl/apps/point_cloud_editor/statistics.h>
00053
00054 class StatisticsDialog : public QDialog
00055 {
00056 Q_OBJECT
00057
00058 public:
00060 StatisticsDialog(QWidget *parent = 0);
00062 ~StatisticsDialog ();
00063
00064 public slots:
00066 void update ();
00067
00068 private slots:
00069 void accept ();
00070
00071 private:
00073 QDialogButtonBox *button_box_;
00074
00075 QLabel *stat_label_;
00076
00078 QTimer timer_;
00079 };
00080
00081 #endif // STATISTICS_DIALOG_H_