]> git.proxmox.com Git - grub2.git/blame - gfxmenu/gfxmenu.c
Merge mainline into bidi
[grub2.git] / gfxmenu / gfxmenu.c
CommitLineData
d920a32a
CB
1/* gfxmenu.c - Graphical menu interface controller. */
2/*
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2008 Free Software Foundation, Inc.
5 *
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.
10 *
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.
15 *
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/>.
18 */
19
20#include <grub/types.h>
21#include <grub/misc.h>
22#include <grub/mm.h>
23#include <grub/err.h>
24#include <grub/dl.h>
25#include <grub/command.h>
26#include <grub/video.h>
27#include <grub/gfxterm.h>
28#include <grub/bitmap.h>
29#include <grub/bitmap_scale.h>
30#include <grub/term.h>
31#include <grub/env.h>
32#include <grub/normal.h>
33#include <grub/gfxwidgets.h>
34#include <grub/menu.h>
35#include <grub/menu_viewer.h>
36#include <grub/gfxmenu_model.h>
37#include <grub/gfxmenu_view.h>
947fa16c 38#include <grub/time.h>
d920a32a 39
9b1209ba
VS
40grub_gfxmenu_view_t cached_view;
41
7a68c375 42static void
9b1209ba
VS
43grub_gfxmenu_viewer_fini (void *data __attribute__ ((unused)))
44{
d920a32a
CB
45}
46
4cc972be 47/* FIXME: Previously 't' changed to text menu is it necessary? */
7a68c375 48static grub_err_t
bee14068 49grub_gfxmenu_try (int entry, grub_menu_t menu, int nested)
d920a32a 50{
9b1209ba 51 grub_gfxmenu_view_t view = NULL;
4545f150 52 const char *theme_path;
bee14068 53 struct grub_menu_viewer *instance;
9b1209ba
VS
54 grub_err_t err;
55 struct grub_video_mode_info mode_info;
4545f150
VS
56
57 theme_path = grub_env_get ("theme");
58 if (! theme_path)
d3ee2d20 59 {
2ab45155 60 grub_error_push ();
d3ee2d20 61 grub_gfxterm_fullscreen ();
2ab45155 62 grub_error_pop ();
d3ee2d20
VS
63 return grub_error (GRUB_ERR_FILE_NOT_FOUND, "no theme specified");
64 }
d920a32a 65
bee14068
VS
66 instance = grub_zalloc (sizeof (*instance));
67 if (!instance)
d3ee2d20 68 {
2ab45155 69 grub_error_push ();
d3ee2d20 70 grub_gfxterm_fullscreen ();
2ab45155 71 grub_error_pop ();
d3ee2d20
VS
72 return grub_errno;
73 }
d920a32a 74
9b1209ba
VS
75 err = grub_video_get_info (&mode_info);
76 if (err)
77 {
2ab45155 78 grub_error_push ();
d3ee2d20 79 grub_gfxterm_fullscreen ();
2ab45155 80 grub_error_pop ();
d3ee2d20 81 return err;
9b1209ba 82 }
4545f150 83
9b1209ba 84 if (!cached_view || grub_strcmp (cached_view->theme_path, theme_path) != 0
7a68c375
VS
85 || cached_view->screen.width != mode_info.width
86 || cached_view->screen.height != mode_info.height)
9b1209ba
VS
87 {
88 grub_free (cached_view);
89 /* Create the view. */
90 cached_view = grub_gfxmenu_view_new (theme_path, mode_info.width,
91 mode_info.height);
92 }
93
94 if (! cached_view)
d920a32a 95 {
bee14068 96 grub_free (instance);
2ab45155 97 grub_error_push ();
d3ee2d20 98 grub_gfxterm_fullscreen ();
2ab45155 99 grub_error_pop ();
d920a32a
CB
100 return grub_errno;
101 }
102
9b1209ba
VS
103 view = cached_view;
104
105 view->double_repaint = (mode_info.mode_type
106 & GRUB_VIDEO_MODE_TYPE_DOUBLE_BUFFERED)
107 && !(mode_info.mode_type & GRUB_VIDEO_MODE_TYPE_UPDATING_SWAP);
108 view->selected = entry;
109 view->menu = menu;
110 view->nested = nested;
111 view->first_timeout = -1;
112
947fa16c 113 grub_gfxmenu_view_draw (view);
d920a32a 114
bee14068
VS
115 instance->data = view;
116 instance->set_chosen_entry = grub_gfxmenu_set_chosen_entry;
117 instance->fini = grub_gfxmenu_viewer_fini;
118 instance->print_timeout = grub_gfxmenu_print_timeout;
119 instance->clear_timeout = grub_gfxmenu_clear_timeout;
d920a32a 120
bee14068 121 grub_menu_register_viewer (instance);
d920a32a 122
bee14068 123 return GRUB_ERR_NONE;
d920a32a
CB
124}
125
d920a32a
CB
126GRUB_MOD_INIT (gfxmenu)
127{
d3ee2d20
VS
128 struct grub_term_output *term;
129
130 FOR_ACTIVE_TERM_OUTPUTS(term)
131 if (grub_gfxmenu_try_hook && grub_strcmp (term->name, "gfxterm") == 0)
132 {
133 grub_gfxterm_fullscreen ();
134 break;
135 }
136
bee14068 137 grub_gfxmenu_try_hook = grub_gfxmenu_try;
d920a32a
CB
138}
139
140GRUB_MOD_FINI (gfxmenu)
141{
9b1209ba 142 grub_gfxmenu_view_destroy (cached_view);
bee14068 143 grub_gfxmenu_try_hook = NULL;
d920a32a 144}