26 #include <QDialogButtonBox>
27 #include <QGridLayout>
30 #include <QPushButton>
31 #include <QVBoxLayout>
32 #include <qboxlayout.h>
35 #include <qgridlayout.h>
50 _providerSegmentName =
new QLineEdit(
this);
51 _entityName =
new QLineEdit(
this);
53 _buttonBox =
new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel,
this);
56 new QLabel(
"Enter provider segment name and entity name for new entity:");
57 QFont font = instruction->font();
59 instruction->setFont(font);
62 QGridLayout* grid =
new QGridLayout();
65 grid->addWidget(
new QLabel(
"Core Segment ID"), 0, col);
66 grid->addWidget(
new QLabel(QString::fromStdString(coreSegmentID.
str()) +
"/"), 1, col);
69 grid->addWidget(
new QLabel(
"Provider Segment Name"), 0, col);
70 grid->addWidget(_providerSegmentName, 1, col);
73 grid->addWidget(
new QLabel(
"/"), 1, col);
76 grid->addWidget(
new QLabel(
"Entity Name"), 0, col);
77 grid->addWidget(_entityName, 1, col);
81 QVBoxLayout* layout =
new QVBoxLayout();
83 layout->addWidget(instruction);
84 layout->addLayout(grid);
85 layout->addWidget(_buttonBox);
88 connect(_buttonBox, &QDialogButtonBox::accepted,
this, &QDialog::accept);
89 connect(_buttonBox, &QDialogButtonBox::rejected,
this, &QDialog::reject);
91 auto enableOkIfReady = [
this]()
93 _buttonBox->button(QDialogButtonBox::Ok)
94 ->setEnabled(_providerSegmentName->text().size() > 0 and
95 _entityName->text().size() > 0);
97 connect(_providerSegmentName, &QLineEdit::textChanged,
this, enableOkIfReady);
98 connect(_entityName, &QLineEdit::textChanged,
this, enableOkIfReady);
110 return _providerSegmentName->text();
116 return _entityName->text();