27 #include <QFileDialog>
37 #include <ArmarXGui/gui-plugins/StatechartEditorPlugin/view/dialogs/ui_EditStatechartGroupDialog.h>
48 QList<QString> selectedProxies,
51 const QMap<QString, QString>& statechartGroupConfigurations,
52 const QString& description,
57 packageTool(packageTool),
59 statechartProfiles(statechartProfiles),
60 configurations(statechartGroupConfigurations),
61 variantInfo(variantInfo),
65 ui->btnShowPackageError->setVisible(
false);
67 ui->checkBoxGenerateContext->setChecked(generateContext);
69 connect(ui->checkBoxGenerateContext,
70 SIGNAL(stateChanged(
int)),
76 setWindowTitle(
"Create new Statechart Group");
77 QRegExp rx(
"([a-zA-Z][a-zA-Z0-9]*)");
78 ui->editStatechartGroup->setValidator(
new QRegExpValidator(rx,
this));
80 connect(ui->btnSelectPackageFolder, SIGNAL(clicked()),
this, SLOT(
selectPackagePath()));
81 connect(ui->editPackagePath,
82 SIGNAL(textChanged(QString)),
85 connect(ui->editStatechartGroup,
86 SIGNAL(textChanged(QString)),
90 timer =
new QTimer(
this);
92 timer->setSingleShot(
true);
95 ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(
false);
96 ui->tabWidget->setCurrentIndex(0);
100 setWindowTitle(groupName +
" - Properties");
101 ui->editStatechartGroup->setText(groupName);
102 ui->textEditGroupDescription->setPlainText(description);
103 ui->editPackagePath->setEnabled(
false);
104 ui->editStatechartGroup->setEnabled(
false);
105 ui->btnSelectPackageFolder->setEnabled(
false);
107 ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(
true);
111 throw LocalException(
"Not supported enum value.");
114 QStringList properties;
115 QStandardItemModel* model =
new QStandardItemModel(ui->listProxies);
119 QString libName = QString::fromUtf8(lib->getName().c_str());
124 QString proxyHumanName = QString::fromUtf8(proxy->getHumanName().c_str());
125 QString proxyMemberName = QString::fromUtf8(proxy->getMemberName().c_str());
126 QString
display = QString(
"[%1] %3").arg(libName, proxyHumanName);
127 QStandardItem* listItem =
new QStandardItem(
display);
128 QString proxyId = QString(
"%1.%2").arg(libName, proxyMemberName);
129 listItem->setData(proxyId, Qt::UserRole);
130 listItem->setCheckable(
true);
131 listItem->setEditable(
false);
132 listItem->setCheckState(selectedProxies.contains(proxyId) ? Qt::Checked
134 model->appendRow(listItem);
138 filterModel->setFilterCaseSensitivity(Qt::CaseInsensitive);
139 filterModel->setSourceModel(model);
140 ui->listProxies->setModel(filterModel);
141 connect(ui->lineEditProxyFilter,
142 SIGNAL(textChanged(QString)),
144 SLOT(setFilterFixedString(QString)));
147 std::list<StatechartProfilePtr> profileQueue;
148 profileQueue.push_back(statechartProfiles->getRootProfile());
149 connect(ui->comboBoxStatechartProfiles,
150 SIGNAL(currentIndexChanged(QString)),
153 connect(ui->tabWidget,
154 SIGNAL(currentChanged(
int)),
157 while (!profileQueue.empty())
160 profileQueue.pop_front();
161 ui->comboBoxStatechartProfiles->addItem(
162 QString(currentProfile->getNesting(),
'-') +
" " +
163 QString::fromStdString(currentProfile->getName()),
164 QString::fromStdString(currentProfile->getName()));
165 for (
auto it = currentProfile->getChildren().rbegin();
166 it != currentProfile->getChildren().rend();
169 profileQueue.push_front(*it);
171 if (profileQueue.size() == 0)
175 if (configurations[QString::fromStdString(currentProfile->getName())].isEmpty())
177 configurations[QString::fromStdString(currentProfile->getName())] =
178 properties.join(
"\n");
183 connect(ui->listProxies->model(),
184 SIGNAL(dataChanged(QModelIndex, QModelIndex)),
205 return ui->editStatechartGroup->text();
217 if (not path.empty())
220 return QString::fromStdString(path.string());
227 <<
"` does not provide the STATECHARTS_DIR cmake variable!"
228 <<
"Using legacy path for now.";
230 std::filesystem::path path = ui->editPackagePath->text().toUtf8().data();
233 path /=
"statecharts";
236 return QString::fromUtf8(path.c_str());
242 return ui->textEditGroupDescription->toPlainText();
248 const std::filesystem::path packagePath =
getPackagePath().toStdString();
252 for (
const std::string& package : packages)
257 return QString::fromStdString(package);
260 std::stringstream ss;
261 ss <<
"No CMake package found for path " << packagePath <<
".";
262 throw LocalException(ss.str());
271 std::filesystem::path path = ui->editPackagePath->text().toUtf8().data();
272 std::filesystem::path cleanPath = path;
276 cleanPath = std::filesystem::canonical(path);
282 if (*cleanPath.string().rbegin() ==
'/' || *cleanPath.string().rbegin() ==
'\\')
284 cleanPath = cleanPath.remove_filename();
288 return QString::fromUtf8(cleanPath.c_str());
294 QList<QString> proxies;
295 QSortFilterProxyModel* proxy =
296 qobject_cast<QSortFilterProxyModel*>(ui->listProxies->model());
297 QStandardItemModel* model = qobject_cast<QStandardItemModel*>(proxy->sourceModel());
298 for (
int row = 0; row < model->rowCount(); row++)
300 auto item = model->item(row);
301 if (item && item->checkState() == Qt::Checked)
303 proxies.append(item->data(Qt::UserRole).toString());
313 return ui->checkBoxGenerateContext->isChecked();
316 QMap<QString, QString>
319 return configurations;
331 QFileDialog selectFolder(
this,
"Select ArmarX Package Root Folder");
333 urls << QUrl::fromLocalFile(
334 QDesktopServices::storageLocation(QDesktopServices::HomeLocation))
335 << QUrl::fromLocalFile(
336 QDesktopServices::storageLocation(QDesktopServices::DesktopLocation));
343 selectFolder.setSidebarUrls(urls);
345 selectFolder.setOption(QFileDialog::ReadOnly,
true);
346 selectFolder.setOption(QFileDialog::HideNameFilterDetails,
false);
347 selectFolder.setFileMode(QFileDialog::Directory);
349 if (selectFolder.exec() == QDialog::Accepted)
351 ui->editPackagePath->setText(*selectFolder.selectedFiles().begin());
358 std::string cmdOutput;
359 if (packageTool->checkPackagePath(ui->editPackagePath->text().toStdString(), cmdOutput))
361 ui->labelPackageError->setText(
"Package path is valid.");
362 QPalette p(ui->labelPackageError->palette());
363 p.setColor(ui->labelPackageError->backgroundRole(), QColor::fromRgb(120, 255, 120));
365 ui->labelPackageError->setPalette(p);
367 if (!ui->editStatechartGroup->text().isEmpty())
369 ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(
true);
373 ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(
false);
375 ui->labelPackageError->setToolTip(
"");
376 ui->btnShowPackageError->setVisible(
false);
380 ui->labelPackageError->setText(
"Package path is not valid!");
381 ui->labelPackageError->setToolTip(QString::fromStdString(cmdOutput));
382 QPalette p(ui->labelPackageError->palette());
383 p.setColor(ui->labelPackageError->backgroundRole(), QColor::fromRgb(255, 120, 120));
384 ui->labelPackageError->setPalette(p);
385 ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(
false);
386 ui->btnShowPackageError->setVisible(
true);
393 ui->listProxies->setEnabled(ui->checkBoxGenerateContext->isChecked());
399 int i = ui->comboBoxStatechartProfiles->findText(profileText);
404 auto profile = ui->comboBoxStatechartProfiles->itemData(i).toString();
405 ui->textEditParameters->setPlainText(configurations[profile]);
411 int i = ui->comboBoxStatechartProfiles->currentIndex();
412 auto profile = ui->comboBoxStatechartProfiles->itemData(i).toString();
413 configurations[profile] = ui->textEditParameters->toPlainText();
428 QString libName = QString::fromUtf8(lib->getName().c_str());
431 QString proxyMemberName = QString::fromUtf8(proxy->getMemberName().c_str());
432 QString proxyId = QString(
"%1.%2").arg(libName, proxyMemberName);
433 if (selectedProxies.contains(proxyId))
435 if (!libs.contains(libName))
445 Ice::StringSeq types;
448 for (
auto& param : state->getInputParameters())
450 vars.insert(param->type);
452 for (
auto& param : state->getLocalParameters())
454 vars.insert(param->type);
456 for (
auto& param : state->getOutputParameters())
458 vars.insert(param->type);
461 for (
auto& var : vars)
466 types.push_back(type);
469 for (std::string& lib : variantInfo->findLibNames(types))
471 auto libName = QString::fromStdString(lib);
472 if (!libs.contains(libName))
478 ui->editDependencies->setText(libs.join(
" "));
483 armarx::EditStatechartGroupDialog::on_pushButton_clicked()
487 int i = ui->comboBoxStatechartProfiles->currentIndex();
492 auto profileName = ui->comboBoxStatechartProfiles->itemData(i).toString();
495 QString libName = QString::fromUtf8(lib->getName().c_str());
499 QString proxyMemberName = QString::fromUtf8(proxy->getMemberName().c_str());
500 QString proxyId = QString(
"%1.%2").arg(libName, proxyMemberName);
501 if (selectedProxies.contains(proxyId))
503 QString propName = QString(
"ArmarX.") + groupName +
"RemoteStateOfferer." +
504 QString::fromUtf8(proxy->getPropertyName().c_str());
506 if (!configurations[profileName].
contains(propName))
509 if (!proxy->getPropertyIsOptional())
511 newProp +=
"# Required Property\n";
512 newProp +=
"#" + propName +
" = <set value and uncomment!>\n";
516 newProp +=
"#" + propName +
" = " +
517 QString::fromUtf8(proxy->getPropertyDefaultValue().c_str()) +
521 configurations[profileName] +=
"\n" + newProp;
530 armarx::EditStatechartGroupDialog::on_btnShowPackageError_clicked()
532 QToolTip::showText(ui->btnShowPackageError->mapToGlobal(QPoint(10, 10)),
533 ui->labelPackageError->toolTip());