Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/UI_interface.h
| Show First 20 Lines • Show All 2,038 Lines • ▼ Show 20 Lines | uiLayout *UI_block_layout(uiBlock *block, | ||||
| int x, | int x, | ||||
| int y, | int y, | ||||
| int size, | int size, | ||||
| int em, | int em, | ||||
| int padding, | int padding, | ||||
| const struct uiStyle *style); | const struct uiStyle *style); | ||||
| void UI_block_layout_set_current(uiBlock *block, uiLayout *layout); | void UI_block_layout_set_current(uiBlock *block, uiLayout *layout); | ||||
| void UI_block_layout_resolve(uiBlock *block, int *r_x, int *r_y); | void UI_block_layout_resolve(uiBlock *block, int *r_x, int *r_y); | ||||
| bool UI_block_layout_needs_resolving(const uiBlock *block); | |||||
| /** | /** | ||||
| * Used for property search when the layout process needs to be cancelled in order to avoid | * Used for property search when the layout process needs to be cancelled in order to avoid | ||||
| * computing the locations for buttons, but the layout items created while adding the buttons | * computing the locations for buttons, but the layout items created while adding the buttons | ||||
| * must still be freed. | * must still be freed. | ||||
| */ | */ | ||||
| void UI_block_layout_free(uiBlock *block); | void UI_block_layout_free(uiBlock *block); | ||||
| /** | /** | ||||
| ▲ Show 20 Lines • Show All 1,144 Lines • Show Last 20 Lines | |||||