diff options
author | 2019-05-26 15:44:32 +1000 | |
---|---|---|
committer | 2019-05-26 15:44:32 +1000 | |
commit | b8a6bb13ceda7852217d08eb1f15ed4591c0c11b (patch) | |
tree | f09077efc0258732ffc793ab681b9700a98447f7 /src/emu/inpttype.h | |
parent | 987365c5c5573ddfa70ce043d0502ff25602e9df (diff) |
add focus next/previous input types, will be hooked up later (nw)
Diffstat (limited to 'src/emu/inpttype.h')
-rw-r--r-- | src/emu/inpttype.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/inpttype.h b/src/emu/inpttype.h index 3c30ad517f4..9cf56fd18ee 100644 --- a/src/emu/inpttype.h +++ b/src/emu/inpttype.h @@ -848,6 +848,8 @@ inline void construct_core_types_UI(simple_list<input_type_entry> &typelist) INPUT_PORT_DIGITAL_TYPE( 0, UI, UI_END, "UI End", input_seq(KEYCODE_END) ) INPUT_PORT_DIGITAL_TYPE( 0, UI, UI_PAGE_UP, "UI Page Up", input_seq(KEYCODE_PGUP) ) INPUT_PORT_DIGITAL_TYPE( 0, UI, UI_PAGE_DOWN, "UI Page Down", input_seq(KEYCODE_PGDN) ) + INPUT_PORT_DIGITAL_TYPE( 0, UI, UI_FOCUS_NEXT, "UI Focus Next", input_seq(KEYCODE_TAB, input_seq::not_code, KEYCODE_LSHIFT) ) + INPUT_PORT_DIGITAL_TYPE( 0, UI, UI_FOCUS_PREV, "UI Focus Previous", input_seq(KEYCODE_TAB, KEYCODE_LSHIFT) ) INPUT_PORT_DIGITAL_TYPE( 0, UI, UI_SELECT, "UI Select", input_seq(KEYCODE_ENTER, input_seq::or_code, JOYCODE_BUTTON1_INDEXED(0), input_seq::or_code, KEYCODE_ENTER_PAD) ) INPUT_PORT_DIGITAL_TYPE( 0, UI, UI_CANCEL, "UI Cancel", input_seq(KEYCODE_ESC) ) INPUT_PORT_DIGITAL_TYPE( 0, UI, UI_DISPLAY_COMMENT, "UI Display Comment", input_seq(KEYCODE_SPACE) ) |