-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwindow.json
More file actions
223 lines (223 loc) · 5.9 KB
/
window.json
File metadata and controls
223 lines (223 loc) · 5.9 KB
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
{
"$id": "https://raw.githubusercontent.com/snxd/schema-client/8.0.3/window.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Window configuration.",
"type": "object",
"properties": {
"aspectRatio": {
"description": "Aspect ratio to maintain when resizing the window.",
"oneOf": [
{
"type": "integer"
},
{
"type": "object",
"properties": {
"width": {
"description": "Width for aspect ratio calculation.",
"type": "integer"
},
"height": {
"description": "Height for aspect ratio calculation.",
"type": "integer"
}
}
}
]
},
"awk": {
"description": "Apple WebKit options.",
"$ref": "#/definitions/awk"
},
"cef": {
"description": "Chromium Embedded Framework options.",
"$ref": "#/definitions/cef"
},
"ie": {
"description": "Internet Explorer options.",
"$ref": "#/definitions/ie"
},
"loadTimeout": {
"description": "Time in seconds to wait for window to load.",
"default": 30,
"type": "integer"
},
"mac": {
"description": "macOS options.",
"$ref": "#/definitions/mac"
},
"maxHeight": {
"description": "Maximum window height which gets automatically adjusted for DPI.",
"type": "integer"
},
"maxWidth": {
"description": "Maximum window width which gets automatically adjusted for DPI.",
"type": "integer"
},
"minHeight": {
"description": "Minimum window height which gets automatically adjusted for DPI.",
"default": 400,
"type": "integer"
},
"minimizeToNotificationArea": {
"description": "Minimize application to notification area.",
"default": false,
"type": "boolean"
},
"minWidth": {
"description": "Minimum window width which gets automatically adjusted for DPI.",
"default": 600,
"type": "integer"
},
"popupFrame": {
"description": "Type of popup window to create.",
"enum": ["Resizable", "Normal"],
"default": "Normal",
"type": "string"
},
"spriteSheet": {
"description": "Skin file path to the spritesheet image file (used for taskbar overlay, notification icon changing, regular icon changing).",
"type": "string"
},
"title": {
"description": "Window title.",
"type": "string"
},
"url": {
"description": "Url to the main html page.",
"type": "string"
},
"useNotificationArea": {
"description": "Display icon in notification area.",
"default": false,
"type": "boolean"
},
"windowFrame": {
"description": "Type of window to create.",
"default": "Normal",
"oneOf": [
{
"type": "string",
"enum": ["Borderless", "Popup", "Resizable", "Normal"]
},
{
"type": "object",
"properties": {
"style": {
"description": "Window style.",
"enum": ["Borderless", "Popup", "Normal"],
"default": "Normal",
"type": "string"
},
"resizable": {
"description": "Window resizable.",
"default": false,
"type": "boolean"
}
}
}
]
}
},
"definitions": {
"awk": {
"type": "object",
"properties": {
"java": {
"description": "Allow java to run.",
"default": false,
"type": "boolean"
}
}
},
"cef": {
"type": "object",
"properties": {
"databases": {
"description": "Enable databases.",
"default": false,
"type": "boolean"
},
"localStorage": {
"description": "Enable local storage.",
"default": false,
"type": "boolean"
},
"java": {
"description": "Allow java to run.",
"default": false,
"type": "boolean"
},
"pageCache": {
"description": "Enable page cache.",
"default": false,
"type": "boolean"
},
"webGl": {
"description": "Enable WebGL extensions.",
"default": false,
"type": "boolean"
},
"webSecurity": {
"description": "Enable web security restrictions (same-origin policy). Removed in CEF4515.",
"default": true,
"type": "boolean"
}
}
},
"ie": {
"type": "object",
"properties": {
"debug": {
"description": "Dialog boxes and messages can be displayed. Critical errors and security alerts are not suppressed.",
"default": false,
"type": "boolean"
}
}
},
"mac": {
"type": "object",
"properties": {
"minimizeAsAppIcon": {
"description": "Show app icon in minimize tray instead of window.",
"type": "boolean"
}
}
},
"webKitGtk": {
"type": "object",
"properties": {
"databases": {
"description": "Enable databases.",
"default": false,
"type": "boolean"
},
"localStorage": {
"description": "Enable local storage.",
"default": false,
"type": "boolean"
},
"java": {
"description": "Allow java to run.",
"default": false,
"type": "boolean"
},
"pageCache": {
"description": "Enable page cache.",
"default": false,
"type": "boolean"
},
"plugins": {
"description": "Allow user plugins.",
"default": false,
"type": "boolean"
},
"webGl": {
"description": "Enable WebGL extensions.",
"default": false,
"type": "boolean"
}
}
}
}
}