5 #include <SimoxUtility/algorithm/string/string_conversion.h>
6 #include <SimoxUtility/error/SimoxError.h>
8 #include "../ColorPalettes.h"
9 #include "../visitors/AronTreeWidgetConverter.h"
14 QTreeWidgetItem* currentItem) :
17 auto names = enumPtr->getAcceptedValueNames();
18 auto outerLayout =
new QHBoxLayout();
19 outerLayout->setContentsMargins(0, 0, 0, 0);
20 innerWidget =
new QComboBox();
21 outerLayout->addWidget(innerWidget);
23 for (
const auto& n :
names)
25 innerWidget->addItem(n.c_str());
27 innerWidget->setInsertPolicy(QComboBox::NoInsert);
28 innerWidget->setEditable(
true);
29 innerWidget->setCurrentIndex(0);
31 setLayout(outerLayout);
33 SIGNAL(currentTextChanged(
const QString&)),
35 SLOT(textChanged(
const QString&))));
65 innerWidget->setEditText(text);
66 highlightUnparsableEntries();
72 return innerWidget->currentText();
75 std::pair<bool, aron::data::IntPtr>
78 auto crAron = std::make_shared<aron::data::Int>(element_type->getPath());
81 auto valueMap = element_type->getAcceptedValueMap();
82 std::string toParse =
getText().toStdString();
84 auto searchRes = valueMap.find(toParse);
85 if (searchRes != valueMap.end())
87 crAron->setValue(searchRes->second);
88 return {
true, crAron};
91 auto accVals = element_type->getAcceptedValues();
95 res = simox::alg::to_<int>(toParse);
97 catch (
const simox::error::SimoxError& err)
99 ARMARX_VERBOSE <<
"Failed to parse IntEnum: Could not convert \'" << toParse
100 <<
"\' to an int. It also was not one of the accepted strings.";
101 return {
false,
nullptr};
103 if (std::find(accVals.begin(), accVals.end(), res) != accVals.end())
106 crAron->setValue(res);
111 <<
"but this int is not part of the accepted values.";
112 return {
false,
nullptr};
114 return {
true, crAron};
118 IntEnumWidget::highlightUnparsableEntries()
132 IntEnumWidget::textChanged(
const QString&)
135 highlightUnparsableEntries();