94fc8eaba8
Change-Id: I8406bdf375cf83d504e45a5c8f27ce2ceb1f9c51 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130190 Tested-by: Jenkins Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
24 lines
592 B
Text
24 lines
592 B
Text
/*
|
|
This file is for the Dialog commands.
|
|
It handles all types of Dialog: the Modeless and the Modal.
|
|
It also handles the Close Dialog commands.
|
|
*/
|
|
DialogCommand:
|
|
OpenDialog | CloseDialog
|
|
;
|
|
|
|
OpenDialog:
|
|
OpenModalDialog | OpenModelessDialog
|
|
;
|
|
OpenModalDialog :
|
|
'Open Modal ' dialog_name=ID
|
|
;
|
|
OpenModelessDialog :
|
|
'Open Modeless ' dialog_name=ID
|
|
;
|
|
|
|
CloseDialog:
|
|
// If there is a need to match a dialog name in the future, additional_note=STRING? can be used.
|
|
// It is also used to make an instance of the command of type CloseDialog.
|
|
'Close Dialog' additional_note=STRING?
|
|
;
|