Skip to content
Snippets Groups Projects
Commit 3229dbb9 authored by Philipp Schmidt's avatar Philipp Schmidt
Browse files

Add option to disable value validator in settings

parent 902f9cf2
No related branches found
No related tags found
1 merge request!17Kinematic unit GUI
......@@ -7,7 +7,7 @@
<x>0</x>
<y>0</y>
<width>464</width>
<height>190</height>
<height>226</height>
</rect>
</property>
<property name="sizePolicy">
......@@ -45,13 +45,6 @@
</property>
</widget>
</item>
<item row="4" column="1">
<widget class="QLabel" name="labelTopic">
<property name="text">
<string>&lt;not set&gt;</string>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="labelRobotNodeSetName">
<property name="text">
......@@ -73,13 +66,6 @@
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QLabel" name="label">
<property name="text">
<string>RobotState Topic Name</string>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QLabel" name="labelKinematicUnitName">
<property name="sizePolicy">
......@@ -93,6 +79,40 @@
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="label">
<property name="text">
<string>RobotState Topic Name</string>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QLabel" name="labelTopic">
<property name="text">
<string>&lt;not set&gt;</string>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QLabel" name="label_2">
<property name="text">
<string>Enable ValueValidator</string>
</property>
</widget>
</item>
<item row="4" column="1">
<widget class="QCheckBox" name="checkBox">
<property name="enabled">
<bool>true</bool>
</property>
<property name="text">
<string>Enabled</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</item>
</layout>
......
......@@ -75,6 +75,7 @@ KinematicUnitGuiPlugin::KinematicUnitGuiPlugin()
KinematicUnitWidgetController::KinematicUnitWidgetController() :
kinematicUnitNode(nullptr),
enableValueValidator(true),
selectedControlMode(ePositionControl)
{
rootVisu = NULL;
......@@ -308,16 +309,19 @@ void KinematicUnitWidgetController::configured()
{
ARMARX_VERBOSE << "KinematicUnitWidget::configured()";
kinematicUnitName = dialog->proxyFinder->getSelectedProxyName().toStdString();
enableValueValidator = dialog->ui->checkBox->isChecked();
}
void KinematicUnitWidgetController::loadSettings(QSettings* settings)
{
kinematicUnitName = settings->value("kinematicUnitName", KINEMATIC_UNIT_NAME_DEFAULT).toString().toStdString();
enableValueValidator = settings->value("enableValueValidator", true).toBool();
}
void KinematicUnitWidgetController::saveSettings(QSettings* settings)
{
settings->setValue("kinematicUnitName", QString::fromStdString(kinematicUnitName));
settings->setValue("enableValueValidator", enableValueValidator);
}
......
......@@ -267,6 +267,8 @@ namespace armarx
bool initGUIComboBox(VirtualRobot::RobotNodeSetPtr robotNodeSet);
bool initGUIJointListTable(VirtualRobot::RobotNodeSetPtr robotNodeSet);
bool enableValueValidator;
NameValueMap reportedJointAngles;
NameValueMap reportedJointVelocities;
NameControlModeMap reportedJointControlModes;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment