2009-03-01 13:13:25 +00:00
|
|
|
/*
|
|
|
|
* GyS-TermIO v2.0 (for GySmail v3)
|
|
|
|
* a very small replacement of ncurses library
|
|
|
|
*
|
2009-03-03 16:17:11 +00:00
|
|
|
* copyright (C) 1999 A'rpi/ESP-team
|
|
|
|
*
|
2009-03-01 13:13:25 +00:00
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#ifndef MPLAYER_GETCH2_H
|
|
|
|
#define MPLAYER_GETCH2_H
|
2008-01-01 21:35:58 +00:00
|
|
|
|
2012-04-06 11:24:26 +00:00
|
|
|
#include <stdbool.h>
|
2013-12-18 14:03:08 +00:00
|
|
|
#include <stdio.h>
|
2012-04-06 11:24:26 +00:00
|
|
|
|
2013-12-21 18:33:45 +00:00
|
|
|
struct input_ctx;
|
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
/* Screen size. Initialized by load_termcap() and get_screen_size() */
|
|
|
|
extern int screen_width;
|
|
|
|
extern int screen_height;
|
|
|
|
|
2005-12-25 18:26:35 +00:00
|
|
|
/* Termcap code to erase to end of line */
|
|
|
|
extern char * erase_to_end_of_line;
|
|
|
|
|
2013-12-18 14:03:08 +00:00
|
|
|
/* Global initialization for terminal output. */
|
|
|
|
int terminal_init(void);
|
|
|
|
|
2013-12-21 18:33:45 +00:00
|
|
|
/* Setup ictx to read input commands from stdin (slave mode) */
|
|
|
|
void terminal_setup_stdin_cmd_input(struct input_ctx *ictx);
|
|
|
|
|
|
|
|
/* Setup ictx to read keys from the terminal */
|
|
|
|
void terminal_setup_getch(struct input_ctx *ictx);
|
|
|
|
|
2013-12-18 14:03:08 +00:00
|
|
|
/* Return whether the process has been backgrounded. */
|
|
|
|
bool terminal_in_background(void);
|
|
|
|
|
|
|
|
/* Set ANSI text foreground color. c is [-1, 7], where 0-7 are colors, and
|
|
|
|
* -1 means reset to default. stream is either stdout or stderr. */
|
|
|
|
void terminal_set_foreground_color(FILE *stream, int c);
|
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
/* Get screen-size using IOCTL call. */
|
2008-12-03 23:01:03 +00:00
|
|
|
void get_screen_size(void);
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2013-01-23 14:47:49 +00:00
|
|
|
/* Initialize getch2 */
|
2008-12-03 23:01:03 +00:00
|
|
|
void getch2_enable(void);
|
|
|
|
void getch2_disable(void);
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2013-01-23 14:47:49 +00:00
|
|
|
/* Enable and disable STDIN line-buffering */
|
|
|
|
void getch2_poll(void);
|
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_GETCH2_H */
|