blob: 4711ad6ac496b812e2c79d0d9253fbc06462ee38 (
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
|
/*
This file is for the grammar of:
1) ButtonUIObject : ( Click event )
2) EditUIObject : ( Type event - Clear event - Select Text event )
3) CheckBoxUIObject : ( Toggle the value )
4) RadioButtonUIObject : ( Select event )
5) ListBoxUIObject : ( Select event )
6) ComboBoxUIObject ( Select event )
7) SpinUIObject ( Increase event - Decrease event )
8) TabControlUIObject ( Change tab event )
9) ToolBoxUIObject ( Click on item event )
10) ValueSetUIObject (Choose item)
10) MenuBtnUIObject ( Select - Open - Close )
*/
import type_options
UIObjectCommand:
ButtonUIObject | CheckBoxUIObject | EditUIObject |
RadioButtonUIObject | ListBoxUIObject | ComboBoxUIObject |
SpinFieldUIObject | TabControlUIObject | ToolBoxUIObject |
ValueSetUIObject | MenuBtnUIObject
;
TabPageNumber:
INT | ID
;
ButtonUIObject:
'Click on' ui_button=STRING ('from' parent_id=ID)?
;
CheckBoxUIObject:
'Toggle' Check_box_id=STRING 'CheckBox' ('from' parent_id=ID)?
;
RadioButtonUIObject:
'Select' Radio_button_id=STRING 'RadioButton' ('from' parent_id=ID)?
;
ComboBoxUIObject:
'Select in' Combo_box_id=STRING 'ComboBox' 'item number' item_num=INT ('from' parent_id=ID)?
;
TabControlUIObject:
'Choose Tab number' tab_page_number=TabPageNumber 'in' tab_id=STRING ('from' parent_id=ID)?
;
EditUIObject:
action=action_on_UIObject ('from' parent_id=ID)?
;
SpinFieldUIObject:
change=increase_or_decrease Spin_id=STRING ('from' parent_id=ID)?
;
ListBoxUIObject:
'Select element with position ' POS=INT 'in' list_id=STRING ('from' parent_id=ID)?
;
ToolBoxUIObject:
'Click on item number' POS=INT 'in' toolbox_id=ID
;
ValueSetUIObject:
'Choose element with position ' POS=INT 'in' value_set_id=STRING 'from' parent_id=STRING
;
//=============================================================
MenuBtnUIObject:
MenuBtnUIObjectOpen | MenuBtnUIObjectSelect | MenuBtnUIObjectClose
;
MenuBtnUIObjectOpen:
'Open List From' + MenuBtn_ID=ID
;
MenuBtnUIObjectClose:
'Close List From' + MenuBtn_ID=ID
;
MenuBtnUIObjectSelect:
'Select item no' + item_num=INT + 'From List of' + MenuBtn_ID=ID
;
//=============================================================
// Helper grammar for EditUIObject
action_on_UIObject:
Type_action | SELECT | Clear
;
Type_action:
'Type on' edit_button=STRING what_to_type=Type_options
;
SELECT:
'Select in ' edit_button=STRING
'{' + '"FROM"' + ':' + '"' from_pos=INT '"' + ',' + '"TO"' + ':' + '"' to_pos=INT '"'+'}'
;
Clear:
'Clear' edit_button=STRING
;
//=============================================================
// Helper functions for SpinUIObject
increase_or_decrease:
'Increase' | 'Decrease'
;
|