30 #include <QDialogButtonBox>
31 #include <QInputDialog>
35 #include <QMessageBox>
36 #include <QPropertyAnimation>
37 #include <QPushButton>
38 #include <QStyledItemDelegate>
39 #include <QTableWidgetItem>
41 #include <QToolButton>
42 #include <QVBoxLayout>
57 #include <Ice/ObjectFactory.h>
80 defaultValueState(Qt::Unchecked)
84 setlocale(LC_ALL,
"C");
87 qRegisterMetaType<statechartmodel::StateParameterMap>(
"statechartmodel::StateParameterMap");
93 Qt::QueuedConnection);
97 if (params.size() == 0)
107 setItemDelegateForColumn(
eKey, &delegate);
129 QString::fromUtf8(
":/icons/help-about.ico"), QSize(), QIcon::Normal,
QIcon::Off);
130 showHelpButton->setIcon(icon);
131 showHelpButton->setToolTip(
"Show or edit help to this parameter.");
132 connect(showHelpButton, SIGNAL(clicked()),
this, SLOT(
showHelpDialog()));
137 QAction* addInputToParentAction =
new QAction(showHelpButton);
139 icon.addFile(QString::fromUtf8(
":/icons/add.png"), QSize(), QIcon::Normal,
QIcon::Off);
140 addInputToParentAction->setIcon(icon);
141 addInputToParentAction->setIconVisibleInMenu(
true);
142 addInputToParentAction->setText(
"Add to parent's input");
143 addInputToParentAction->setToolTip(
144 "Add this parameter to parent's input. This applies immediatly.");
145 addInputToParentAction->setData(row);
146 connect(addInputToParentAction, SIGNAL(triggered()),
this, SLOT(
addInputToParent()));
148 QMenu* subMenu =
new QMenu(showHelpButton);
149 subMenu->addAction(addInputToParentAction);
150 showHelpButton->setMenu(subMenu);
159 QToolButton* showHelpButton =
172 showHelpButton->setProperty(
"MarkdownDocText", pm->description);
174 pm->description.isEmpty() ? QColor{250, 0, 0} : QColor{0, 0, 250};
176 QPalette pal = showHelpButton->palette();
177 showHelpButton->setAutoFillBackground(
true);
178 QPropertyAnimation* animation =
179 new QPropertyAnimation(showHelpButton,
"color",
this);
180 animation->setDuration(3000);
184 animation->setKeyValueAt(t, color);
186 animation->setKeyValueAt(t, pal.color(QPalette::Button));
189 animation->setKeyValueAt(1, pal.color(QPalette::Button));
190 animation->setEasingCurve(QEasingCurve::InOutQuad);
203 QDialog editDefaultDialog;
204 editDefaultDialog.setWindowTitle(
"Statechart Parameter Documentation Editor");
205 editDefaultDialog.resize(QSize(600, 400));
209 QVBoxLayout* layout =
new QVBoxLayout;
210 layout->addWidget(dialogTextEdit);
211 QDialogButtonBox* buttonBox =
new QDialogButtonBox(dialogTextEdit);
212 buttonBox->setOrientation(Qt::Horizontal);
213 buttonBox->setStandardButtons(QDialogButtonBox::Cancel | QDialogButtonBox::Ok);
214 layout->addWidget(buttonBox);
215 editDefaultDialog.setLayout(layout);
217 connect(buttonBox, SIGNAL(accepted()), &editDefaultDialog, SLOT(accept()));
218 connect(buttonBox, SIGNAL(rejected()), &editDefaultDialog, SLOT(reject()));
220 if (editDefaultDialog.exec() == QDialog::Accepted)
222 sender()->setProperty(
"MarkdownDocText", dialogTextEdit->
toPlainText());
231 QAction* action = qobject_cast<QAction*>(sender());
232 row = action->data().toInt();
233 QString keyName = item(row,
eKey)->text();
235 auto parent =
state->getParent();
238 auto inputAndLocal = parent->getInputAndLocalParameters();
240 if (inputAndLocal.count(keyName) > 0)
242 QMessageBox::warning(
243 this,
"State Editing Error",
"The key '" + keyName +
"' already exists");
249 state->getParent()->setInputParameters(
input);
255 auto profileNames = getRelevantProfiles();
258 setColumnCount(columnCount);
266 for (
int i = 0; i < profileNames.size(); ++i)
269 setHorizontalHeaderItem(
eEditableValue + i,
new QTableWidgetItem(profileNames[i]));
282 this->keyBlackList = keyBlackList;
288 QSet<QString> result;
290 for (
int row = 0; row < rowCount(); row++)
292 if (item(row,
eKey) && !item(row,
eKey)->text().isEmpty())
294 result.insert(item(row,
eKey)->text());
305 for (
int i = 0; i < rowCount(); ++i)
315 if (
getKey(row).isEmpty())
324 if (
auto descriptionWidget =
327 p->description = descriptionWidget->property(
"MarkdownDocText").toString();
333 for (
const auto& profileName : getRelevantProfiles())
335 p->profileDefaultValues[profileName] = {variants[profileName], jsonValues[profileName]};
346 for (
int row = 0; row < rowCount(); ++row)
350 result[
getKey(row)] = param;
368 QMap<QString, QString>
371 if (row >= rowCount() || row < 0)
373 throw LocalException(
"row index out of range: ") << row;
376 QMap<QString, QString> result;
378 auto profileNames = getRelevantProfiles();
380 for (
int i = 0; i < profileNames.size(); ++i)
383 qobject_cast<ProfileDefaultValueEditWidget*>(cellWidget(row,
eEditableValue + i));
385 if (
auto value = widget->getValueAsString())
387 result[profileNames[i]] = *
value;
394 QMap<QString, QString>
399 for (
int i = 0; i < rowCount(); i++)
408 if (row >= rowCount() || row < 0)
410 throw LocalException(
"row index out of range: ") << row;
413 QMap<QString, QString> result;
415 auto profileNames = getRelevantProfiles();
417 for (
int i = 0; i < profileNames.size(); ++i)
420 qobject_cast<ProfileDefaultValueEditWidget*>(cellWidget(row,
eEditableValue + i));
422 if (
auto value = widget->getValueAsJson())
424 result[profileNames[i]] = *
value;
431 QMap<QString, VariantContainerBasePtr>
434 if (row >= rowCount() || row < 0)
436 throw LocalException(
"row index out of range: ") << row;
439 QMap<QString, VariantContainerBasePtr> result;
441 auto profileNames = getRelevantProfiles();
443 for (
int i = 0; i < profileNames.size(); ++i)
446 qobject_cast<ProfileDefaultValueEditWidget*>(cellWidget(row,
eEditableValue + i));
447 result[profileNames[i]] = widget->getVariantContainer();
456 if (row >= rowCount())
458 throw LocalException(
"row index out of range: ") << row;
461 if (!item(row,
eKey))
466 return item(row,
eKey)->text();
472 if (row >= rowCount())
474 throw LocalException(
"row index out of range: ") << row;
477 QComboBox* CBvalueType = qobject_cast<QComboBox*>(cellWidget(row, 1));
484 QString type = getBaseNameFromHumanName(CBvalueType->currentText());
500 for (
int i = 0; i < rowCount(); i++)
511 throw LocalException(
"could not find key ") << key.toStdString();
520 if (row >= rowCount())
522 throw LocalException(
"row index out of range: ") << row;
525 QComboBox* cbOptional = qobject_cast<QComboBox*>(cellWidget(row,
eOptional));
526 return cbOptional->currentText() ==
"true";
533 int row = rowCount();
535 setItem(row,
eKey,
new QTableWidgetItem());
541 QComboBox* valueTypebox =
new QComboBox;
542 valueTypebox->setEditable(
true);
545 setCellWidget(row,
eType, valueTypebox);
546 QStringList types = addVariantTypesToComboBox(valueTypebox);
548 fullCompleter->setCompletionMode(QCompleter::PopupCompletion);
549 fullCompleter->setCaseSensitivity(Qt::CaseInsensitive);
550 valueTypebox->setCompleter(fullCompleter);
551 valueTypebox->setEditText(
"string");
552 connect(valueTypebox, SIGNAL(editTextChanged(QString)),
this, SLOT(
typeCbChanged(QString)));
553 connect(valueTypebox->lineEdit(),
554 SIGNAL(textEdited(QString)),
556 SLOT(setCompletionInfix(QString)));
558 QComboBox* cbOptional;
559 cbOptional =
new QComboBox();
560 cbOptional->addItems(QString(
"true;false").
split(
";"));
561 cbOptional->setCurrentIndex(1);
562 setCellWidget(row,
eOptional, cbOptional);
567 QString::fromUtf8(
":/icons/dialog-close.ico"), QSize(), QIcon::Normal,
QIcon::Off);
568 QToolButton* deleteButton =
new QToolButton(
this);
569 deleteButton->setIcon(icon);
570 deleteButton->setToolTip(
"Add this parameter to parent's input");
571 deleteButton->setToolTip(
"Delete this row");
573 connect(deleteButton, SIGNAL(clicked()),
this, SLOT(
deleteRow()));
575 auto profileNames = getRelevantProfiles();
577 for (
int i = 0; i < profileNames.size(); ++i)
580 getBaseNameFromHumanName(valueTypebox->currentText()), QString(), communicator);
590 QString variantIdStr,
596 item(row,
eKey)->setText(key);
598 QComboBox* valueTypeBox = qobject_cast<QComboBox*>(cellWidget(row,
eType));
600 valueTypeBox->setEditText(getHumanNameFromBaseName(variantIdStr));
602 QComboBox* optionalBox = qobject_cast<QComboBox*>(cellWidget(row,
eOptional));
603 optionalBox->setCurrentIndex(optional ? 0 : 1);
605 for (
int i = 0; i <
values.size(); ++i)
618 QWidget* wid = qobject_cast<QWidget*>(sender());
625 int row = rowAt(wid->pos().y());
627 QComboBox* typeBox = qobject_cast<QComboBox*>(cellWidget(row,
eType));
628 QString typeStr = getBaseNameFromHumanName(typeBox->currentText());
633 qobject_cast<ProfileDefaultValueEditWidget*>(cellWidget(row, i)))
635 if (typeStr != valueWidget->getType())
639 setCellWidget(row, i, newWidget);
652 QWidget* wid = qobject_cast<QWidget*>(sender());
653 QModelIndex mIndex = indexAt(wid->pos());
664 connectUserEditSlots();
693 auto keyitem = item(row,
eKey);
697 if ((keyBlackList.find(keyitem->text()) != keyBlackList.end() ||
698 findItems(keyitem->text(), Qt::MatchExactly).size() > 1))
700 keyitem->setText(item(row,
eKey)->text() +
"_2");
701 ARMARX_WARNING_S <<
"Keys must be unique (input and local parameters share the "
707 if (row >= rowCount() - 1 && item(rowCount() - 1, 0) &&
708 !item(rowCount() - 1, 0)->text().isEmpty())
717 for (
int row = 0; row < rowCount(); row++)
719 QComboBox* valueTypeBox = qobject_cast<QComboBox*>(cellWidget(row,
eType));
720 addVariantTypesToComboBox(valueTypeBox);
726 StatechartEditorParameterEditor::connectUserEditSlots()
729 SIGNAL(cellEntered(
int,
int)),
732 Qt::UniqueConnection);
734 SIGNAL(cellPressed(
int,
int)),
737 Qt::UniqueConnection);
739 SIGNAL(cellChanged(
int,
int)),
742 Qt::UniqueConnection);
746 StatechartEditorParameterEditor::addVariantTypesToComboBox(QComboBox* combo)
750 return QStringList();
758 for (std::pair<VariantTypeId, std::string> pair : types)
760 QString typeName = tr(pair.second.c_str());
763 if (typeName.contains(
"Invalid"))
768 list.append(getHumanNameFromBaseName(typeName));
775 std::vector<VariantContainerType> containers;
779 for (VariantContainerType
c : containers)
781 for (
auto it : types)
783 QString typeName = tr(it.second.c_str());
786 if (typeName.contains(
"Invalid"))
792 typeName = QString::fromStdString(typeStr);
793 list.append(getHumanNameFromBaseName(typeName));
801 qSort(
list.begin(),
list.end(), compareVariantNames);
802 combo->addItems(
list);
807 StatechartEditorParameterEditor::getHumanNameFromBaseName(QString variantBaseTypeName)
const
811 return variantBaseTypeName;
814 std::string humanName =
815 variantInfo->getNestedHumanNameFromBaseName(variantBaseTypeName.toUtf8().data());
817 if (humanName.empty())
819 return variantBaseTypeName;
822 return QString::fromUtf8(humanName.c_str());
826 StatechartEditorParameterEditor::getBaseNameFromHumanName(QString humanName)
const
833 std::string variantBaseTypeName =
834 variantInfo->getNestedBaseNameFromHumanName(humanName.toUtf8().data());
836 if (variantBaseTypeName.empty())
841 return QString::fromUtf8(variantBaseTypeName.c_str());
845 StatechartEditorParameterEditor::compareVariantNames(
const QString&
a,
const QString& b)
850 pa =
a.contains(
"(");
851 pb = b.contains(
"(");
859 pa =
a.contains(
":");
860 pb = b.contains(
":");
868 int ia =
a.indexOf(
"(");
869 int ib = b.indexOf(
"(");
870 pa = ia > 0 &&
a.count() > ia + 1 &&
a[ia + 1].isLower();
871 pb = ib > 0 && b.count() > ib + 1 && b[ib + 1].isLower();
872 if (pa != pb &&
a.left(ia) == b.left(ib))
878 pa =
a.count() > 0 &&
a[0].isLower();
879 pb = b.count() > 0 && b[0].isLower();
886 return a.compare(b) < 0;
892 return defaultValueState;
898 defaultValueState =
value;
904 const auto& relevantProfiles = getRelevantProfiles();
906 for (
int i = 0; i < relevantProfiles.size(); ++i)
915 QStringList headerLabels{
"Key",
"Type",
"Optional",
"Del"};
916 setColumnWidth(
eKey, 180);
917 setColumnWidth(
eType, 225);
922 auto profileNames = getRelevantProfiles();
925 for (
int i = 0; i < profileNames.size(); ++i)
927 setColumnWidth(col + i, 200);
928 headerLabels.push_back(profileNames[i]);
931 setHorizontalHeaderLabels(headerLabels);
945 QWidget* tempW =
new QLabel(
"mylabel",
this);
946 tempW->deleteLater();
949 disconnect(
this, SIGNAL(cellEntered(
int,
int)));
950 disconnect(
this, SIGNAL(cellPressed(
int,
int)));
951 disconnect(
this, SIGNAL(cellChanged(
int,
int)));
953 auto relevantProfiles = getRelevantProfiles();
955 for (
const auto& entry : map.toStdMap())
957 const QString& name = entry.first;
961 QVector<QString> jsonStrs;
962 QString typeStr = param->type;
964 for (
const QString& profile : relevantProfiles)
966 QString jsonStr = param->profileDefaultValues[profile].second;
967 jsonStrs.push_back(jsonStr);
974 connectUserEditSlots();
979 StatechartEditorParameterEditor::getRelevantProfiles()
const
983 return QVector<QString>();
986 QVector<QString> result{QString::fromUtf8(currentProfile->getName().c_str())};
987 auto profile = currentProfile;
989 while ((profile = profile->getParent()))
991 result.push_back(QString::fromUtf8(profile->getName().c_str()));
998 StatechartEditorParameterEditor::LineEditDelegate::createEditor(
1000 const QStyleOptionViewItem&
option,
1001 const QModelIndex&
index)
const
1003 QLineEdit* lineEdit =
new QLineEdit(parent);
1004 QString regExpStr(
"(|([a-z_]{1})([a-z_0-9]*))");
1005 QRegExp reg(regExpStr, Qt::CaseInsensitive);
1006 lineEdit->setValidator(
new QRegExpValidator(reg, lineEdit));
1013 QString val = QString(
"background-color: rgb(%1, %2, %3);")