156 |
156 |
157 void ui_listview_add_dnd(UiListView *listview, UiListArgs *args); |
157 void ui_listview_add_dnd(UiListView *listview, UiListArgs *args); |
158 void ui_listview_enable_drop(UiListView *listview, UiListArgs *args); |
158 void ui_listview_enable_drop(UiListView *listview, UiListArgs *args); |
159 |
159 |
160 UIWIDGET ui_combobox_var(UiObject *obj, UiVar *var, ui_getvaluefunc getvalue, ui_callback f, void *udata); |
160 UIWIDGET ui_combobox_var(UiObject *obj, UiVar *var, ui_getvaluefunc getvalue, ui_callback f, void *udata); |
161 GtkWidget* ui_create_combobox(UiObject *obj, UiModel *model, UiVar *var, ui_callback f, void *udata); |
161 GtkWidget* ui_create_combobox(UiObject *obj, UiModel *model, UiVar *var, char **elm, size_t nelm, ui_callback f, void *udata); |
162 void ui_combobox_change_event(GtkComboBox *widget, UiEventData *e); |
162 void ui_combobox_change_event(GtkComboBox *widget, UiEventData *e); |
163 void ui_combobox_modelupdate(UiList *list, int i); |
163 void ui_combobox_modelupdate(UiList *list, int i); |
164 UiListSelection ui_combobox_getselection(UiList *list); |
164 UiListSelection ui_combobox_getselection(UiList *list); |
165 void ui_combobox_setselection(UiList *list, UiListSelection selection); |
165 void ui_combobox_setselection(UiList *list, UiListSelection selection); |
166 |
166 |