Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/UI_interface.h
| Show First 20 Lines • Show All 1,760 Lines • ▼ Show 20 Lines | struct Panel *UI_panel_begin(struct ARegion *region, | ||||
| uiBlock *block, | uiBlock *block, | ||||
| struct PanelType *pt, | struct PanelType *pt, | ||||
| struct Panel *panel, | struct Panel *panel, | ||||
| bool *r_open); | bool *r_open); | ||||
| void UI_panel_header_buttons_begin(struct Panel *panel); | void UI_panel_header_buttons_begin(struct Panel *panel); | ||||
| void UI_panel_header_buttons_end(struct Panel *panel); | void UI_panel_header_buttons_end(struct Panel *panel); | ||||
| void UI_panel_end(struct Panel *panel, int width, int height); | void UI_panel_end(struct Panel *panel, int width, int height); | ||||
| void UI_panel_context_pointer_set(struct Panel *panel, const char *name, struct PointerRNA *ptr); | |||||
| bool UI_panel_is_closed(const struct Panel *panel); | bool UI_panel_is_closed(const struct Panel *panel); | ||||
| bool UI_panel_is_active(const struct Panel *panel); | bool UI_panel_is_active(const struct Panel *panel); | ||||
| void UI_panel_label_offset(const struct uiBlock *block, int *r_x, int *r_y); | void UI_panel_label_offset(const struct uiBlock *block, int *r_x, int *r_y); | ||||
| int UI_panel_size_y(const struct Panel *panel); | int UI_panel_size_y(const struct Panel *panel); | ||||
| bool UI_panel_is_dragging(const struct Panel *panel); | bool UI_panel_is_dragging(const struct Panel *panel); | ||||
| bool UI_panel_matches_search_filter(const struct Panel *panel); | bool UI_panel_matches_search_filter(const struct Panel *panel); | ||||
| bool UI_panel_can_be_pinned(const struct Panel *panel); | bool UI_panel_can_be_pinned(const struct Panel *panel); | ||||
| ▲ Show 20 Lines • Show All 1,025 Lines • Show Last 20 Lines | |||||