Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/UI_interface.h
| Show First 20 Lines • Show All 1,577 Lines • ▼ Show 20 Lines | void UI_but_func_search_set(uiBut *but, | ||||
| uiButHandleFunc bfunc, | uiButHandleFunc bfunc, | ||||
| void *active); | void *active); | ||||
| /* 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_block_func_handle_set(uiBlock *block, uiBlockHandleFunc func, void *arg); | void UI_block_func_handle_set(uiBlock *block, uiBlockHandleFunc func, void *arg); | ||||
| void UI_block_func_butmenu_set(uiBlock *block, uiMenuHandleFunc func, void *arg); | void UI_block_func_butmenu_set(uiBlock *block, uiMenuHandleFunc func, void *arg); | ||||
| void UI_block_func_set(uiBlock *block, uiButHandleFunc func, void *arg1, void *arg2); | void UI_block_func_set(uiBlock *block, uiButHandleFunc func, void *arg1, void *arg2); | ||||
| void UI_block_funcN_set(uiBlock *block, uiButHandleNFunc funcN, void *argN, void *arg2); | void UI_block_funcN_set(uiBlock *block, uiButHandleNFunc funcN, void *argN, void *arg2); | ||||
| void UI_but_func_rename_set(uiBut *but, uiButHandleRenameFunc func, void *arg1); | void UI_but_func_rename_set(uiBut *but, uiButHandleRenameFunc func, void *arg1); | ||||
| void UI_but_func_set(uiBut *but, uiButHandleFunc func, void *arg1, void *arg2); | void UI_but_func_set(uiBut *but, uiButHandleFunc func, void *arg1, void *arg2); | ||||
| void UI_but_funcN_set(uiBut *but, uiButHandleNFunc funcN, void *argN, void *arg2); | void UI_but_funcN_set(uiBut *but, uiButHandleNFunc funcN, void *argN, void *arg2); | ||||
| ▲ Show 20 Lines • Show All 487 Lines • ▼ Show 20 Lines | void uiTemplateList(uiLayout *layout, | ||||
| const char *item_dyntip_propname, | const char *item_dyntip_propname, | ||||
| int rows, | int rows, | ||||
| int maxrows, | int maxrows, | ||||
| int layout_type, | int layout_type, | ||||
| int columns, | int columns, | ||||
| bool sort_reverse, | bool sort_reverse, | ||||
| bool sort_lock); | bool sort_lock); | ||||
| void uiTemplateNodeLink(uiLayout *layout, | void uiTemplateNodeLink(uiLayout *layout, | ||||
| struct bContext *C, | |||||
| struct bNodeTree *ntree, | struct bNodeTree *ntree, | ||||
| struct bNode *node, | struct bNode *node, | ||||
| struct bNodeSocket *input); | struct bNodeSocket *input); | ||||
| void uiTemplateNodeView(uiLayout *layout, | void uiTemplateNodeView(uiLayout *layout, | ||||
| struct bContext *C, | struct bContext *C, | ||||
| struct bNodeTree *ntree, | struct bNodeTree *ntree, | ||||
| struct bNode *node, | struct bNode *node, | ||||
| struct bNodeSocket *input); | struct bNodeSocket *input); | ||||
| ▲ Show 20 Lines • Show All 414 Lines • Show Last 20 Lines | |||||