a9cc5438a5
* grub-core/term/ieee1275/ofconsole.c (grub_ofconsole_dimensions): Save state in grub_ofconsole_terminfo_output. (grub_ofconsole_term): Use grub_terminfo_getwh. (grub_ofconsole_getwh): Removed. * grub-core/term/serial.c (grub_serial_getwh): Removed. (grub_serial_term): Use grub_terminfo_getwh. * grub-core/term/terminfo.c (grub_terminfo_getwh): New function. (options): New struct. (OPTION_*): New enum. (grub_cmd_terminfo): Transform into extcmd and handle new parameters. * include/grub/terminfo.h (grub_terminfo_output_state): New fields width and height. (grub_terminfo_getwh): New proto. * grub-core/lib/legacy_parse.c (grub_legacy_parse): Handle --lines.
80 lines
2.6 KiB
C
80 lines
2.6 KiB
C
/*
|
|
* GRUB -- GRand Unified Bootloader
|
|
* Copyright (C) 2002,2003,2005,2007 Free Software Foundation, Inc.
|
|
*
|
|
* GRUB 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* GRUB 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 GRUB. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef GRUB_TERMINFO_HEADER
|
|
#define GRUB_TERMINFO_HEADER 1
|
|
|
|
#include <grub/err.h>
|
|
#include <grub/types.h>
|
|
#include <grub/term.h>
|
|
|
|
char *EXPORT_FUNC(grub_terminfo_get_current) (struct grub_term_output *term);
|
|
grub_err_t EXPORT_FUNC(grub_terminfo_set_current) (struct grub_term_output *term,
|
|
const char *);
|
|
|
|
#define GRUB_TERMINFO_READKEY_MAX_LEN 4
|
|
struct grub_terminfo_input_state
|
|
{
|
|
int input_buf[GRUB_TERMINFO_READKEY_MAX_LEN];
|
|
int npending;
|
|
int (*readkey) (struct grub_term_input *term);
|
|
};
|
|
|
|
struct grub_terminfo_output_state
|
|
{
|
|
struct grub_term_output *next;
|
|
|
|
char *name;
|
|
|
|
char *gotoxy;
|
|
char *cls;
|
|
char *reverse_video_on;
|
|
char *reverse_video_off;
|
|
char *cursor_on;
|
|
char *cursor_off;
|
|
char *setcolor;
|
|
|
|
unsigned int width, height;
|
|
|
|
unsigned int xpos, ypos;
|
|
|
|
void (*put) (struct grub_term_output *term, const int c);
|
|
};
|
|
|
|
void EXPORT_FUNC(grub_terminfo_gotoxy) (grub_term_output_t term,
|
|
grub_uint8_t x, grub_uint8_t y);
|
|
void EXPORT_FUNC(grub_terminfo_cls) (grub_term_output_t term);
|
|
grub_uint16_t EXPORT_FUNC (grub_terminfo_getxy) (struct grub_term_output *term);
|
|
void EXPORT_FUNC (grub_terminfo_setcursor) (struct grub_term_output *term,
|
|
const int on);
|
|
void EXPORT_FUNC (grub_terminfo_setcolorstate) (struct grub_term_output *term,
|
|
const grub_term_color_state state);
|
|
|
|
|
|
grub_err_t EXPORT_FUNC (grub_terminfo_input_init) (struct grub_term_input *term);
|
|
int EXPORT_FUNC (grub_terminfo_getkey) (struct grub_term_input *term);
|
|
void EXPORT_FUNC (grub_terminfo_putchar) (struct grub_term_output *term,
|
|
const struct grub_unicode_glyph *c);
|
|
grub_uint16_t EXPORT_FUNC (grub_terminfo_getwh) (struct grub_term_output *term);
|
|
|
|
|
|
grub_err_t EXPORT_FUNC (grub_terminfo_output_register) (struct grub_term_output *term,
|
|
const char *type);
|
|
grub_err_t EXPORT_FUNC (grub_terminfo_output_unregister) (struct grub_term_output *term);
|
|
|
|
#endif /* ! GRUB_TERMINFO_HEADER */
|