SaveDialog.cpp
Go to the documentation of this file.
1/*
2 * This file is part of ArmarX.
3 *
4 * Copyright (C) 2011-2016, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
5 *
6 * ArmarX is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * ArmarX is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * @package
19 * @author
20 * @date
21 * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22 * GNU General Public License
23 */
24#include "SaveDialog.h"
25
26#include <VisionX/gui-plugins/PointCloudViewer/ui_SaveDialog.h>
27
28namespace visionx
29{
30 SaveDialog::SaveDialog(QWidget* parent) :
31 QDialog(parent), ui(new Ui::SaveDialog), fileDialog(this)
32 {
33 ui->setupUi(this);
34
35 //Connect select file button
36 connect(ui->pushButton, SIGNAL(pressed()), this, SLOT(openFile()));
37
38 //Init file dialog
39 fileDialog.setNameFilter(tr("Point Clouds (*.pcd)"));
40 fileDialog.setAcceptMode(QFileDialog::AcceptSave);
41 }
42
44 {
45 delete ui;
46 }
47
48 void
50 {
51 this->ui->widget->getDisplay()->getRootNode()->addChild(cloud);
52 this->ui->widget->getDisplay()->cameraViewAll();
53 }
54
55 void
57 {
58 this->ui->widget->getDisplay()->getRootNode()->removeAllChildren();
59 }
60
61 std::string
63 {
64 return ui->lineEdit->text().toStdString();
65 }
66
67 void
69 {
70 if (fileDialog.exec())
71 {
72 ui->lineEdit->setText(fileDialog.selectedFiles()[0]);
73 }
74 }
75} // namespace visionx
SaveDialog(QWidget *parent=0)
~SaveDialog() override
std::string getResultFileName()
After calling the dialog, this contains the chosen file name.
void setPointCloudToSave(CoinPointCloud *cloud)
ArmarX Headers.
ArmarX headers.