summaryrefslogtreecommitdiff
path: root/share/qtcreator/templates/wizards/projects/qtforpythonapplication/qtquickapplication/wizard.json
blob: a0e7fcef02d40f7d72478ee58859037f1e3663ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
    "version": 1,
    "supportedProjectTypes": [ "PythonProject" ],
    "id": "F.QtQuickQtForPythonApplicationEmpty",
    "category": "F.Application",
    "trDescription": "Creates a Qt Quick application that contains an empty window.",
    "trDisplayName": "Qt for Python - Qt Quick Application - Empty",
    "trDisplayCategory": "Application",
    "icon": "../icons/icon.png",
    "enabled": "%{JS: value('Plugins').indexOf('Python') >= 0}",

    "options":
    [
        { "key": "SrcFileName", "value": "main.py" },
        { "key": "QmlFileName", "value": "main.qml" },
        { "key": "PyProjectFile", "value": "main.pyproject" },
        { "key": "QtQuickVersion", "value": "%{JS: value('QtVersion').QtQuickVersion}" },
        { "key": "QtQuickWindowVersion", "value": "%{JS: value('QtVersion').QtQuickWindowVersion}" }
    ],

    "pages":
    [
        {
            "trDisplayName": "Project Location",
            "trShortTitle": "Location",
            "typeId": "Project"
        },
        {
            "trDisplayName": "Define Project Details",
            "trShortTitle": "Details",
            "typeId": "Fields",
            "data":
            [
                {
                    "name": "QtVersion",
                    "trDisplayName": "PySide version:",
                    "type": "ComboBox",
                    "data":
                    {
                        "index": 1,
                        "items":
                        [
                            {
                                "trKey": "PySide 5.13",
                                "value":
                                {
                                    "QtQuickVersion": "2.13",
                                    "QtQuickWindowVersion": "2.13"
                                }
                            },
                            {
                                "trKey": "PySide 5.12",
                                "value":
                                {
                                    "QtQuickVersion": "2.12",
                                    "QtQuickWindowVersion": "2.12"
                                }
                            }
                        ]
                    }
                }
            ]
        },
        {
            "trDisplayName": "Project Management",
            "trShortTitle": "Summary",
            "typeId": "Summary"
        }
    ],
    "generators":
    [
        {
            "typeId": "File",
            "data":
            [
                {
                    "source": "../main_qtquick.py",
                    "target": "main.py"
                },
                {
                    "source": "main.pyproject",
                    "target": "main.pyproject",
                    "openAsProject": true
                },
                {
                    "source": "main.qml.tpl",
                    "target": "main.qml",
                    "openInEditor": true
                },
                {
                    "source": "../../git.ignore",
                    "target": ".gitignore",
                    "condition": "%{JS: !value('IsSubproject') && value('VersionControl') === 'G.Git'}"
                }
            ]
        }
    ]
}