aboutsummaryrefslogtreecommitdiffstats
path: root/tools/svgtoqml/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tools/svgtoqml/main.qml')
-rw-r--r--tools/svgtoqml/main.qml21
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/svgtoqml/main.qml b/tools/svgtoqml/main.qml
new file mode 100644
index 0000000000..9a8ceefe5d
--- /dev/null
+++ b/tools/svgtoqml/main.qml
@@ -0,0 +1,21 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+
+import QtQuick
+import QtQuick.Shapes
+import QtQuick.Controls
+import QtQuick.Layouts
+
+Window {
+ id: mainWindow
+ width: 1280
+ height: 960
+ visible: true
+ color: "white"
+
+ Item {
+ id: svg
+ objectName: "svg_item"
+ anchors.centerIn: parent
+ }
+}