00323f9461
1) Make small changes in the UI logger Grammar 2) Add Comments to be more documented Change-Id: I5e68c33375870cf4a1f2537ee1a7eb997145f24f
24 lines
548 B
Text
24 lines
548 B
Text
/*
|
|
this file for the Dialog commands
|
|
It handle all types of Dialog the Modeless and the Modal
|
|
Also It handle the Close Dialog Commands
|
|
*/
|
|
DialogCommand:
|
|
OpenDialog | CloseDialog
|
|
;
|
|
|
|
OpenDialog:
|
|
OpenModalDialog | OpenModelessDialog
|
|
;
|
|
OpenModalDialog :
|
|
'Open Modal ' dialog_name=ID
|
|
;
|
|
OpenModelessDialog :
|
|
'Open Modeless ' dialog_name=ID
|
|
;
|
|
|
|
CloseDialog:
|
|
//the additional_note=STRING? if you need to add name in the future
|
|
//Also it's used to make instance of the command of type CloseDialog
|
|
'Close Dialog' additional_note=STRING?
|
|
;
|