1
0
Fork 0
libreoffice/uitest/ui_logger_dsl/dialog_commands.tx
Daniel Baumann 8e63e14cf6
Adding upstream version 4:25.2.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 16:20:04 +02:00

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?
;