aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/templates/wizards/files/form/wizard.json
blob: 26d15d2b59a7c805367655b1837a8ed913a36c99 (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
{
    "version": 1,
    "supportedProjectTypes": [ ],
    "id": "D.Form",
    "category": "R.Qt",
    "trDescription": "Creates a Qt Designer form that you can add to a Qt Widget Project. This is useful if you already have an existing class for the UI business logic.",
    "trDisplayName": "Qt Designer Form",
    "trDisplayCategory": "Qt",
    "iconText": "ui",
    "enabled": "%{JS: [ %{Plugins} ].indexOf('Designer') >= 0}",

    "options": [
        { "key": "UiClass", "value": "%{JS: QtSupport.uiClassName([ %{FormContents} ].join('\\n'))}" },
        { "key": "Extension", "value": "%{JS: Util.preferredSuffix('application/x-designer')}"},
        { "key": "InitialFileName", "value": "%{JS: Cpp.classToFileName('%{UiClass}', '%{Extension}') }" }
    ],

    "pages":
    [
        {
            "trDisplayName": "Choose a Form Template",
            "trShortTitle": "Form Template",
            "typeId": "Form"
        },
        {
            "trDisplayName": "Location",
            "trShortTitle": "Location",
            "typeId": "File"
        },
        {
            "trDisplayName": "Project Management",
            "trShortTitle": "Summary",
            "typeId": "Summary"
        }
    ],

    "generators":
    [
        {
            "typeId": "File",
            "data":
            {
                "source": "file.ui",
                "target": "%{JS: Cpp.fileName('%{TargetPath}', '%{Extension}')}",
                "openInEditor": true
            }
        }
    ]
}