1 /* normal.h - prototypes for the normal mode */
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2002,2003,2005,2006,2007,2008,2009 Free Software Foundation, Inc.
6 * GRUB is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * GRUB is distributed in the hope that it will be useful,
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.
16 * You should have received a copy of the GNU General Public License
17 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef GRUB_NORMAL_HEADER
21 #define GRUB_NORMAL_HEADER 1
23 #include <grub/term.h>
24 #include <grub/symbol.h>
27 #include <grub/menu.h>
28 #include <grub/command.h>
29 #include <grub/file.h>
31 /* The standard left and right margin for some messages. */
32 #define STANDARD_MARGIN 6
34 /* The type of a completion item. */
35 enum grub_completion_type
37 GRUB_COMPLETION_TYPE_COMMAND
,
38 GRUB_COMPLETION_TYPE_DEVICE
,
39 GRUB_COMPLETION_TYPE_PARTITION
,
40 GRUB_COMPLETION_TYPE_FILE
,
41 GRUB_COMPLETION_TYPE_ARGUMENT
43 typedef enum grub_completion_type grub_completion_type_t
;
45 extern struct grub_menu_viewer grub_normal_text_menu_viewer
;
46 extern int grub_normal_exit_level
;
48 /* Defined in `main.c'. */
49 void grub_enter_normal_mode (const char *config
);
50 void grub_normal_execute (const char *config
, int nested
, int batch
);
51 struct grub_term_screen_geometry
53 /* The number of entries shown at a time. */
64 void grub_menu_init_page (int nested
, int edit
,
65 struct grub_term_screen_geometry
*geo
,
66 struct grub_term_output
*term
);
67 void grub_normal_init_page (struct grub_term_output
*term
, int y
);
68 char *grub_file_getline (grub_file_t file
);
69 void grub_cmdline_run (int nested
, int force_auth
);
71 /* Defined in `cmdline.c'. */
72 char *grub_cmdline_get (const char *prompt
);
73 grub_err_t
grub_set_history (int newsize
);
75 /* Defined in `completion.c'. */
76 char *grub_normal_do_completion (char *buf
, int *restore
,
77 void (*hook
) (const char *item
, grub_completion_type_t type
, int count
));
79 /* Defined in `misc.c'. */
80 grub_err_t
grub_normal_print_device_info (const char *name
);
82 /* Defined in `color.c'. */
83 char *grub_env_write_color_normal (struct grub_env_var
*var
, const char *val
);
84 char *grub_env_write_color_highlight (struct grub_env_var
*var
, const char *val
);
85 int grub_parse_color_name_pair (grub_uint8_t
*ret
, const char *name
);
87 /* Defined in `menu_text.c'. */
88 void grub_wait_after_message (void);
90 grub_print_ucs4 (const grub_uint32_t
* str
,
91 const grub_uint32_t
* last_position
,
92 int margin_left
, int margin_right
,
93 struct grub_term_output
*term
);
96 grub_print_ucs4_menu (const grub_uint32_t
* str
,
97 const grub_uint32_t
* last_position
,
98 int margin_left
, int margin_right
,
99 struct grub_term_output
*term
,
100 int skip_lines
, int max_lines
, grub_uint32_t contchar
,
101 struct grub_term_pos
*pos
);
103 grub_ucs4_count_lines (const grub_uint32_t
* str
,
104 const grub_uint32_t
* last_position
,
105 int margin_left
, int margin_right
,
106 struct grub_term_output
*term
);
107 grub_size_t
grub_getstringwidth (grub_uint32_t
* str
,
108 const grub_uint32_t
* last_position
,
109 struct grub_term_output
*term
);
110 void grub_print_message_indented (const char *msg
, int margin_left
,
112 struct grub_term_output
*term
);
114 grub_menu_text_register_instances (int entry
, grub_menu_t menu
, int nested
);
116 grub_show_menu (grub_menu_t menu
, int nested
, int autobooted
);
118 /* Defined in `handler.c'. */
119 void read_handler_list (void);
120 void free_handler_list (void);
122 /* Defined in `dyncmd.c'. */
123 void read_command_list (const char *prefix
);
125 /* Defined in `autofs.c'. */
126 void read_fs_list (const char *prefix
);
128 void grub_context_init (void);
129 void grub_context_fini (void);
131 void read_crypto_list (const char *prefix
);
133 void read_terminal_list (const char *prefix
);
135 void grub_set_more (int onoff
);
137 void grub_normal_reset_more (void);
139 void grub_xputs_normal (const char *str
);
141 extern int grub_extractor_level
;
144 grub_normal_add_menu_entry (int argc
, const char **args
, char **classes
,
146 const char *users
, const char *hotkey
,
147 const char *prefix
, const char *sourcecode
,
151 grub_normal_set_password (const char *user
, const char *password
);
153 void grub_normal_free_menu (grub_menu_t menu
);
155 void grub_normal_auth_init (void);
156 void grub_normal_auth_fini (void);
159 grub_xnputs (const char *str
, grub_size_t msg_len
);
162 grub_dyncmd_get_cmd (grub_command_t cmd
);
165 grub_gettext_reread_prefix (const char *val
);
167 enum grub_human_size_type
169 GRUB_HUMAN_SIZE_NORMAL
,
170 GRUB_HUMAN_SIZE_SHORT
,
171 GRUB_HUMAN_SIZE_SPEED
,
175 grub_get_human_size (grub_uint64_t size
, enum grub_human_size_type type
);
177 #endif /* ! GRUB_NORMAL_HEADER */