25 #include <QFileDialog>
33 #include <ArmarXGui/gui-plugins/StatechartEditorPlugin/view/dialogs/ui_RenameGroupDialog.h>
46 groupRenamer(groupRenamer),
47 validGroupName(
"([a-zA-Z][a-zA-Z0-9]*)"),
48 colorGreen(QColor::fromRgb(120, 255, 120)),
49 colorRed(QColor::fromRgb(255, 120, 120)),
50 colorYellow(QColor::fromRgb(255, 200, 0)),
54 setOkButtonsEnabled(
false);
55 ui->editOldName->setText(group->getName());
56 ui->editOldName->setReadOnly(
true);
59 ui->editNewName->setValidator(
new QRegExpValidator(validGroupName,
this));
61 connect(ui->btnCancel, SIGNAL(clicked()),
this, SLOT(reject()));
64 connect(ui->btnDontSaveAndProceed, SIGNAL(clicked()),
this, SLOT(accept()));
65 connect(ui->editNewName, SIGNAL(textChanged(QString)),
this, SLOT(
verifyNewName(QString)));
74 auto childGroup =
c->getGroup();
75 allGroups.push_back(childGroup);
77 QVector<statechartmodel::StatePtr> allGroupStates = childGroup->getAllStates(
false);
79 bool isDependent = std::find_if(dependencies.constBegin(),
80 dependencies.constEnd(),
82 return g->getGroupPath() == group->getGroupPath();
83 }) != dependencies.constEnd();
85 if (isDependent && childGroup->getGroupPath() != group->getGroupPath())
87 dependantGroups.push_back(childGroup);
91 ui->groupsWidget->setRowCount(dependantGroups.size() + 1);
92 ui->groupsWidget->setColumnCount(1);
93 ui->groupsWidget->horizontalHeader()->setResizeMode(QHeaderView::Stretch);
94 ui->groupsWidget->setHorizontalHeaderLabels({
"Affected Groups"});
96 QTableWidgetItem* groupItem =
new QTableWidgetItem(group->getName());
97 groupItem->setFlags(groupItem->flags() ^ Qt::ItemIsEditable);
98 ui->groupsWidget->setItem(0, 0, groupItem);
100 for (
int i = 0; i < dependantGroups.size(); ++i)
102 QTableWidgetItem* item =
new QTableWidgetItem(dependantGroups[i]->getName());
103 item->setFlags(item->flags() ^ Qt::ItemIsEditable);
104 ui->groupsWidget->setItem(i + 1, 0, item);
109 RenameGroupDialog::setOkButtonsEnabled(
bool enabled)
111 ui->btnDontSaveAndProceed->setEnabled(
enabled);
112 ui->btnSaveAndProceed->setEnabled(
enabled);
138 QVector<StatechartGroupPtr>
141 return dependantGroups;
144 QVector<StatechartGroupPtr>
153 return ui->editNewName->text();
168 for (
const auto& g : allGroups)
170 if (newName == g->getName())
181 ui->labelNewNameError->setText(
"Name already in use");
182 colorToUse = colorRed;
183 setOkButtonsEnabled(
false);
187 ui->labelNewNameError->setText(
"Valid name");
188 colorToUse = colorGreen;
189 setOkButtonsEnabled(
true);
192 QPalette p(ui->labelNewNameError->palette());
193 p.setColor(ui->labelNewNameError->backgroundRole(), colorToUse);
194 ui->labelNewNameError->setPalette(p);