6 #include <QDialogButtonBox>
10 #include <QPushButton>
11 #include <QRadioButton>
12 #include <QVBoxLayout>
20 const QString ArvizProfileManagerWidget::SETTINGS_DEFAULT_PROFILE_KEY =
"defaultProfileName";
29 setWindowTitle(addDialog ?
"Add ArViz Profile" :
"Edit ArViz Profile");
32 nameInput =
new QLineEdit(
this);
33 nameInput->setText(name);
35 additiveRadioButton =
new QRadioButton(
"Save added layers",
this);
36 additiveRadioButton->setChecked(additive);
37 substractiveRadioButton =
new QRadioButton(
"Save removed layers",
this);
38 substractiveRadioButton->setChecked(not additive);
40 defaultCheckBox =
new QCheckBox(
"Mark default",
this);
41 defaultCheckBox->setChecked(isDefault);
44 QDialogButtonBox* buttonBox =
45 new QDialogButtonBox(QDialogButtonBox::Save | QDialogButtonBox::Cancel,
this);
46 connect(buttonBox, &QDialogButtonBox::accepted,
this, &ProfileDialog::accept);
47 connect(buttonBox, &QDialogButtonBox::rejected,
this, &ProfileDialog::reject);
48 buttonBox->setCenterButtons(
true);
51 deleteButton =
new QPushButton(
"Delete",
this);
52 connect(deleteButton, &QPushButton::clicked,
this, &ProfileDialog::deleteProfile);
55 QFormLayout* formLayout =
new QFormLayout;
56 formLayout->addRow(
"Profile Name:", nameInput);
57 formLayout->addRow(additiveRadioButton);
58 formLayout->addRow(substractiveRadioButton);
59 formLayout->addRow(defaultCheckBox);
60 formLayout->addRow(buttonBox);
61 formLayout->addRow(deleteButton);
63 setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
64 setLayout(formLayout);
75 return nameInput->text();
81 return additiveRadioButton->isChecked();
87 return defaultCheckBox->isChecked();
91 ProfileDialog::deleteProfile()
101 "/ArvizProfileManager.conf")
103 QSettings::NativeFormat),
106 QHBoxLayout* layout =
new QHBoxLayout(
this);
109 layersComboBox =
new QComboBox(
this);
110 connect(layersComboBox,
111 QOverload<int>::of(&QComboBox::activated),
115 addButton =
new QPushButton(
"Add",
this);
116 editButton =
new QPushButton(
"Edit",
this);
117 saveButton =
new QPushButton(
"Save",
this);
119 layout->addWidget(
new QLabel(
"ArViz Profile: "));
120 layout->addWidget(layersComboBox);
121 layout->addWidget(addButton);
122 layout->addWidget(editButton);
123 layout->addWidget(saveButton);
127 connect(addButton, &QPushButton::clicked,
this, &ArvizProfileManagerWidget::addProfile);
128 connect(editButton, &QPushButton::clicked,
this, &ArvizProfileManagerWidget::editProfile);
130 &QPushButton::clicked,
132 &ArvizProfileManagerWidget::saveCurrentProfile);
137 const QString defaultProfileName = settings.value(SETTINGS_DEFAULT_PROFILE_KEY).toString();
138 if (
int i = layersComboBox->findText(defaultProfileName); i >= 0)
140 layersComboBox->setCurrentText(defaultProfileName);
146 layersComboBox->setCurrentIndex(-1);
153 if (
index >= 0 and index < layersComboBox->count())
155 loadProfile(layersComboBox->itemText(
index));
161 ArvizProfileManagerWidget::saveCurrentProfile()
163 const QString name = layersComboBox->currentText();
166 QMessageBox::warning(
this,
"Warning",
"Please enter a valid name.");
170 if (saveProfile(name, currentProfile))
172 if (layersComboBox->findText(name) == -1)
174 layersComboBox->addItem(name);
176 layersComboBox->setCurrentText(name);
181 ArvizProfileManagerWidget::deleteCurrentProfileSave()
183 const QString name = layersComboBox->currentText();
184 settings.remove(name);
186 const int index = layersComboBox->currentIndex();
187 layersComboBox->removeItem(
index);
188 settings.remove(name);
190 if (layersComboBox->count() == 0)
192 editButton->setDisabled(
true);
193 saveButton->setDisabled(
true);
200 ArvizProfileManagerWidget::addProfile()
202 if (dialog ==
nullptr || !dialog->isVisible())
204 const QString defaultName =
"Profile";
205 const bool defaultAdditive =
false;
206 QString name = defaultName;
207 unsigned int counter = 2;
208 while (layersComboBox->count() > 0 and layersComboBox->findText(name) >= 0)
210 name = defaultName + QString::fromStdString(
std::to_string(counter++));
212 dialog =
new ProfileDialog(
this,
216 settings.value(SETTINGS_DEFAULT_PROFILE_KEY) == name);
217 const int result = dialog->exec();
219 if (result == QDialog::Accepted)
221 if (dialog->
getName().isEmpty())
226 if (layersComboBox->findText(dialog->
getName()) >= 0)
229 <<
" already exists!";
235 settings.setValue(SETTINGS_DEFAULT_PROFILE_KEY, dialog->
getName());
238 currentProfile.
layers = {};
242 saveProfile(dialog->
getName(), currentProfile);
244 layersComboBox->setCurrentText(dialog->
getName());
253 QMessageBox::information(
this,
"Dialog Already Open",
"The dialog is already open.");
258 ArvizProfileManagerWidget::editProfile()
260 if (layersComboBox->count() > 0)
262 if (dialog ==
nullptr || !dialog->isVisible())
264 const auto name = layersComboBox->currentText();
265 dialog =
new ProfileDialog(
this,
269 settings.value(SETTINGS_DEFAULT_PROFILE_KEY) == name);
273 &ArvizProfileManagerWidget::deleteCurrentProfileSave);
274 const int result = dialog->exec();
276 if (result == QDialog::Accepted)
278 const auto newName = dialog->
getName();
280 if (newName.isEmpty())
289 if (layersComboBox->findText(newName) >= 0)
292 <<
" already exists!";
295 settings.remove(layersComboBox->currentText());
300 currentProfile.
layers.clear();
307 settings.setValue(SETTINGS_DEFAULT_PROFILE_KEY, newName);
309 else if (settings.value(SETTINGS_DEFAULT_PROFILE_KEY) == name)
311 settings.setValue(SETTINGS_DEFAULT_PROFILE_KEY,
"");
314 saveProfile(dialog->
getName(), currentProfile);
316 layersComboBox->setCurrentText(newName);
325 QMessageBox::information(
326 this,
"Dialog Already Open",
"The dialog is already open.");
332 ArvizProfileManagerWidget::loadLayerNames()
334 layersComboBox->clear();
335 for (
const QString& groups : settings.childGroups())
337 layersComboBox->addItem(groups);
339 if (layersComboBox->count() == 0)
341 editButton->setDisabled(
true);
342 saveButton->setDisabled(
true);
346 editButton->setEnabled(
true);
347 saveButton->setEnabled(
true);
352 ArvizProfileManagerWidget::loadProfile(
const QString& name)
354 ARMARX_INFO <<
"Loading ArViz profile " << name.toStdString();
356 std::scoped_lock lock(mtx);
357 currentProfile.
layers.clear();
359 settings.beginGroup(name);
360 currentProfile.
additive = settings.value(
"additive").toBool();
361 const int size = settings.beginReadArray(
"layers");
362 for (
int i = 0; i < size; ++i)
364 settings.setArrayIndex(i);
365 QString first = settings.value(
"component").toString();
366 QString second = settings.value(
"layer").toString();
367 currentProfile.
layers.insert({first.toStdString(), second.toStdString()});
371 editButton->setEnabled(
true);
375 ArvizProfileManagerWidget::saveProfile(
const QString& name,
const Profile& profile)
377 settings.beginGroup(name);
378 settings.setValue(
"additive", profile.additive);
379 settings.remove(
"layers");
380 settings.beginWriteArray(
"layers", profile.layers.size());
382 for (
const auto& pair : profile.layers)
384 settings.setArrayIndex(i++);
385 settings.setValue(
"component", QString::fromStdString(pair.first));
386 settings.setValue(
"layer", QString::fromStdString(pair.second));