I have created and instantiated some qml components and I have a button that takes the dynamically created objects, passes them to a C++ function, converts them to qml code and writes it into a file.
I have managed to get the name of the object (Rectangle, Text, etc.) and all its children and to write it to a file as qml valid code. The difficult part is the properties. I would like to write just the properties that are different from the default object, so that I don't write all of them. My solution was to create a default instance of the same class and then iterate through all the properties in the metaObject of the class, compare them, and write them to the file only if the value is not the same.
I wasn't able to create the default instance.
I will share some of my code for the conversion. I must say, I have used a lot of string operations instead of object operations, which in my experience, is a sign that I am not doing it right.
QString ProjectManager::convertObjectToQml(const QObject *content, int indentLevel = 0) { if (!content) return ""; QString qmlCode; QString indent(indentLevel * 4, ' '); // Indentation for readability // Iterate over children (skip rendering the root Item itself) for (QObject *component : content->children()) { if (!component) continue; // Extract class name const QMetaObject *superMeta = component->metaObject()->superClass(); if (!superMeta) { qDebug() << "No superMeta class found."; } QString className = superMeta->className(); className = className.split("_").first(); className = className.split("QQuick").last(); qmlCode += "\n" + indent + className + " {\n"; // // Check for modified properties // const QMetaObject *metaObject = component->metaObject(); // QObject *defaultObject = metaObject->newInstance(); // Create a default instance for comparison // if (defaultObject) { // for (int i = 0; i < metaObject->propertyCount(); ++i) { // QMetaProperty property = metaObject->property(i); // QVariant value = component->property(property.name()); // QVariant defaultValue = defaultObject->property(property.name()); // // Only add properties that differ from the default // if (value.isValid() && value != defaultValue) { // qmlCode += indent + " " + QString(property.name()) + ": " + value.toString() + "\n"; // } // } // delete defaultObject; // } else { // qWarning() << "Could not create default instance for" << className; // } // Recursively process children qmlCode += convertObjectToQml(component, indentLevel + 1); qmlCode += indent + "}\n"; } return qmlCode; }Here I have attempted to create a new instance of the same class, but it doesn't return any object, and the documentation says this method is deprecated.
const QMetaObject *metaObject = component->metaObject(); QObject *defaultObject = metaObject->newInstance();I have seen this method of instantiating a component from C++, but it requires a file with a custom component:
QQmlEngine engine; QQmlComponent component(&engine, "MyItem.qml"); QObject *object = component.create();