Pure QML implementation of a view with connected nodes
Copy the following file structure to the QML import path:
- QmlNodeEditor
-
- NodeView.qml
-
- NodeViewStyle.qml
-
- qmldir
-
- private folder with content
Specify the import path for QML Engine: https://doc.qt.io/qt-6/qqmlengine.html#addImportPath
import QmlNodeEditor 1.0
NodeView {
model: nodesModel
}
Look into DemoApp.qml for samples.