]> git.ozlabs.org Git - petitboot/blob - ui/ncurses/nc-widgets.h
configure: only test for msgfmt if NLS enabled
[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 void widget_textbox_set_validator_url(struct nc_widget_textbox *textbox);
46
47 void widget_subset_add_option(struct nc_widget_subset *subset, const char *text);
48 void widget_subset_make_active(struct nc_widget_subset *subset, int idx);
49
50 void widget_subset_on_change(struct nc_widget_subset *subset,
51                 void (*on_change)(void *arg, int value), void *arg);
52
53 void widget_select_add_option(struct nc_widget_select *select, int value,
54                 const char *text, bool selected);
55
56 void widget_select_on_change(struct nc_widget_select *select,
57                 void (*on_change)(void *arg, int value), void *arg);
58
59 char *widget_textbox_get_value(struct nc_widget_textbox *textbox);
60 bool widget_checkbox_get_value(struct nc_widget_checkbox *checkbox);
61 int widget_subset_get_order(void *ctx, unsigned int **order,
62                 struct nc_widget_subset *subset);
63 void widget_subset_show_inactive(struct nc_widget_subset *subset,
64                 struct nc_widget_select *select);
65 int widget_subset_n_inactive(struct nc_widget_subset *subset);
66 int widget_subset_height(struct nc_widget_subset *subset);
67 void widget_subset_drop_options(struct nc_widget_subset *subset);
68 void widget_subset_clear_active(struct nc_widget_subset *subset);
69 void widget_subset_callback(void *arg,
70                 struct nc_widget_subset *subset, int idx);
71 int widget_select_get_value(struct nc_widget_select *select);
72 int widget_select_height(struct nc_widget_select *select);
73 void widget_select_drop_options(struct nc_widget_select *select);
74
75 /* generic widget API */
76 struct nc_widget *widget_textbox_base(struct nc_widget_textbox *textbox);
77 struct nc_widget *widget_checkbox_base(struct nc_widget_checkbox *checkbox);
78 struct nc_widget *widget_subset_base(struct nc_widget_subset *subset);
79 struct nc_widget *widget_select_base(struct nc_widget_select *select);
80 struct nc_widget *widget_label_base(struct nc_widget_label *label);
81 struct nc_widget *widget_button_base(struct nc_widget_button *button);
82
83 void widget_move(struct nc_widget *widget, int y, int x);
84 void widget_set_visible(struct nc_widget *widget, bool visible);
85 int widget_height(struct nc_widget *widget);
86 int widget_width(struct nc_widget *widget);
87 int widget_y(struct nc_widget *widget);
88 int widget_x(struct nc_widget *widget);
89 int widget_focus_y(struct nc_widget *widget);
90
91 /* widgetset API */
92 typedef void (*widget_focus_cb)(struct nc_widget *widget, void *arg);
93 struct nc_widgetset *widgetset_create(void *ctx, WINDOW *main, WINDOW *sub);
94 void widgetset_set_widget_focus(struct nc_widgetset *set,
95                 widget_focus_cb cb, void *arg);
96 void widgetset_set_windows(struct nc_widgetset *widgetset,
97                 WINDOW *main, WINDOW *sub);
98 void widgetset_post(struct nc_widgetset *set);
99 void widgetset_unpost(struct nc_widgetset *set);
100 bool widgetset_process_key(struct nc_widgetset *set, int key);
101
102 #endif /* NC_WIDGETS_H */
103