abapGit/src/zif_abapgit_gui_page_hotkey.intf.abap
Christian Guenter 5c2a646809 Hotkey overview
After this commit is applied one can open the hotkey overview
with '?'.
2018-08-17 09:26:12 +02:00

21 lines
577 B
ABAP

INTERFACE zif_abapgit_gui_page_hotkey
PUBLIC.
TYPES:
BEGIN OF ty_hotkey_action,
name TYPE string,
action TYPE string,
default_hotkey TYPE string,
END OF ty_hotkey_action,
tty_hotkey_action TYPE STANDARD TABLE OF ty_hotkey_action
WITH NON-UNIQUE DEFAULT KEY
WITH NON-UNIQUE SORTED KEY action
COMPONENTS action.
CLASS-METHODS
get_hotkey_actions
RETURNING
VALUE(rt_hotkey_actions) TYPE tty_hotkey_action.
ENDINTERFACE.