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 #include <pcl/apps/point_cloud_editor/statisticsDialog.h> 00042 00043 StatisticsDialog::StatisticsDialog(QWidget *parent) 00044 { 00045 button_box_ = new QDialogButtonBox; 00046 button_box_->addButton(tr("Hide"), QDialogButtonBox::AcceptRole); 00047 connect(button_box_, SIGNAL(accepted()), this, SLOT(accept())); 00048 00049 stat_label_ = new QLabel(tr("")); 00050 QVBoxLayout *main_layout_ = new QVBoxLayout; 00051 main_layout_ -> addWidget(stat_label_); 00052 main_layout_ -> addWidget(button_box_); 00053 setLayout(main_layout_); 00054 setWindowTitle(tr("Cloud Editor Statistics")); 00055 connect(&timer_, SIGNAL(timeout()), this, SLOT(update())); 00056 timer_.start(200); 00057 } 00058 00059 StatisticsDialog::~StatisticsDialog () 00060 { 00061 delete button_box_; 00062 delete stat_label_; 00063 } 00064 00065 void 00066 StatisticsDialog::update () 00067 { 00068 stat_label_->setText(tr(Statistics::getStats().c_str())); 00069 } 00070 00071 void 00072 StatisticsDialog::accept () 00073 { 00074 this->done(0); 00075 } 00076