]> git.ozlabs.org Git - petitboot/blob - ui/ncurses/nc-boot-editor.h
6b72f253bccfa82ceba150f07e9938e6a7e27db2
[petitboot] / ui / ncurses / nc-boot-editor.h
1 /*
2  *  Copyright (C) 2009 Sony Computer Entertainment Inc.
3  *  Copyright 2009 Sony Corp.
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; version 2 of the License.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #if !defined(_PB_NC_KED_H)
20 #define _PB_NC_KED_H
21
22 #include <linux/input.h> /* This must be included before ncurses.h */
23 #if defined HAVE_NCURSESW_FORM_H
24 #  include <ncursesw/form.h>
25 #elif defined HAVE_NCURSES_FORM_H
26 #  include <ncurses/form.h>
27 #elif defined HAVE_FORM_H
28 #  include <form.h>
29 #else
30 #  error "Curses form.h not found."
31 #endif
32
33 #include "types/types.h"
34 #include "ui/common/ui-system.h"
35 #include "nc-scr.h"
36
37 enum boot_editor_attr_cursor {
38         boot_editor_attr_cursor_ins = A_NORMAL,
39         boot_editor_attr_cursor_ovl = A_NORMAL | A_UNDERLINE,
40 };
41
42 /**
43  * enum boot_editor_result - Result code for boot_editor:on_exit().
44  * @boot_editor_cancel: The user canceled the operation.
45  * @boot_editor_update: The args were updated.
46  */
47
48 enum boot_editor_result {
49         boot_editor_cancel,
50         boot_editor_update,
51 };
52
53 /**
54  * struct boot_editor - kexec args editor.
55  */
56
57 struct boot_editor {
58         struct nc_scr   scr;
59         void            *data;
60         struct pmenu    *original_pmenu;
61         void            (*on_exit)(struct boot_editor *boot_editor,
62                                         enum boot_editor_result result,
63                                         struct pb_boot_data *bd);
64         enum boot_editor_attr_cursor attr_cursor;
65
66         struct nc_widgetset     *widgetset;
67         struct {
68                 struct nc_widget_label          *image_l;
69                 struct nc_widget_textbox        *image_f;
70                 struct nc_widget_label          *initrd_l;
71                 struct nc_widget_textbox        *initrd_f;
72                 struct nc_widget_label          *dtb_l;
73                 struct nc_widget_textbox        *dtb_f;
74                 struct nc_widget_label          *args_l;
75                 struct nc_widget_textbox        *args_f;
76                 struct nc_widget_button         *ok_b;
77                 struct nc_widget_button         *cancel_b;
78         } widgets;
79 };
80
81 struct boot_editor *boot_editor_init(struct pmenu *menu,
82                 const struct pb_boot_data *bd,
83                 void (*on_exit)(struct boot_editor *,
84                                 enum boot_editor_result,
85                                 struct pb_boot_data *));
86
87 #endif