Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/interface/interface_intern.h
| Show First 20 Lines • Show All 345 Lines • ▼ Show 20 Lines | |||||
| /** Derived struct for #UI_BTYPE_PROGRESS_BAR. */ | /** Derived struct for #UI_BTYPE_PROGRESS_BAR. */ | ||||
| typedef struct uiButProgressbar { | typedef struct uiButProgressbar { | ||||
| uiBut but; | uiBut but; | ||||
| /* 0..1 range */ | /* 0..1 range */ | ||||
| float progress; | float progress; | ||||
| } uiButProgressbar; | } uiButProgressbar; | ||||
| /** Derived struct for #UI_BTYPE_DATASETROW. */ | |||||
| typedef struct uiButDatasetRow { | |||||
| uiBut but; | |||||
| uint8_t geometry_component_type; | |||||
| uint8_t attribute_domain; | |||||
| int indentation; | |||||
| } uiButDatasetRow; | |||||
| /** Derived struct for #UI_BTYPE_TREEROW. */ | /** Derived struct for #UI_BTYPE_TREEROW. */ | ||||
| typedef struct uiButTreeRow { | typedef struct uiButTreeRow { | ||||
| uiBut but; | uiBut but; | ||||
| uiTreeViewItemHandle *tree_item; | uiTreeViewItemHandle *tree_item; | ||||
| int indentation; | int indentation; | ||||
| } uiButTreeRow; | } uiButTreeRow; | ||||
| ▲ Show 20 Lines • Show All 934 Lines • Show Last 20 Lines | |||||