foo
[instimg] / src / widgets.h
index 33cd490..caf4a4e 100644 (file)
@@ -37,6 +37,11 @@ struct wgt_widget *wgt_checkbox(struct wgt_window *win, const char *text, int on
 struct wgt_widget *wgt_combo(struct wgt_window *win, const char **items, int num_items,
                        int sel, int x, int y, int width, int height, wgt_callback modfunc);
 
+void wgt_checkbox_check(struct wgt_widget *w);
+void wgt_checkbox_uncheck(struct wgt_widget *w);
+int wgt_checkbox_checked(struct wgt_widget *w);
+
+int wgt_combo_setitems(struct wgt_widget *w, const char **items, int num_items);
 int wgt_combo_selected(struct wgt_widget *w);
 const char *wgt_get_combo_item(struct wgt_widget *w, int idx);