summaryrefslogtreecommitdiff
path: root/src/controls/plugins.qmltypes
blob: 1cfb3477da77bd71d3f04e793aea3869d9f0149d (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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
import QtQuick.tooling 1.1

// This file describes the plugin-supplied types contained in the library.
// It is used for QML tooling purposes only.
//
// This file was auto-generated with the command 'qmlplugindump QtQuick.Controls 1.0'.

Module {
    Component {
        name: "QPageStatus"
        prototype: "QObject"
        exports: ["PageStatus 1.0"]
        Enum {
            name: "PageStatus"
            values: {
                "Inactive": 0,
                "Deactivating": 1,
                "Activating": 2,
                "Active": 3
            }
        }
    }
    Component {
        name: "QtAction"
        prototype: "QObject"
        exports: ["Action 1.0"]
        Property { name: "text"; type: "string" }
        Property { name: "iconSource"; type: "QUrl" }
        Property { name: "iconName"; type: "string" }
        Property { name: "__icon"; type: "QVariant"; isReadonly: true }
        Property { name: "tooltip"; type: "string" }
        Property { name: "enabled"; type: "bool" }
        Property { name: "checkable"; type: "bool" }
        Property { name: "checked"; type: "bool" }
        Property { name: "exclusiveGroup"; type: "QtExclusiveGroup"; isPointer: true }
        Property { name: "shortcut"; type: "string" }
        Signal { name: "triggered" }
        Signal {
            name: "toggled"
            Parameter { type: "bool" }
        }
        Signal {
            name: "shortcutChanged"
            Parameter { name: "shortcut"; type: "string" }
        }
        Signal { name: "iconChanged" }
        Signal {
            name: "tooltipChanged"
            Parameter { name: "arg"; type: "string" }
        }
        Method { name: "trigger" }
    }
    Component {
        name: "QtExclusiveGroup"
        prototype: "QObject"
        exports: ["ExclusiveGroup 1.0"]
        Property { name: "current"; type: "QObject"; isPointer: true }
        Method {
            name: "bindCheckable"
            Parameter { name: "o"; type: "QObject"; isPointer: true }
        }
        Method {
            name: "unbindCheckable"
            Parameter { name: "o"; type: "QObject"; isPointer: true }
        }
    }
    Component {
        name: "QtMenu"
        defaultProperty: "items"
        prototype: "QtMenuText"
        exports: ["MenuPrivate 1.0"]
        Property { name: "items"; type: "QtMenuBase"; isList: true; isReadonly: true }
        Property { name: "selectedIndex"; type: "int" }
        Property { name: "model"; type: "QVariant" }
        Property { name: "__popupVisible"; type: "bool"; isReadonly: true }
        Property { name: "__contentItem"; type: "QQuickItem"; isPointer: true }
        Property { name: "__minimumWidth"; type: "int" }
        Property { name: "__font"; type: "QFont" }
        Signal {
            name: "modelChanged"
            Parameter { name: "newModel"; type: "QVariant" }
        }
        Signal { name: "__menuClosed" }
        Signal { name: "popupVisibleChanged" }
        Method { name: "__closeMenu" }
        Method { name: "__dismissMenu" }
        Method { name: "popup" }
        Method {
            name: "addItem"
            type: "QtMenuItem*"
            Parameter { name: "text"; type: "string" }
        }
        Method { name: "clear" }
        Method {
            name: "__popup"
            Parameter { name: "x"; type: "double" }
            Parameter { name: "y"; type: "double" }
            Parameter { name: "atActionIndex"; type: "int" }
        }
        Method {
            name: "__popup"
            Parameter { name: "x"; type: "double" }
            Parameter { name: "y"; type: "double" }
        }
        Method {
            name: "__modelTextAt"
            type: "string"
            Parameter { name: "index"; type: "int" }
        }
        Method { name: "__modelCount"; type: "int" }
        Method { name: "__hasNativeModel"; type: "bool" }
    }
    Component {
        name: "QtMenuBar"
        defaultProperty: "menus"
        prototype: "QObject"
        exports: ["MenuBarPrivate 1.0"]
        Property { name: "menus"; type: "QtMenu"; isList: true; isReadonly: true }
        Property { name: "__contentItem"; type: "QQuickItem"; isPointer: true }
        Property { name: "__parentWindow"; type: "QQuickWindow"; isPointer: true }
        Property { name: "__isNative"; type: "bool"; isReadonly: true }
        Signal { name: "contentItemChanged" }
    }
    Component {
        name: "QtMenuBase"
        prototype: "QObject"
        exports: ["MenuBase 1.0"]
        Property { name: "visible"; type: "bool" }
        Property { name: "__parentMenu"; type: "QtMenu"; isReadonly: true; isPointer: true }
        Property { name: "__isNative"; type: "bool"; isReadonly: true }
        Property { name: "__visualItem"; type: "QQuickItem"; isPointer: true }
    }
    Component {
        name: "QtMenuItem"
        prototype: "QtMenuText"
        exports: ["MenuItem 1.0"]
        Property { name: "checkable"; type: "bool" }
        Property { name: "checked"; type: "bool" }
        Property { name: "exclusiveGroup"; type: "QtExclusiveGroup"; isPointer: true }
        Property { name: "shortcut"; type: "string" }
        Property { name: "action"; type: "QtAction"; isPointer: true }
        Signal { name: "triggered" }
        Signal {
            name: "toggled"
            Parameter { name: "checked"; type: "bool" }
        }
        Method { name: "trigger" }
    }
    Component {
        name: "QtMenuSeparator"
        prototype: "QtMenuBase"
        exports: ["MenuSeparator 1.0"]
    }
    Component {
        name: "QtMenuText"
        prototype: "QtMenuBase"
        Property { name: "text"; type: "string" }
        Property { name: "enabled"; type: "bool" }
        Property { name: "iconSource"; type: "QUrl" }
        Property { name: "iconName"; type: "string" }
        Property { name: "__icon"; type: "QVariant"; isReadonly: true }
    }
}