mirror of
https://github.com/mpv-player/mpv
synced 2024-12-15 19:35:49 +00:00
c51c1fc668
The Unix version of getch2() could either return an internally buffered key or do a second-level select() in addition to the input.c one and then read more data. Change getch2() to always add all read keys with mplayer_put_key() (like video output window keyboard input does) and remove the internal select() from the Unix version. Make input.c call mplayer_get_key() directly. The primary motivation for this change is to make combining multiple event sources under one select() easier. Now getch2() only needs to be called when the corresponding fd is readable, and it will be possible to handle events from X-based VOs with the same code. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24149 b3059339-0415-0410-9bf9-f77b7e298cf2
27 lines
820 B
C
27 lines
820 B
C
/* GyS-TermIO v2.0 (for GySmail v3) (C) 1999 A'rpi/ESP-team */
|
|
/* a very small replacement of ncurses library */
|
|
|
|
/* Screen size. Initialized by load_termcap() and get_screen_size() */
|
|
extern int screen_width;
|
|
extern int screen_height;
|
|
|
|
/* Termcap code to erase to end of line */
|
|
extern char * erase_to_end_of_line;
|
|
|
|
/* Get screen-size using IOCTL call. */
|
|
extern void get_screen_size(void);
|
|
|
|
/* Load key definitions from the TERMCAP database. 'termtype' can be NULL */
|
|
extern int load_termcap(char *termtype);
|
|
|
|
/* Enable and disable STDIN line-buffering */
|
|
extern void getch2_enable(void);
|
|
extern void getch2_disable(void);
|
|
|
|
/* Read a character or a special key code (see keycodes.h) */
|
|
extern void getch2(void);
|
|
|
|
#ifdef __MINGW32__
|
|
extern int mp_input_win32_slave_cmd_func(int fd,char* dest,int size);
|
|
#endif
|