Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/UI_interface.h
| Show First 20 Lines • Show All 1,715 Lines • ▼ Show 20 Lines | |||||
| void UI_panel_category_add(struct ARegion *region, const char *name); | void UI_panel_category_add(struct ARegion *region, const char *name); | ||||
| struct PanelCategoryDyn *UI_panel_category_find(const struct ARegion *region, const char *idname); | struct PanelCategoryDyn *UI_panel_category_find(const struct ARegion *region, const char *idname); | ||||
| struct PanelCategoryStack *UI_panel_category_active_find(struct ARegion *region, | struct PanelCategoryStack *UI_panel_category_active_find(struct ARegion *region, | ||||
| const char *idname); | const char *idname); | ||||
| const char *UI_panel_category_active_get(struct ARegion *region, bool set_fallback); | const char *UI_panel_category_active_get(struct ARegion *region, bool set_fallback); | ||||
| void UI_panel_category_active_set(struct ARegion *region, const char *idname); | void UI_panel_category_active_set(struct ARegion *region, const char *idname); | ||||
| void UI_panel_category_active_set_default(struct ARegion *region, const char *idname); | void UI_panel_category_active_set_default(struct ARegion *region, const char *idname); | ||||
| void UI_panel_category_clear_all(struct ARegion *region); | void UI_panel_category_clear_all(struct ARegion *region); | ||||
| void UI_panel_category_draw_all(struct ARegion *region, const char *category_id_active); | void UI_panel_category_tabs_draw(struct ARegion *region, const char *category_id_active); | ||||
| /* Panel custom data. */ | /* Panel custom data. */ | ||||
| struct PointerRNA *UI_panel_custom_data_get(const struct Panel *panel); | struct PointerRNA *UI_panel_custom_data_get(const struct Panel *panel); | ||||
| struct PointerRNA *UI_region_panel_custom_data_under_cursor(const struct bContext *C, | struct PointerRNA *UI_region_panel_custom_data_under_cursor(const struct bContext *C, | ||||
| const struct wmEvent *event); | const struct wmEvent *event); | ||||
| void UI_panel_custom_data_set(struct Panel *panel, struct PointerRNA *custom_data); | void UI_panel_custom_data_set(struct Panel *panel, struct PointerRNA *custom_data); | ||||
| /* Polyinstantiated panels for representing a list of data. */ | /* Polyinstantiated panels for representing a list of data. */ | ||||
| ▲ Show 20 Lines • Show All 887 Lines • Show Last 20 Lines | |||||