| 47 UIEXPORT void ui_mainthread_app_unref(); |
47 UIEXPORT void ui_mainthread_app_unref(); |
| 48 |
48 |
| 49 UIEXPORT void* ui_list_get_data(UiList *list); |
49 UIEXPORT void* ui_list_get_data(UiList *list); |
| 50 UIEXPORT void* ui_list_get_iter(UiList *list); |
50 UIEXPORT void* ui_list_get_iter(UiList *list); |
| 51 UIEXPORT void ui_list_set_iter(UiList *list, void *iter); |
51 UIEXPORT void ui_list_set_iter(UiList *list, void *iter); |
| |
52 UIEXPORT void ui_list_set_save_selection(UiList *list, UiBool value); |
| |
53 UIEXPORT UiBool ui_list_get_save_selection(UiList *list); |
| 52 |
54 |
| 53 UIEXPORT UiSubList* ui_sublist_new(void); |
55 UIEXPORT UiSubList* ui_sublist_new(void); |
| 54 UIEXPORT void ui_sublist_set_value(UiSubList *sublist, UiList *value); |
56 UIEXPORT void ui_sublist_set_value(UiSubList *sublist, UiList *value); |
| 55 UIEXPORT void ui_sublist_set_varname(UiSubList *sublist, const char *varname); |
57 UIEXPORT void ui_sublist_set_varname(UiSubList *sublist, const char *varname); |
| 56 UIEXPORT void ui_sublist_set_header(UiSubList *sublist, const char *header); |
58 UIEXPORT void ui_sublist_set_header(UiSubList *sublist, const char *header); |
| 80 UIEXPORT void* ui_event_get_eventdata(UiEvent *event); |
82 UIEXPORT void* ui_event_get_eventdata(UiEvent *event); |
| 81 UIEXPORT int ui_event_get_eventdatatype(UiEvent *event); |
83 UIEXPORT int ui_event_get_eventdatatype(UiEvent *event); |
| 82 UIEXPORT int ui_event_get_int(UiEvent *event); |
84 UIEXPORT int ui_event_get_int(UiEvent *event); |
| 83 UIEXPORT int ui_event_get_set(UiEvent *event); |
85 UIEXPORT int ui_event_get_set(UiEvent *event); |
| 84 |
86 |
| 85 UIEXPORT UiListSelection* ui_list_get_selection_allocated(UiList *list); |
|
| 86 UIEXPORT int ui_list_selection_get_count(UiListSelection *sel); |
87 UIEXPORT int ui_list_selection_get_count(UiListSelection *sel); |
| 87 UIEXPORT int* ui_list_selection_get_rows(UiListSelection *sel); |
88 UIEXPORT int* ui_list_selection_get_rows(UiListSelection *sel); |
| 88 UIEXPORT void ui_list_set_selected_indices(UiList *list, int *indices, int num); |
89 UIEXPORT void ui_list_set_selected_indices(UiList *list, int *indices, int num); |
| 89 UIEXPORT void ui_list_selection_free(UiListSelection *sel); |
|
| 90 |
90 |
| 91 UIEXPORT int ui_text_change_event_get_type(UiTextChangeEventData *event); |
91 UIEXPORT int ui_text_change_event_get_type(UiTextChangeEventData *event); |
| 92 UIEXPORT int ui_text_change_event_get_begin(UiTextChangeEventData *event); |
92 UIEXPORT int ui_text_change_event_get_begin(UiTextChangeEventData *event); |
| 93 UIEXPORT int ui_text_change_event_get_end(UiTextChangeEventData *event); |
93 UIEXPORT int ui_text_change_event_get_end(UiTextChangeEventData *event); |
| 94 UIEXPORT const char* ui_text_change_event_get_text(UiTextChangeEventData *event); |
94 UIEXPORT const char* ui_text_change_event_get_text(UiTextChangeEventData *event); |