mirror of
https://github.com/mpv-player/mpv
synced 2024-12-27 01:22:30 +00:00
VO: support Pause/Break key in X11 input
Allow Pause/Break key to be bound as MPlayer input key under X11. patch by Steaphan Greene, sgreene cs.binghamton edu git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33609 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
0cace1d722
commit
d6e34fe91a
@ -19,6 +19,7 @@
|
||||
#ifndef MPLAYER_WSKEYS_H
|
||||
#define MPLAYER_WSKEYS_H
|
||||
|
||||
#define wsPause 0x13 + 256
|
||||
#define wsUp 0x52 + 256
|
||||
#define wsDown 0x54 + 256
|
||||
#define wsLeft 0x51 + 256
|
||||
|
@ -550,7 +550,8 @@ static void vo_x11_putkey_ext(struct vo *vo, int keysym, int modifiers)
|
||||
|
||||
static const struct mp_keymap keymap[] = {
|
||||
// special keys
|
||||
{wsEscape, KEY_ESC}, {wsBackSpace, KEY_BS}, {wsTab, KEY_TAB}, {wsEnter, KEY_ENTER},
|
||||
{wsPause, KEY_PAUSE}, {wsEscape, KEY_ESC}, {wsBackSpace, KEY_BS},
|
||||
{wsTab, KEY_TAB}, {wsEnter, KEY_ENTER},
|
||||
|
||||
// cursor keys
|
||||
{wsLeft, KEY_LEFT}, {wsRight, KEY_RIGHT}, {wsUp, KEY_UP}, {wsDown, KEY_DOWN},
|
||||
|
Loading…
Reference in New Issue
Block a user