28 #include <QDesktopWidget>
29 #include <QFileDialog>
30 #include <QInputDialog>
31 #include <QMessageBox>
37 #include <ArmarXGui/gui-plugins/StatechartEditorPlugin/view/dialogs/ui_StateDialog.h>
41 #include "../../../StatechartViewerPlugin/model/stateinstance/RemoteState.h"
46 QMap<QString, DynamicLibraryPtr> StateDialog::Libraries = QMap<QString, DynamicLibraryPtr>();
54 QPointer<TipDialog> tipDialog,
58 stateInstance(stateInstance),
59 communicator(communicator),
60 variantInfo(variantInfo),
61 currentProfile(currentProfile),
66 setWindowTitle(
"State " + stateInstance->getInstanceName() +
" Dialog");
67 ui->tableInput->setCommunicator(communicator);
68 ui->tableLocal->setCommunicator(communicator);
69 ui->tableOutput->setCommunicator(communicator);
70 ui->tableInput->setCurrentProfile(currentProfile);
71 ui->tableLocal->setCurrentProfile(currentProfile);
72 ui->tableOutput->setCurrentProfile(currentProfile);
74 ui->tableLocal->hideValueColumns();
75 ui->tableOutput->hideValueColumns();
80 ui->tableInput->setVariantInfo(variantInfo);
81 ui->tableLocal->setVariantInfo(variantInfo);
82 ui->tableOutput->setVariantInfo(variantInfo);
88 if (!stateInstance->getParent())
91 ui->editInstanceName->setEnabled(
false);
94 ui->editInstanceName->setText(stateInstance->getInstanceName());
95 ui->editInstanceName->setValidator(
96 new QRegExpValidator(QRegExp(
"([a-zA-Z][a-zA-Z0-9_]*)"),
this));
100 ui->editStateName->setText(state->getStateName());
101 ui->stateDocuEditor->setPlainText(state->getDescription());
105 ui->cbOutgoingEvents->addItem(e->name);
106 eventDescriptionMap[e->name] = e->description;
109 if (!outgoingEvents.isEmpty())
111 eventNameComboboxChanged(ui->cbOutgoingEvents->currentText());
114 ui->tableInput->setStateInstance(stateInstance);
115 ui->tableInput->buildFromMap(state->getInputParameters());
116 ui->tableLocal->setStateInstance(stateInstance);
117 ui->tableLocal->buildFromMap(state->getLocalParameters());
118 ui->tableOutput->setStateInstance(stateInstance);
119 ui->tableOutput->buildFromMap(state->getOutputParameters());
121 connect(ui->tabWidget, SIGNAL(currentChanged(
int)),
this, SLOT(setBlackLists()));
126 ui->editStateName->setEnabled(
false);
127 ui->stateDocuEditor->setEnabled(
false);
128 ui->cbOutgoingEvents->setEnabled(
false);
129 ui->btnAddEvent->setEnabled(
false);
130 ui->tabWidget->setTabEnabled(1,
false);
131 ui->tabWidget->setTabEnabled(2,
false);
132 ui->tabWidget->setTabEnabled(3,
false);
136 std::dynamic_pointer_cast<statechartmodel::RemoteState>(stateInstance);
140 ui->editProxyName->setText(remoteState->proxyName);
144 ui->editProxyName->setEnabled(
false);
148 std::dynamic_pointer_cast<statechartmodel::EndState>(stateInstance);
152 ui->labelInstanceName->setText(
"State/Event name");
156 ui->labelInstanceName->setText(
"State Instance name");
160 fileDialog =
new QFileDialog(
this);
161 fileDialog->setModal(
true);
162 fileDialog->setFileMode(QFileDialog::ExistingFiles);
163 fileDialog->setOption(QFileDialog::HideNameFilterDetails,
false);
165 urls << QUrl::fromLocalFile(
166 QDesktopServices::storageLocation(QDesktopServices::HomeLocation))
167 << QUrl::fromLocalFile(
168 QDesktopServices::storageLocation(QDesktopServices::DesktopLocation));
175 fileDialog->setSidebarUrls(urls);
176 QStringList fileTypes;
177 fileTypes << tr(
"Libraries (*.so)") << tr(
"All Files (*.*)");
178 fileDialog->setNameFilters(fileTypes);
180 connect(fileDialog, SIGNAL(accepted()),
this, SLOT(loadLibrary()));
182 connect(ui->cbOutgoingEvents,
183 SIGNAL(currentIndexChanged(
const QString&)),
185 SLOT(eventNameComboboxChanged(
const QString&)));
186 connect(ui->btnAddEvent, SIGNAL(clicked()),
this, SLOT(eventButtonAdd()));
187 connect(ui->btnDeleteEvent, SIGNAL(clicked()),
this, SLOT(eventButtonDelete()));
189 ui->editEventDescription, SIGNAL(textChanged()),
this, SLOT(eventDescriptionChanged()));
190 connect(ui->btnLock, SIGNAL(toggled(
bool)),
this, SLOT(setLockStatus(
bool)));
191 connect(ui->tableInput,
192 SIGNAL(typeChanged(
int, QString)),
194 SLOT(updateLinkHint(
int, QString)));
195 connect(ui->tableLocal,
196 SIGNAL(typeChanged(
int, QString)),
198 SLOT(updateLinkHint(
int, QString)));
199 connect(ui->tableOutput,
200 SIGNAL(typeChanged(
int, QString)),
202 SLOT(updateLinkHint(
int, QString)));
204 ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(!readOnly);
209 setLockStatus(
false);
212 if (readOnly || !locked)
217 QRect rec = QApplication::desktop()->screenGeometry();
218 this->resize(rec.width() * 0.9, this->height());
220 updateLinkHint(0, 0);
233 if (stateInstance && (state = stateInstance->getStateClass()))
235 return getUpdatedParameters(state->getInputParameters(), *ui->tableInput);
238 throw new LocalException(
"Could not get state parameters; invalid state?");
247 if (stateInstance && (state = stateInstance->getStateClass()))
249 return getUpdatedParameters(state->getLocalParameters(), *ui->tableLocal);
252 throw new LocalException(
"Could not get state parameters; invalid state?");
261 if (stateInstance && (state = stateInstance->getStateClass()))
263 return getUpdatedParameters(state->getOutputParameters(), *ui->tableOutput);
266 throw new LocalException(
"Could not get state parameters; invalid state?");
273 return ui->editInstanceName->text();
279 return ui->editStateName->text();
285 return ui->editProxyName->text();
291 return ui->stateDocuEditor->toPlainText();
299 for (
int i = 0; i < ui->cbOutgoingEvents->count(); ++i)
302 event->name = ui->cbOutgoingEvents->itemText(i);
303 event->description = eventDescriptionMap[
event->name];
304 eventList.append(event);
311 StateDialog::eventNameComboboxChanged(
const QString& eventName)
313 ui->editEventDescription->setEnabled(
true);
314 ui->editEventDescription->setPlainText(eventDescriptionMap[eventName]);
315 ui->btnDeleteEvent->setEnabled(
true);
319 StateDialog::eventButtonAdd()
321 RegExpValidatedInputDialog d(
322 "New Event Name",
"Event name", QRegExp(
"^([a-zA-Z_]{1})([a-zA-Z_0-9]+)$"),
this);
324 if (d.exec() == QDialog::Accepted)
326 auto eventName = d.getTextValue();
327 if (!eventName.isEmpty())
329 ui->cbOutgoingEvents->addItem(eventName);
336 StateDialog::eventButtonDelete()
338 if (ui->cbOutgoingEvents->currentText() !=
"Failure")
340 ui->cbOutgoingEvents->removeItem(ui->cbOutgoingEvents->currentIndex());
344 QMessageBox::warning(0,
346 "You cannot delete the failure event. This event is needed to "
347 "handle internal statechart failures.");
352 StateDialog::eventDescriptionChanged()
354 eventDescriptionMap[ui->cbOutgoingEvents->currentText()] =
355 ui->editEventDescription->toPlainText();
359 StateDialog::loadLibrary()
362 QStringList
files = fileDialog->selectedFiles();
363 foreach (QString file,
files)
367 if (Libraries.find(file) != Libraries.end())
373 lib->load(file.toStdString());
374 Libraries[file] = lib;
377 ui->tableInput->refreshVariantTypes();
378 ui->tableLocal->refreshVariantTypes();
379 ui->tableOutput->refreshVariantTypes();
383 StateDialog::setBlackLists()
385 ui->tableInput->setKeyBlackList(ui->tableLocal->getKeys());
386 ui->tableLocal->setKeyBlackList(ui->tableInput->getKeys());
390 StateDialog::setLockStatus(
bool unlock)
392 if (unlock && tipDialog)
394 tipDialog->setModal(
true);
395 tipDialog->showMessage(
396 "You are unlocking the editing of the state class. Editing a state class will "
397 "change all occurrences of this state and not only this instance. To use custom "
398 "parameters for this instance use the transition mapping.",
399 "State class unlocking");
400 tipDialog->resize(500, 150);
401 tipDialog->activateWindow();
405 ui->tableInput->setEnabled(unlock);
406 ui->tableOutput->setEnabled(unlock);
407 ui->tableLocal->setEnabled(unlock);
408 ui->cbOutgoingEvents->setEnabled(unlock);
409 ui->stateDocuEditor->setEnabled(unlock);
410 ui->editEventDescription->setEnabled(unlock);
414 StateDialog::updateLinkHint(
int, QString)
422 vars.unite(ui->tableInput->getTypes())
423 .unite(ui->tableLocal->getTypes())
424 .unite(ui->tableOutput->getTypes());
425 Ice::StringSeq types;
426 for (
auto& var : vars)
431 types.push_back(type);
435 for (std::string& lib : variantInfo->findLibNames(types))
437 libs << QString::fromStdString(lib);
439 ui->editDependencies->setText(libs.join(
" "));
444 const StatechartEditorParameterEditor& parameterEditor)
const
448 QSet<QString> profiles;
453 profiles.insert(QString::fromUtf8(p->getName().data()));
457 for (
const auto& oldParamEntry :
source.toStdMap())
459 QString key = oldParamEntry.first;
462 if (newValues.contains(key) && newValues[key]->type == oldParamEntry.second->type)
464 for (
const auto& pdvEntry : oldParamEntry.second->profileDefaultValues.toStdMap())
466 if (!profiles.contains(pdvEntry.first))
468 newValues[key]->profileDefaultValues.insert(pdvEntry.first,
481 if (readOnly && tipDialog)
484 tipDialog->showMessage(
"This state is read-only. Thus, changes cannot be saved.",
487 tipDialog->activateWindow();