{
    "version": 1,
    "supportedProjectTypes": [ "PythonProject" ],
    "id": "F.QtQuickQtForPythonApplicationEmpty",
    "category": "F.ApplicationPySide",
    "trDescription": "Creates a Qt Quick application that contains an empty window.",
    "trDisplayName": "Qt Quick Application - Empty",
    "trDisplayCategory": "Application (Qt for Python)",
    "icon": "../icons/icon.png",
    "iconKind": "Themed",
    "enabled": "%{JS: value('Plugins').indexOf('Python') >= 0 && (!value('Platform').length || ['Desktop', 'DockerDeviceType', 'GenericLinuxOsType'].includes(value('Platform')))}",

    "options":
    [
        { "key": "SrcFileName", "value": "main.py" },
        { "key": "QmlFileName", "value": "main.qml" },
        { "key": "PyProjectFile", "value": "%{JS: Util.fileName('%{ProjectName}', 'pyproject')}" },
        { "key": "QtQuickVersion", "value": "%{JS: value('QtVersion').QtQuickVersion}" },
        { "key": "QtQuickWindowVersion", "value": "%{JS: value('QtVersion').QtQuickWindowVersion}" },
        { "key": "PySideVersion", "value": "%{JS: value('QtVersion').PySideVersion}" },
        { "key": "ProjectFilePath", "value": "%{ProjectDirectory}/%{PyProjectFile}" }
    ],

    "pages":
    [
        {
            "trDisplayName": "Project Location",
            "trShortTitle": "Location",
            "typeId": "Project"
        },
        {
            "trDisplayName": "Define Project Details",
            "trShortTitle": "Details",
            "typeId": "PythonConfiguration",
            "data":
            {
                "index": 0,
                "items":
                [
                    {
                        "trKey": "PySide 6",
                        "value":
                        {
                            "QtQuickVersion": "",
                            "QtQuickWindowVersion": "",
                            "PySideVersion": "PySide6"
                        }
                    },
                    {
                        "trKey": "PySide 5.15",
                        "value":
                        {
                            "QtQuickVersion": "2.15",
                            "QtQuickWindowVersion": "2.15",
                            "PySideVersion": "PySide2"
                        }
                    },
                    {
                        "trKey": "PySide 5.14",
                        "value":
                        {
                            "QtQuickVersion": "2.14",
                            "QtQuickWindowVersion": "2.14",
                            "PySideVersion": "PySide2"
                        }
                    },
                    {
                        "trKey": "PySide 5.13",
                        "value":
                        {
                            "QtQuickVersion": "2.13",
                            "QtQuickWindowVersion": "2.13",
                            "PySideVersion": "PySide2"
                        }
                    },
                    {
                        "trKey": "PySide 5.12",
                        "value":
                        {
                            "QtQuickVersion": "2.12",
                            "QtQuickWindowVersion": "2.12",
                            "PySideVersion": "PySide2"
                        }
                    }
                ]
            }
        },
        {
            "trDisplayName": "Kit Selection",
            "trShortTitle": "Kits",
            "typeId": "Kits",
            "data": {
                 "projectFilePath": "%{ProjectFilePath}",
                 "requiredFeatures": [ "Python.Interpreter" ]
            }
        },
        {
            "trDisplayName": "Project Management",
            "trShortTitle": "Summary",
            "typeId": "Summary"
        }
    ],
    "generators":
    [
        {
            "typeId": "File",
            "data":
            [
                {
                    "source": "../main_qtquick.py",
                    "target": "%{SrcFileName}"
                },
                {
                    "source": "main.pyproject",
                    "target": "%{PyProjectFile}",
                    "openAsProject": true
                },
                {
                    "source": "main.qml.tpl",
                    "target": "%{QmlFileName}",
                    "openInEditor": true
                },
                {
                    "source": "../requirements.txt",
                    "target": "requirements.txt"
                },
                {
                    "source": "../../git.ignore",
                    "target": ".gitignore",
                    "condition": "%{JS: !value('IsSubproject') && value('VersionControl') === 'G.Git'}"
                }
            ]
        }
    ]
}
