-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmenu_example.json
77 lines (76 loc) · 2.62 KB
/
menu_example.json
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
{
"menu-title": {
"text": "This is menu title",
"theme": "green",
"style": "color: #000000"
},
"file-choice": [
{"text": "SUB-MENU2", "file": "../menus2/menu_example.json"},
{"text": "SUB-MENU", "file": "menu_2.json"}
],
"menu": [
{
"type": "title",
"text": "Title 1 - default style"
},
{
"type": "menu",
"text": "This is sub-menu -default style",
"file": "file:///home/rvintar/workspace/CSL/launcher_req/git/pylauncher/examples/menus2/menu_5.json",
"tip": "Menu tip.",
"help-link": "http://www.link.com/to/help"
},
{
"type": "cmd",
"text": "This is command-default style",
"command": "xeyes",
"tip": "Opens xeyes."
},
{
"type": "separator"
},
{
"type": "title",
"text": "Title 2 - changed style",
"style":"color: #ff0000"
},
{
"type": "caqtdm",
"text": "This is caQtDM screen - changed style",
"panel": "MY-SCREEN.ui",
"macros": "MACRO1=M1,MACRO2=M2",
"param": "-attach -dg +250+250",
"help-link": "http://www.link.com/to/help",
"theme": "green",
"style": "color: #333333"
},
{"type": "caqtdm", "text": "T&S racks", "param":"-stylefile sfop.qss", "macros": "GROUP=TS,ALIAS=ALIAS,TITLE=TS-racks", "panel": "S_GUDE_DisplayGroup.ui"},
{"type": "caqtdm", "text": "T&S racks", "param":"-stylefile sfop.qss", "macros": "GROUP=TS,ALIAS=ALIAS,TITLE=T&S-racks", "panel": "S_GUDE_DisplayGroup.ui"},
{
"type": "medm",
"text": "This is medm screen - changed style",
"panel": "MY-SCREEN.adl",
"macros": "MACRO1=M1,MACRO2=M2",
"param": "-attach -dg +250+400",
"help-link": "http://www.link.com/to/help",
"theme": "green",
"style": "color: #333333"
},
{
"type": "pep",
"text": "This is pep panel from .prc file",
"panel": "MY-PEP.prc",
"help-link": "http://www.link.com/to/help",
"theme": "green",
"style": "color: #333333"
},
{
"type": "pep",
"text": "This is pep panel defined in shell",
"param": "-ws TEST-PV1 -fr TEST-PV2",
"help-link": "http://www.link.com/to/help",
"theme": "green",
"style": "color: #333333"
}
]
}