]> git.ozlabs.org Git - petitboot/blob - ui/ncurses/nc-widgets.h
discover/pb-discover: #include <locale.h> for musl libc
[petitboot] / ui / ncurses / nc-widgets.h
1 /*
2  *  Copyright (C) 2013 IBM Corporation
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; version 2 of the License.
7  *
8  *  This program is distributed in the hope that it will be useful,
9  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  *  GNU General Public License for more details.
12  *
13  *  You should have received a copy of the GNU General Public License
14  *  along with this program; if not, write to the Free Software
15  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16  */
17
18 #ifndef NC_WIDGETS_H
19
20 struct nc_widgetset;
21 struct nc_widget_label;
22 struct nc_widget_checkbox;
23 struct nc_widget_textbox;
24 struct nc_widget_button;
25
26 struct nc_widget_label *widget_new_label(struct nc_widgetset *set,
27                 int y, int x, char *str);
28 struct nc_widget_checkbox *widget_new_checkbox(struct nc_widgetset *set,
29                 int y, int x, bool checked);
30 struct nc_widget_textbox *widget_new_textbox(struct nc_widgetset *set,
31                 int y, int x, int len, char *str);
32 struct nc_widget_subset *widget_new_subset(struct nc_widgetset *set,
33                 int y, int x, int len, void *screen_cb);
34 struct nc_widget_select *widget_new_select(struct nc_widgetset *set,
35                 int y, int x, int len);
36 struct nc_widget_button *widget_new_button(struct nc_widgetset *set,
37                 int y, int x, int size, const char *str,
38                 void (*click)(void *), void *arg);
39
40 void widget_textbox_set_fixed_size(struct nc_widget_textbox *textbox);
41 void widget_textbox_set_validator_integer(struct nc_widget_textbox *textbox,
42                 long min, long max);
43 void widget_textbox_set_validator_ipv4(struct nc_widget_textbox *textbox);
44 void widget_textbox_set_validator_ipv4_multi(struct nc_widget_textbox *textbox);
45
46 void widget_subset_add_option(struct nc_widget_subset *subset, const char *text);
47 void widget_subset_make_active(struct nc_widget_subset *subset, int idx);
48
49 void widget_subset_on_change(struct nc_widget_subset *subset,
50                 void (*on_change)(void *arg, int value), void *arg);
51
52 void widget_select_add_option(struct nc_widget_select *select, int value,
53                 const char *text, bool selected);
54
55 void widget_select_on_change(struct nc_widget_select *select,
56                 void (*on_change)(void *arg, int value), void *arg);
57
58 char *widget_textbox_get_value(struct nc_widget_textbox *textbox);
59 bool widget_checkbox_get_value(struct nc_widget_checkbox *checkbox);
60 int widget_subset_get_order(void *ctx, unsigned int **order,
61                 struct nc_widget_subset *subset);
62 void widget_subset_show_inactive(struct nc_widget_subset *subset,
63                 struct nc_widget_select *select);
64 int widget_subset_n_inactive(struct nc_widget_subset *subset);
65 int widget_subset_height(struct nc_widget_subset *subset);
66 void widget_subset_drop_options(struct nc_widget_subset *subset);
67 void widget_subset_clear_active(struct nc_widget_subset *subset);
68 void widget_subset_callback(void *arg,
69                 struct nc_widget_subset *subset, int idx);
70 int widget_select_get_value(struct nc_widget_select *select);
71 int widget_select_height(struct nc_widget_select *select);
72 void widget_select_drop_options(struct nc_widget_select *select);
73
74 /* generic widget API */
75 struct nc_widget *widget_textbox_base(struct nc_widget_textbox *textbox);
76 struct nc_widget *widget_checkbox_base(struct nc_widget_checkbox *checkbox);
77 struct nc_widget *widget_subset_base(struct nc_widget_subset *subset);
78 struct nc_widget *widget_select_base(struct nc_widget_select *select);
79 struct nc_widget *widget_label_base(struct nc_widget_label *label);
80 struct nc_widget *widget_button_base(struct nc_widget_button *button);
81
82 void widget_move(struct nc_widget *widget, int y, int x);
83 void widget_set_visible(struct nc_widget *widget, bool visible);
84 int widget_height(struct nc_widget *widget);
85 int widget_width(struct nc_widget *widget);
86 int widget_y(struct nc_widget *widget);
87 int widget_x(struct nc_widget *widget);
88 int widget_focus_y(struct nc_widget *widget);
89
90 /* widgetset API */
91 typedef void (*widget_focus_cb)(struct nc_widget *widget, void *arg);
92 struct nc_widgetset *widgetset_create(void *ctx, WINDOW *main, WINDOW *sub);
93 void widgetset_set_widget_focus(struct nc_widgetset *set,
94                 widget_focus_cb cb, void *arg);
95 void widgetset_set_windows(struct nc_widgetset *widgetset,
96                 WINDOW *main, WINDOW *sub);
97 void widgetset_post(struct nc_widgetset *set);
98 void widgetset_unpost(struct nc_widgetset *set);
99 bool widgetset_process_key(struct nc_widgetset *set, int key);
100
101 #endif /* NC_WIDGETS_H */
102