]> git.ozlabs.org Git - petitboot/blob - ui/ncurses/nc-boot-editor.h
discover: populate udev device types
[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_field {
38         boot_editor_attr_field_normal = A_NORMAL,
39         boot_editor_attr_field_selected = A_REVERSE,
40 };
41
42 enum boot_editor_attr_cursor {
43         boot_editor_attr_cursor_ins = A_NORMAL,
44         boot_editor_attr_cursor_ovl = A_NORMAL | A_UNDERLINE,
45 };
46
47 /**
48  * enum boot_editor_result - Result code for boot_editor:on_exit().
49  * @boot_editor_cancel: The user canceled the operation.
50  * @boot_editor_update: The args were updated.
51  */
52
53 enum boot_editor_result {
54         boot_editor_cancel,
55         boot_editor_update,
56 };
57
58 /**
59  * struct boot_editor - kexec args editor.
60  */
61
62 struct boot_editor {
63         struct nc_scr scr;
64         FORM *ncf;
65         FIELD **fields;
66         enum boot_editor_attr_cursor attr_cursor;
67         void (*on_exit)(struct boot_editor *boot_editor,
68                         enum boot_editor_result result,
69                         struct pb_boot_data *bd);
70 };
71
72 struct boot_editor *boot_editor_init(void *ui_ctx,
73                 const struct pb_boot_data *bd,
74                 void (*on_exit)(struct boot_editor *,
75                                 enum boot_editor_result,
76                                 struct pb_boot_data *));
77
78 #endif