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 #include <VisionX/gui-plugins/PointCloudViewer/ui_SaveDialog.h>
26 
27 namespace visionx
28 {
29  SaveDialog::SaveDialog(QWidget* parent) :
30  QDialog(parent),
31  ui(new Ui::SaveDialog),
32  fileDialog(this)
33  {
34  ui->setupUi(this);
35 
36  //Connect select file button
37  connect(ui->pushButton, SIGNAL(pressed()), this, SLOT(openFile()));
38 
39  //Init file dialog
40  fileDialog.setNameFilter(tr("Point Clouds (*.pcd)"));
41  fileDialog.setAcceptMode(QFileDialog::AcceptSave);
42  }
43 
45  {
46  delete ui;
47  }
48 
50  {
51  this->ui->widget->getDisplay()->getRootNode()->addChild(cloud);
52  this->ui->widget->getDisplay()->cameraViewAll();
53  }
54 
56  {
57  this->ui->widget->getDisplay()->getRootNode()->removeAllChildren();
58  }
59 
61  {
62  return ui->lineEdit->text().toStdString();
63  }
64 
66  {
67  if (fileDialog.exec())
68  {
69  ui->lineEdit->setText(fileDialog.selectedFiles()[0]);
70  }
71  }
72 }
visionx::SaveDialog::setPointCloudToSave
void setPointCloudToSave(CoinPointCloud *cloud)
Definition: SaveDialog.cpp:49
visionx
ArmarX headers.
Definition: OpenPoseStressTest.h:38
visionx::SaveDialog::openFile
void openFile()
Definition: SaveDialog.cpp:65
Ui
ArmarX Headers.
Definition: ArmarXMainWindow.h:58
visionx::SaveDialog::~SaveDialog
~SaveDialog() override
Definition: SaveDialog.cpp:44
visionx::SaveDialog::SaveDialog
SaveDialog(QWidget *parent=0)
Definition: SaveDialog.cpp:29
visionx::CoinPointCloud
Definition: CoinPointCloud.h:39
SaveDialog.h
visionx::SaveDialog
Definition: SaveDialog.h:38
visionx::SaveDialog::getResultFileName
std::string getResultFileName()
After calling the dialog, this contains the chosen file name.
Definition: SaveDialog.cpp:60
visionx::SaveDialog::releaseBuffer
void releaseBuffer()
Definition: SaveDialog.cpp:55