Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/interface/interface_intern.h
| Show First 20 Lines • Show All 314 Lines • ▼ Show 20 Lines | struct uiBut { | ||||
| void *custom_data; | void *custom_data; | ||||
| char *editstr; | char *editstr; | ||||
| double *editval; | double *editval; | ||||
| float *editvec; | float *editvec; | ||||
| void *editcoba; | void *editcoba; | ||||
| void *editcumap; | void *editcumap; | ||||
| uiButPushedStateFunc pushed_state_func; | |||||
| void *pushed_state_arg; | |||||
| /* pointer back */ | /* pointer back */ | ||||
| uiBlock *block; | uiBlock *block; | ||||
| }; | }; | ||||
| typedef struct uiButTab { | typedef struct uiButTab { | ||||
| uiBut but; | uiBut but; | ||||
| struct MenuType *menu; | struct MenuType *menu; | ||||
| } uiButTab; | } uiButTab; | ||||
| ▲ Show 20 Lines • Show All 569 Lines • Show Last 20 Lines | |||||