NewEntityIdDialog.h
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * ArmarX is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * ArmarX is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * @author Rainer Kartmann ( rainer dot kartmann at kit dot edu )
17  * @date 2021
18  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
19  * GNU General Public License
20  */
21 
22 #pragma once
23 
24 #include <memory>
25 
26 #include <QDialog>
27 #include <qdialog.h>
28 #include <qobject.h>
29 #include <qwidget.h>
30 
32 
33 
34 class QLineEdit;
35 class QDialogButtonBox;
36 
38 {
39  class NewEntityIdDialog : public QDialog
40  {
41  public:
42  NewEntityIdDialog(const armem::MemoryID& coreSegmentID, QWidget* parent = nullptr);
43  virtual ~NewEntityIdDialog() override;
44 
45  QString providerSegmentName() const;
46  QString entityName() const;
47 
48 
50  armem::MemoryID entityID() const;
51 
52 
53  private:
54  QLineEdit* _providerSegmentName = nullptr;
55  QLineEdit* _entityName = nullptr;
56 
57  QDialogButtonBox* _buttonBox = nullptr;
58 
59 
60  std::unique_ptr<armem::MemoryID> coreSegmentID;
61  };
62 
63 } // namespace armarx::navigation::qt_plugins::location_graph_editor
armarx::navigation::qt_plugins::location_graph_editor::NewEntityIdDialog::NewEntityIdDialog
NewEntityIdDialog(const armem::MemoryID &coreSegmentID, QWidget *parent=nullptr)
Definition: NewEntityIdDialog.cpp:47
armarx::navigation::qt_plugins::location_graph_editor::NewEntityIdDialog::entityID
armem::MemoryID entityID() const
Definition: NewEntityIdDialog.cpp:129
forward_declarations.h
armarx::navigation::qt_plugins::location_graph_editor::NewEntityIdDialog::providerSegmentName
QString providerSegmentName() const
Definition: NewEntityIdDialog.cpp:108
armarx::navigation::qt_plugins::location_graph_editor::NewEntityIdDialog::entityIDWithoutCoreSegmentID
armem::MemoryID entityIDWithoutCoreSegmentID() const
Definition: NewEntityIdDialog.cpp:120
armarx::navigation::qt_plugins::location_graph_editor::NewEntityIdDialog::~NewEntityIdDialog
virtual ~NewEntityIdDialog() override
Definition: NewEntityIdDialog.cpp:103
armarx::armem::MemoryID
A memory ID.
Definition: MemoryID.h:47
armarx::navigation::qt_plugins::location_graph_editor
Definition: GuiGraph.cpp:34
armarx::navigation::qt_plugins::location_graph_editor::NewEntityIdDialog::entityName
QString entityName() const
Definition: NewEntityIdDialog.cpp:114
armarx::navigation::qt_plugins::location_graph_editor::NewEntityIdDialog
Definition: NewEntityIdDialog.h:39