-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathform.json
More file actions
21 lines (21 loc) · 1.14 KB
/
form.json
File metadata and controls
21 lines (21 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"elements": [
{ "type": "SelectMedia", "name": "MasterView", "caption": "Master View" },
{ "type": "SelectMedia", "name": "ChildView", "caption": "Child View" },
{ "type": "NumberSpinner", "name": "RatioX", "caption": "Ratio X", "digits": 3},
{ "type": "NumberSpinner", "name": "RatioY", "caption": "Ratio Y", "digits": 3},
{ "type": "Label", "label": "---------------------------------" },
{ "type": "CheckBox", "name": "AutoSync", "caption": "AutoSync" },
{ "type": "IntervalBox", "name": "Interval", "caption": "Seconds" }
],
"actions": [
{ "type": "Button", "label": "Resize", "onClick": "IPSView_Resize($id);" }
] ,
"status": [
{ "code": 102, "icon": "active", "caption": "Synchronization is active" },
{ "code": 104, "icon": "inactive", "caption": "Synchronization is inactive" },
{ "code": 201, "icon": "error", "caption": "No MasterView specified" },
{ "code": 202, "icon": "error", "caption": "No ChildView specified" },
{ "code": 203, "icon": "error", "caption": "Ratio has to be greater 0" }
]
}