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 
28 namespace 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
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:68
Ui
ArmarX Headers.
Definition: ArmarXMainWindow.h:54
visionx::SaveDialog::~SaveDialog
~SaveDialog() override
Definition: SaveDialog.cpp:43
visionx::SaveDialog::SaveDialog
SaveDialog(QWidget *parent=0)
Definition: SaveDialog.cpp:30
visionx::CoinPointCloud
Definition: CoinPointCloud.h:38
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:62
visionx::SaveDialog::releaseBuffer
void releaseBuffer()
Definition: SaveDialog.cpp:56