mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 14:59:03 +00:00
Changed: #1302 Polish code of property editor
--HG-- branch : gsoc2011-worldeditorqt
This commit is contained in:
parent
3efd81023d
commit
068b9bf7bb
2 changed files with 123 additions and 46 deletions
|
@ -173,6 +173,13 @@ void PropertyEditorWidget::updateSelection(Node *node)
|
||||||
if (parameter.ReadOnly || (staticChildSelected && (parameter.Name == "name")))
|
if (parameter.ReadOnly || (staticChildSelected && (parameter.Name == "name")))
|
||||||
prop->setEnabled(false);
|
prop->setEnabled(false);
|
||||||
|
|
||||||
|
// File ?
|
||||||
|
if (parameter.Filename && (parameter.FileExtension.empty() || parameter.Type != NLLIGO::CPrimitiveClass::CParameter::StringArray))
|
||||||
|
{
|
||||||
|
// TODO: Create an edit box
|
||||||
|
// CHECK: only for ConstString
|
||||||
|
}
|
||||||
|
|
||||||
groupNode->addSubProperty(prop);
|
groupNode->addSubProperty(prop);
|
||||||
|
|
||||||
ite++;
|
ite++;
|
||||||
|
@ -211,10 +218,6 @@ QtProperty *PropertyEditorWidget::addConstStringProperty(const NLLIGO::IProperty
|
||||||
const NLLIGO::CPrimitiveClass::CParameter ¶meter,
|
const NLLIGO::CPrimitiveClass::CParameter ¶meter,
|
||||||
const NLLIGO::IPrimitive *primitive)
|
const NLLIGO::IPrimitive *primitive)
|
||||||
{
|
{
|
||||||
// TODO: get context value from dialog
|
|
||||||
std::string context("jungle");
|
|
||||||
std::string defaultContext("default");
|
|
||||||
|
|
||||||
std::string value;
|
std::string value;
|
||||||
std::string name = parameter.Name.c_str();
|
std::string name = parameter.Name.c_str();
|
||||||
|
|
||||||
|
@ -224,44 +227,7 @@ QtProperty *PropertyEditorWidget::addConstStringProperty(const NLLIGO::IProperty
|
||||||
// Create qt property
|
// Create qt property
|
||||||
QtProperty *prop = m_enumManager->addProperty(parameter.Name.c_str());
|
QtProperty *prop = m_enumManager->addProperty(parameter.Name.c_str());
|
||||||
|
|
||||||
std::vector<std::string> listContext;
|
QStringList listEnums = getComboValues(parameter);
|
||||||
|
|
||||||
if (context != defaultContext)
|
|
||||||
listContext.push_back(context);
|
|
||||||
listContext.push_back(defaultContext);
|
|
||||||
|
|
||||||
QStringList listEnums;
|
|
||||||
|
|
||||||
// Correct fill properties with *both* contexts if the current context is not default and is valid.
|
|
||||||
for (size_t j = 0; j < listContext.size(); j++)
|
|
||||||
{
|
|
||||||
std::map<std::string, NLLIGO::CPrimitiveClass::CParameter::CConstStringValue>::const_iterator ite = parameter.ComboValues.find(listContext[j].c_str());
|
|
||||||
|
|
||||||
if (ite != parameter.ComboValues.end())
|
|
||||||
{
|
|
||||||
std::vector<std::string> pathList;
|
|
||||||
{
|
|
||||||
ite->second.appendFilePath(pathList);
|
|
||||||
|
|
||||||
// TODO: what is it?
|
|
||||||
/*std::vector<const NLLIGO::IPrimitive*> relativePrimPaths;
|
|
||||||
{
|
|
||||||
std::vector<const NLLIGO::IPrimitive*> startPrimPath;
|
|
||||||
for (uint locIndex = 0; locIndex<_PropDlgLocators.size(); locIndex++)
|
|
||||||
startPrimPath.push_back(_PropDlgLocators[locIndex].Primitive);
|
|
||||||
|
|
||||||
ite->second.getPrimitivesForPrimPath(relativePrimPaths, startPrimPath);
|
|
||||||
}
|
|
||||||
ite->second.appendPrimPath(pathList, relativePrimPaths);*/
|
|
||||||
}
|
|
||||||
|
|
||||||
if (parameter.SortEntries)
|
|
||||||
std::sort(pathList.begin(), pathList.end());
|
|
||||||
|
|
||||||
for (size_t i = 0; i < pathList.size(); ++i)
|
|
||||||
listEnums.append(pathList[i].c_str());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (listEnums.isEmpty())
|
if (listEnums.isEmpty())
|
||||||
{
|
{
|
||||||
|
@ -272,6 +238,10 @@ QtProperty *PropertyEditorWidget::addConstStringProperty(const NLLIGO::IProperty
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
// TODO: check this logic
|
||||||
|
if (parameter.DefaultValue.empty() || (parameter.DefaultValue[0].Name.empty()))
|
||||||
|
listEnums.prepend("");
|
||||||
|
|
||||||
// Fill qt property
|
// Fill qt property
|
||||||
m_enumManager->setEnumNames(prop, listEnums);
|
m_enumManager->setEnumNames(prop, listEnums);
|
||||||
|
|
||||||
|
@ -311,7 +281,7 @@ QtProperty *PropertyEditorWidget::addStringArrayProperty(const NLLIGO::IProperty
|
||||||
const NLLIGO::IProperty *ligoProperty;
|
const NLLIGO::IProperty *ligoProperty;
|
||||||
std::vector<std::string> vectString;
|
std::vector<std::string> vectString;
|
||||||
|
|
||||||
if (primitive->getPropertyByName (parameter.Name.c_str (), ligoProperty))
|
if (primitive->getPropertyByName(parameter.Name.c_str (), ligoProperty))
|
||||||
{
|
{
|
||||||
const NLLIGO::CPropertyStringArray *const propStringArray = dynamic_cast<const NLLIGO::CPropertyStringArray *> (ligoProperty);
|
const NLLIGO::CPropertyStringArray *const propStringArray = dynamic_cast<const NLLIGO::CPropertyStringArray *> (ligoProperty);
|
||||||
if (propStringArray)
|
if (propStringArray)
|
||||||
|
@ -335,6 +305,13 @@ QtProperty *PropertyEditorWidget::addStringArrayProperty(const NLLIGO::IProperty
|
||||||
m_stringArrayManager->setValue(prop, "StringArray :(");
|
m_stringArrayManager->setValue(prop, "StringArray :(");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Create an "EDIT" button if the text is editable (FileExtension != "")
|
||||||
|
if (parameter.FileExtension != "")
|
||||||
|
{
|
||||||
|
// Create an edit box
|
||||||
|
// TODO:
|
||||||
|
}
|
||||||
return prop;
|
return prop;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -342,13 +319,111 @@ QtProperty *PropertyEditorWidget::addConstStringArrayProperty(const NLLIGO::IPro
|
||||||
const NLLIGO::CPrimitiveClass::CParameter ¶meter,
|
const NLLIGO::CPrimitiveClass::CParameter ¶meter,
|
||||||
const NLLIGO::IPrimitive *primitive)
|
const NLLIGO::IPrimitive *primitive)
|
||||||
{
|
{
|
||||||
|
std::string value;
|
||||||
std::string name = parameter.Name.c_str();
|
std::string name = parameter.Name.c_str();
|
||||||
QtProperty *prop = m_stringManager->addProperty(parameter.Name.c_str());
|
|
||||||
m_stringManager->setValue(prop, "TODO: ConstStringArray");
|
// Get current value
|
||||||
|
primitive->getPropertyByName(name.c_str(), value);
|
||||||
|
|
||||||
|
// Create qt property
|
||||||
|
// QtProperty *prop = m_enumManager->addProperty(parameter.Name.c_str());
|
||||||
|
QtProperty *prop = m_stringArrayManager->addProperty(parameter.Name.c_str());
|
||||||
|
|
||||||
|
QStringList listEnums = getComboValues(parameter);
|
||||||
|
|
||||||
|
if (listEnums.isEmpty())
|
||||||
|
{
|
||||||
|
// listEnums << QString(value.c_str()) + tr(" (WRN: Check leveldesign!)");
|
||||||
|
// m_enumManager->setEnumNames(prop, listEnums);
|
||||||
|
// m_enumManager->setValue(prop, 0);
|
||||||
prop->setEnabled(false);
|
prop->setEnabled(false);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Fill qt property
|
||||||
|
m_enumManager->setEnumNames(prop, listEnums);
|
||||||
|
|
||||||
|
// Find index of current value
|
||||||
|
//for (int i = 0; i < listEnums.size(); i++)
|
||||||
|
//{
|
||||||
|
// if (value == listEnums[i].toStdString())
|
||||||
|
// {
|
||||||
|
// m_enumManager->setValue(prop, i);
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
|
//}
|
||||||
|
|
||||||
|
const NLLIGO::IProperty *ligoProperty;
|
||||||
|
std::vector<std::string> vectString;
|
||||||
|
|
||||||
|
if (primitive->getPropertyByName (parameter.Name.c_str(), ligoProperty))
|
||||||
|
{
|
||||||
|
const NLLIGO::CPropertyStringArray *const propStringArray = dynamic_cast<const NLLIGO::CPropertyStringArray *> (ligoProperty);
|
||||||
|
if (propStringArray)
|
||||||
|
{
|
||||||
|
const std::vector<std::string> &vectString = propStringArray->StringArray;
|
||||||
|
if (!vectString.empty())
|
||||||
|
{
|
||||||
|
std::string temp;
|
||||||
|
for (size_t i = 0; i < vectString.size(); i++)
|
||||||
|
{
|
||||||
|
temp += vectString[i];
|
||||||
|
if (i != (vectString.size() - 1))
|
||||||
|
temp += '\n';
|
||||||
|
}
|
||||||
|
m_stringArrayManager->setValue(prop, temp.c_str());
|
||||||
|
prop->setToolTip(temp.c_str());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
m_stringArrayManager->setValue(prop, "StringArray :(");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
m_enumManager->setValue(prop, 0);
|
||||||
|
}
|
||||||
|
|
||||||
return prop;
|
return prop;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QStringList PropertyEditorWidget::getComboValues(const NLLIGO::CPrimitiveClass::CParameter ¶meter)
|
||||||
|
{
|
||||||
|
// TODO: get context value from dialog
|
||||||
|
std::string context("jungle");
|
||||||
|
std::string defaultContext("default");
|
||||||
|
|
||||||
|
std::vector<std::string> listContext;
|
||||||
|
|
||||||
|
if (context != defaultContext)
|
||||||
|
listContext.push_back(context);
|
||||||
|
listContext.push_back(defaultContext);
|
||||||
|
|
||||||
|
QStringList listEnums;
|
||||||
|
|
||||||
|
// Correct fill properties with *both* contexts if the current context is not default and is valid.
|
||||||
|
for (size_t j = 0; j < listContext.size(); j++)
|
||||||
|
{
|
||||||
|
std::map<std::string, NLLIGO::CPrimitiveClass::CParameter::CConstStringValue>::const_iterator ite = parameter.ComboValues.find(listContext[j].c_str());
|
||||||
|
|
||||||
|
if (ite != parameter.ComboValues.end())
|
||||||
|
{
|
||||||
|
std::vector<std::string> pathList;
|
||||||
|
|
||||||
|
// Fill pathList
|
||||||
|
ite->second.appendFilePath(pathList);
|
||||||
|
|
||||||
|
if (parameter.SortEntries)
|
||||||
|
std::sort(pathList.begin(), pathList.end());
|
||||||
|
|
||||||
|
for (size_t i = 0; i < pathList.size(); ++i)
|
||||||
|
listEnums.append(pathList[i].c_str());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return listEnums;
|
||||||
|
}
|
||||||
|
|
||||||
void PropertyEditorWidget::blockSignalsOfProperties(bool block)
|
void PropertyEditorWidget::blockSignalsOfProperties(bool block)
|
||||||
{
|
{
|
||||||
m_stringManager->blockSignals(block);
|
m_stringManager->blockSignals(block);
|
||||||
|
|
|
@ -74,6 +74,8 @@ private:
|
||||||
const NLLIGO::CPrimitiveClass::CParameter ¶meter,
|
const NLLIGO::CPrimitiveClass::CParameter ¶meter,
|
||||||
const NLLIGO::IPrimitive *primitive);
|
const NLLIGO::IPrimitive *primitive);
|
||||||
|
|
||||||
|
QStringList getComboValues(const NLLIGO::CPrimitiveClass::CParameter ¶meter);
|
||||||
|
|
||||||
void blockSignalsOfProperties(bool block);
|
void blockSignalsOfProperties(bool block);
|
||||||
|
|
||||||
QtBoolPropertyManager *m_boolManager;
|
QtBoolPropertyManager *m_boolManager;
|
||||||
|
|
Loading…
Reference in a new issue