]> git.proxmox.com Git - grub2.git/blame - include/grub/normal.h
* grub-core/commands/testspeed.c: New command testspeed.
[grub2.git] / include / grub / normal.h
CommitLineData
ce5bf700 1/* normal.h - prototypes for the normal mode */
2/*
4b13b216 3 * GRUB -- GRand Unified Bootloader
6fa42fa6 4 * Copyright (C) 2002,2003,2005,2006,2007,2008,2009 Free Software Foundation, Inc.
ce5bf700 5 *
5a79f472 6 * GRUB is free software: you can redistribute it and/or modify
ce5bf700 7 * it under the terms of the GNU General Public License as published by
5a79f472 8 * the Free Software Foundation, either version 3 of the License, or
ce5bf700 9 * (at your option) any later version.
10 *
5a79f472 11 * GRUB is distributed in the hope that it will be useful,
ce5bf700 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
5a79f472 17 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
ce5bf700 18 */
19
4b13b216 20#ifndef GRUB_NORMAL_HEADER
21#define GRUB_NORMAL_HEADER 1
ce5bf700 22
f4c623e1 23#include <grub/term.h>
4b13b216 24#include <grub/symbol.h>
25#include <grub/err.h>
f3b58148 26#include <grub/env.h>
6fa42fa6 27#include <grub/menu.h>
b1b797cb 28#include <grub/command.h>
d05f0df3 29#include <grub/file.h>
ce5bf700 30
7f39d92f 31/* The standard left and right margin for some messages. */
32#define STANDARD_MARGIN 6
33
992ffbbe 34/* The type of a completion item. */
35enum grub_completion_type
36 {
37 GRUB_COMPLETION_TYPE_COMMAND,
38 GRUB_COMPLETION_TYPE_DEVICE,
39 GRUB_COMPLETION_TYPE_PARTITION,
40 GRUB_COMPLETION_TYPE_FILE,
67f44c86 41 GRUB_COMPLETION_TYPE_ARGUMENT
992ffbbe 42 };
43typedef enum grub_completion_type grub_completion_type_t;
44
772e23da 45extern struct grub_menu_viewer grub_normal_text_menu_viewer;
6066889c 46extern int grub_normal_exit_level;
6fa42fa6 47
230c0ad6 48/* Defined in `main.c'. */
4b13b216 49void grub_enter_normal_mode (const char *config);
f04f02e4 50void grub_normal_execute (const char *config, int nested, int batch);
8b8a81fa 51void grub_menu_init_page (int nested, int edit, int *num_entries,
2e713831 52 struct grub_term_output *term);
f4c623e1 53void grub_normal_init_page (struct grub_term_output *term);
230c0ad6 54char *grub_file_getline (grub_file_t file);
55void grub_cmdline_run (int nested);
56
57/* Defined in `cmdline.c'. */
2e713831 58char *grub_cmdline_get (const char *prompt);
4b13b216 59grub_err_t grub_set_history (int newsize);
230c0ad6 60
61/* Defined in `completion.c'. */
992ffbbe 62char *grub_normal_do_completion (char *buf, int *restore,
63 void (*hook) (const char *item, grub_completion_type_t type, int count));
230c0ad6 64
65/* Defined in `misc.c'. */
992ffbbe 66grub_err_t grub_normal_print_device_info (const char *name);
230c0ad6 67
68/* Defined in `color.c'. */
0ece25b1 69char *grub_env_write_color_normal (struct grub_env_var *var, const char *val);
70char *grub_env_write_color_highlight (struct grub_env_var *var, const char *val);
681440aa 71int grub_parse_color_name_pair (grub_uint8_t *ret, const char *name);
230c0ad6 72
73/* Defined in `menu_text.c'. */
0ece25b1 74void grub_wait_after_message (void);
f588f1c8
VS
75void
76grub_print_ucs4 (const grub_uint32_t * str,
77 const grub_uint32_t * last_position,
78 int margin_left, int margin_right,
79 struct grub_term_output *term);
34f71cb8
VS
80
81void
82grub_print_ucs4_menu (const grub_uint32_t * str,
83 const grub_uint32_t * last_position,
84 int margin_left, int margin_right,
85 struct grub_term_output *term,
86 int skip_lines, int max_lines, grub_uint32_t contchar,
87 struct grub_term_pos *pos);
8b8a81fa
VS
88int
89grub_ucs4_count_lines (const grub_uint32_t * str,
90 const grub_uint32_t * last_position,
91 int margin_left, int margin_right,
92 struct grub_term_output *term);
b99518d1 93grub_ssize_t grub_getstringwidth (grub_uint32_t * str,
2e713831
VS
94 const grub_uint32_t * last_position,
95 struct grub_term_output *term);
7f39d92f 96void grub_print_message_indented (const char *msg, int margin_left,
2e713831
VS
97 int margin_right,
98 struct grub_term_output *term);
99void
100grub_menu_text_register_instances (int entry, grub_menu_t menu, int nested);
101grub_err_t
dcb883b1 102grub_show_menu (grub_menu_t menu, int nested, int autobooted);
4b13b216 103
230c0ad6 104/* Defined in `handler.c'. */
d05f0df3 105void read_handler_list (void);
106void free_handler_list (void);
230c0ad6 107
108/* Defined in `dyncmd.c'. */
027de555 109void read_command_list (const char *prefix);
230c0ad6 110
111/* Defined in `autofs.c'. */
027de555 112void read_fs_list (const char *prefix);
230c0ad6 113
2fbcbbc3
VS
114void grub_context_init (void);
115void grub_context_fini (void);
d05f0df3 116
027de555 117void read_crypto_list (const char *prefix);
7316783f 118
027de555 119void read_terminal_list (const char *prefix);
33c1ed4c 120
f4c623e1 121void grub_set_more (int onoff);
d05f0df3 122
5c56cac9 123void grub_normal_reset_more (void);
c6f2fe52 124
0a239a82
VS
125void grub_xputs_normal (const char *str);
126
a38b701c 127extern int grub_extractor_level;
7756d444 128
bd960307
VS
129grub_err_t
130grub_normal_add_menu_entry (int argc, const char **args, char **classes,
d9bef9bc 131 const char *id,
bd960307 132 const char *users, const char *hotkey,
fc55cc4c
VS
133 const char *prefix, const char *sourcecode,
134 int submenu);
bd960307 135
a37376e7
VS
136grub_err_t
137grub_normal_set_password (const char *user, const char *password);
138
fc55cc4c
VS
139void grub_normal_free_menu (grub_menu_t menu);
140
df895792
VS
141void grub_normal_auth_init (void);
142void grub_normal_auth_fini (void);
143
cc19857a
VS
144void
145grub_xnputs (const char *str, grub_size_t msg_len);
146
e4e37e8d
VS
147grub_command_t
148grub_dyncmd_get_cmd (grub_command_t cmd);
149
17f38c0f
VS
150void
151grub_gettext_reread_prefix (const char *val);
152
fa292343
B
153enum grub_human_size_type
154 {
155 GRUB_HUMAN_SIZE_NORMAL,
156 GRUB_HUMAN_SIZE_SHORT,
157 GRUB_HUMAN_SIZE_SPEED,
158 };
159
310d4214 160const char *
fa292343 161grub_get_human_size (grub_uint64_t size, enum grub_human_size_type type);
310d4214 162
4b13b216 163#endif /* ! GRUB_NORMAL_HEADER */