|
|
|
@ -480,6 +480,9 @@ void SimpleMissionItem::_rebuildTextFieldFacts(void)
@@ -480,6 +480,9 @@ void SimpleMissionItem::_rebuildTextFieldFacts(void)
|
|
|
|
|
paramFact->_setName(paramInfo->label()); |
|
|
|
|
paramMetaData->setDecimalPlaces(paramInfo->decimalPlaces()); |
|
|
|
|
paramMetaData->setRawUnits(paramInfo->units()); |
|
|
|
|
paramMetaData->setRawDefaultValue(paramInfo->defaultValue()); |
|
|
|
|
paramMetaData->setRawMin(paramInfo->min()); |
|
|
|
|
paramMetaData->setRawMax(paramInfo->max()); |
|
|
|
|
paramFact->setMetaData(paramMetaData); |
|
|
|
|
_textFieldFacts.append(paramFact); |
|
|
|
|
} |
|
|
|
@ -528,6 +531,9 @@ void SimpleMissionItem::_rebuildNaNFacts(void)
@@ -528,6 +531,9 @@ void SimpleMissionItem::_rebuildNaNFacts(void)
|
|
|
|
|
paramFact->_setName(paramInfo->label()); |
|
|
|
|
paramMetaData->setDecimalPlaces(paramInfo->decimalPlaces()); |
|
|
|
|
paramMetaData->setRawUnits(paramInfo->units()); |
|
|
|
|
paramMetaData->setRawDefaultValue(paramInfo->defaultValue()); |
|
|
|
|
paramMetaData->setRawMin(paramInfo->min()); |
|
|
|
|
paramMetaData->setRawMax(paramInfo->max()); |
|
|
|
|
paramFact->setMetaData(paramMetaData); |
|
|
|
|
_nanFacts.append(paramFact); |
|
|
|
|
} |
|
|
|
@ -597,6 +603,9 @@ void SimpleMissionItem::_rebuildComboBoxFacts(void)
@@ -597,6 +603,9 @@ void SimpleMissionItem::_rebuildComboBoxFacts(void)
|
|
|
|
|
paramMetaData->setDecimalPlaces(paramInfo->decimalPlaces()); |
|
|
|
|
paramMetaData->setEnumInfo(paramInfo->enumStrings(), paramInfo->enumValues()); |
|
|
|
|
paramMetaData->setRawUnits(paramInfo->units()); |
|
|
|
|
paramMetaData->setRawDefaultValue(paramInfo->defaultValue()); |
|
|
|
|
paramMetaData->setRawMin(paramInfo->min()); |
|
|
|
|
paramMetaData->setRawMax(paramInfo->max()); |
|
|
|
|
paramFact->setMetaData(paramMetaData); |
|
|
|
|
_comboboxFacts.append(paramFact); |
|
|
|
|
} |
|
|
|
|