| 75 UIEXPORT int ui_event_get_set(UiEvent *event); |
75 UIEXPORT int ui_event_get_set(UiEvent *event); |
| 76 |
76 |
| 77 UIEXPORT UiListSelection* ui_list_get_selection_allocated(UiList *list); |
77 UIEXPORT UiListSelection* ui_list_get_selection_allocated(UiList *list); |
| 78 UIEXPORT int ui_list_selection_get_count(UiListSelection *sel); |
78 UIEXPORT int ui_list_selection_get_count(UiListSelection *sel); |
| 79 UIEXPORT int* ui_list_selection_get_rows(UiListSelection *sel); |
79 UIEXPORT int* ui_list_selection_get_rows(UiListSelection *sel); |
| |
80 UIEXPORT void ui_list_set_selected_indices(UiList *list, int *indices, int num); |
| 80 UIEXPORT void ui_list_selection_free(UiListSelection *sel); |
81 UIEXPORT void ui_list_selection_free(UiListSelection *sel); |
| 81 |
82 |
| 82 UIEXPORT int ui_filelist_count(UiFileList *flist); |
83 UIEXPORT int ui_filelist_count(UiFileList *flist); |
| 83 UIEXPORT char* ui_filelist_get(UiFileList *flist, int index); |
84 UIEXPORT char* ui_filelist_get(UiFileList *flist, int index); |
| 84 |
85 |