Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/UI_interface.h
| Show First 20 Lines • Show All 462 Lines • ▼ Show 20 Lines | |||||
| void UI_block_order_flip(uiBlock *block); | void UI_block_order_flip(uiBlock *block); | ||||
| void UI_block_flag_enable(uiBlock *block, int flag); | void UI_block_flag_enable(uiBlock *block, int flag); | ||||
| void UI_block_flag_disable(uiBlock *block, int flag); | void UI_block_flag_disable(uiBlock *block, int flag); | ||||
| int UI_but_return_value_get(uiBut *but); | int UI_but_return_value_get(uiBut *but); | ||||
| void UI_but_drag_set_id(uiBut *but, struct ID *id); | void UI_but_drag_set_id(uiBut *but, struct ID *id); | ||||
| void UI_but_drag_set_rna(uiBut *but, struct PointerRNA *ptr); | void UI_but_drag_set_rna(uiBut *but, struct PointerRNA *ptr); | ||||
| void UI_but_drag_set_path(uiBut *but, const char *path); | void UI_but_drag_set_path(uiBut *but, const char *path, const bool use_free); | ||||
| void UI_but_drag_set_name(uiBut *but, const char *name); | void UI_but_drag_set_name(uiBut *but, const char *name); | ||||
| void UI_but_drag_set_value(uiBut *but); | void UI_but_drag_set_value(uiBut *but); | ||||
| void UI_but_drag_set_image(uiBut *but, const char *path, int icon, struct ImBuf *ima, float scale); | void UI_but_drag_set_image( | ||||
| uiBut *but, const char *path, int icon, struct ImBuf *ima, float scale, const bool use_free); | |||||
campbellbarton: *picky*, would put `use_free` last | |||||
Not Done Inline Actionswell… it only applies to path, so… maybe renaming it 'use_path_free' then? mont29: well… it only applies to path, so… maybe renaming it 'use_path_free' then? | |||||
Done Inline Actionsthink in the context of the function its obvious that its only applying to the path. campbellbarton: think in the context of the function its obvious that its only applying to the path. | |||||
| bool UI_but_active_drop_name(struct bContext *C); | bool UI_but_active_drop_name(struct bContext *C); | ||||
| bool UI_but_active_drop_color(struct bContext *C); | bool UI_but_active_drop_color(struct bContext *C); | ||||
| void UI_but_flag_enable(uiBut *but, int flag); | void UI_but_flag_enable(uiBut *but, int flag); | ||||
| void UI_but_flag_disable(uiBut *but, int flag); | void UI_but_flag_disable(uiBut *but, int flag); | ||||
| void UI_but_drawflag_enable(uiBut *but, int flag); | void UI_but_drawflag_enable(uiBut *but, int flag); | ||||
| void UI_but_drawflag_disable(uiBut *but, int flag); | void UI_but_drawflag_disable(uiBut *but, int flag); | ||||
| ▲ Show 20 Lines • Show All 565 Lines • Show Last 20 Lines | |||||
*picky*, would put use_free last