NewEntityIdDialog.cpp
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 #include "NewEntityIdDialog.h"
23 
24 #include <memory>
25 
26 #include <QDialogButtonBox>
27 #include <QGridLayout>
28 #include <QLabel>
29 #include <QLineEdit>
30 #include <QPushButton>
31 #include <QVBoxLayout>
32 #include <qboxlayout.h>
33 #include <qdialog.h>
34 #include <qfont.h>
35 #include <qgridlayout.h>
36 #include <qlabel.h>
37 #include <qobject.h>
38 #include <qwidget.h>
39 
41 
43 
45 {
46 
48  QDialog(parent), coreSegmentID(std::make_unique<armem::MemoryID>(coreSegmentID))
49  {
50  _providerSegmentName = new QLineEdit(this);
51  _entityName = new QLineEdit(this);
52 
53  _buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, this);
54 
55  QLabel* instruction =
56  new QLabel("Enter provider segment name and entity name for new entity:");
57  QFont font = instruction->font();
58  font.setBold(true);
59  instruction->setFont(font);
60 
61 
62  QGridLayout* grid = new QGridLayout();
63  int col = 0;
64 
65  grid->addWidget(new QLabel("Core Segment ID"), 0, col);
66  grid->addWidget(new QLabel(QString::fromStdString(coreSegmentID.str()) + "/"), 1, col);
67  ++col;
68 
69  grid->addWidget(new QLabel("Provider Segment Name"), 0, col);
70  grid->addWidget(_providerSegmentName, 1, col);
71  ++col;
72 
73  grid->addWidget(new QLabel("/"), 1, col);
74  ++col;
75 
76  grid->addWidget(new QLabel("Entity Name"), 0, col);
77  grid->addWidget(_entityName, 1, col);
78  ++col;
79 
80 
81  QVBoxLayout* layout = new QVBoxLayout();
82  setLayout(layout);
83  layout->addWidget(instruction);
84  layout->addLayout(grid);
85  layout->addWidget(_buttonBox);
86 
87 
88  connect(_buttonBox, &QDialogButtonBox::accepted, this, &QDialog::accept);
89  connect(_buttonBox, &QDialogButtonBox::rejected, this, &QDialog::reject);
90 
91  auto enableOkIfReady = [this]()
92  {
93  _buttonBox->button(QDialogButtonBox::Ok)
94  ->setEnabled(_providerSegmentName->text().size() > 0 and
95  _entityName->text().size() > 0);
96  };
97  connect(_providerSegmentName, &QLineEdit::textChanged, this, enableOkIfReady);
98  connect(_entityName, &QLineEdit::textChanged, this, enableOkIfReady);
99 
100  enableOkIfReady();
101  }
102 
104  {
105  }
106 
107  QString
109  {
110  return _providerSegmentName->text();
111  }
112 
113  QString
115  {
116  return _entityName->text();
117  }
118 
121  {
122  armem::MemoryID id;
123  id.providerSegmentName = providerSegmentName().toStdString();
124  id.entityName = entityName().toStdString();
125  return id;
126  }
127 
130  {
132  ARMARX_CHECK_NOT_NULL(coreSegmentID);
133  entityID.setCoreSegmentID(*coreSegmentID);
134  return entityID;
135  }
136 
137 } // namespace armarx::navigation::qt_plugins::location_graph_editor
armarx::navigation::graph::coreSegmentID
const armem::MemoryID coreSegmentID
Definition: constants.h:30
armarx::armem::MemoryID::setCoreSegmentID
void setCoreSegmentID(const MemoryID &id)
Definition: MemoryID.cpp:366
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
armarx::armem::MemoryID::providerSegmentName
std::string providerSegmentName
Definition: MemoryID.h:52
MemoryID.h
ARMARX_CHECK_NOT_NULL
#define ARMARX_CHECK_NOT_NULL(ptr)
This macro evaluates whether ptr is not null and if it turns out to be false it will throw an Express...
Definition: ExpressionException.h:206
armarx::armem::MemoryID::str
std::string str(bool escapeDelimiters=true) const
Get a string representation of this memory ID.
Definition: MemoryID.cpp:102
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::armem
Definition: LegacyRobotStateMemoryAdapter.cpp:32
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
ExpressionException.h
NewEntityIdDialog.h
std
Definition: Application.h:66
armarx::human::MemoryID
const armem::MemoryID MemoryID
Definition: memory_ids.cpp:28