5 #include <SimoxUtility/json/json.hpp>
50 void clearLayerElements();
57 void updateLayerElements(
const std::vector<viz::CoinLayerElement>& elements);
60 QTreeWidgetItem* insertLayerElementItem(
int index,
61 const std::string& name,
62 const viz::data::ElementPtr& element);
64 void updateLayerElementItem(QTreeWidgetItem* item,
const viz::data::ElementPtr& element);
67 void updateLayerElementProperties(QTreeWidgetItem* item,
68 const viz::data::ElementPtr& element);
72 std::string getTypeName(
const viz::data::ElementPtr& element)
const;
75 nlohmann::json serializeElement(
const viz::data::ElementPtr& element)
const;
85 void updateJsonChildren(QTreeWidgetItem* parent,
86 const nlohmann::json& json,
87 bool recursive =
false);
90 QTreeWidgetItem* addJsonChild(QTreeWidgetItem* parent,
const std::string& key);
96 void updateJsonItem(QTreeWidgetItem* item,
97 const std::string& key,
98 const nlohmann::json&
value,
99 const nlohmann::json& parentMeta,
100 bool recursive =
false);
102 void updateJsonItemValue(QTreeWidgetItem* item,
103 const std::string& key,
104 const nlohmann::json&
value,
105 const nlohmann::json& parentMeta);
108 QVariant getValuePreview(
const nlohmann::json& json)
const;
109 QWidget* getValueWidget(QTreeWidgetItem* item,
const nlohmann::json& json)
const;
110 void updateValueWidget(
const nlohmann::json& json, QWidget* widget)
const;
112 static bool isMetaKey(
const std::string&);
115 void addShowMoreItem();
119 QTreeWidget* widget =
nullptr;
121 QVector<QMetaObject::Connection> widgetConnections;
125 QTreeWidgetItem* showMoreItem =
nullptr;
126 int maxElementCountDefault = 25;
127 int maxElementCount = maxElementCountDefault;