Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/UI_interface.h
| Show First 20 Lines • Show All 1,596 Lines • ▼ Show 20 Lines | void UI_but_func_search_set(uiBut *but, | ||||
| uiButSearchUpdateFn search_update_fn, | uiButSearchUpdateFn search_update_fn, | ||||
| void *arg, | void *arg, | ||||
| uiButSearchArgFreeFn search_arg_free_fn, | uiButSearchArgFreeFn search_arg_free_fn, | ||||
| uiButHandleFunc search_exec_fn, | uiButHandleFunc search_exec_fn, | ||||
| void *active); | void *active); | ||||
| void UI_but_func_search_set_context_menu(uiBut *but, uiButSearchContextMenuFn context_menu_fn); | void UI_but_func_search_set_context_menu(uiBut *but, uiButSearchContextMenuFn context_menu_fn); | ||||
| void UI_but_func_search_set_tooltip(uiBut *but, uiButSearchTooltipFn tooltip_fn); | void UI_but_func_search_set_tooltip(uiBut *but, uiButSearchTooltipFn tooltip_fn); | ||||
| void UI_but_func_search_set_sep_string(uiBut *but, const char *search_sep_string); | void UI_but_func_search_set_sep_string(uiBut *but, const char *search_sep_string); | ||||
| void UI_but_func_search_set_results_are_suggestions(uiBut *but, const bool value); | |||||
| /* height in pixels, it's using hardcoded values still */ | /* height in pixels, it's using hardcoded values still */ | ||||
| int UI_searchbox_size_y(void); | int UI_searchbox_size_y(void); | ||||
| int UI_searchbox_size_x(void); | int UI_searchbox_size_x(void); | ||||
| /* check if a string is in an existing search box */ | /* check if a string is in an existing search box */ | ||||
| int UI_search_items_find_index(uiSearchItems *items, const char *name); | int UI_search_items_find_index(uiSearchItems *items, const char *name); | ||||
| void UI_but_node_link_set(uiBut *but, struct bNodeSocket *socket, const float draw_color[4]); | void UI_but_node_link_set(uiBut *but, struct bNodeSocket *socket, const float draw_color[4]); | ||||
| ▲ Show 20 Lines • Show All 1,010 Lines • Show Last 20 Lines | |||||