Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_userdef_types.h
| Show First 20 Lines • Show All 177 Lines • ▼ Show 20 Lines | typedef struct ThemeUI { | ||||
| /* Gizmo Colors. */ | /* Gizmo Colors. */ | ||||
| unsigned char gizmo_hi[4]; | unsigned char gizmo_hi[4]; | ||||
| unsigned char gizmo_primary[4]; | unsigned char gizmo_primary[4]; | ||||
| unsigned char gizmo_secondary[4]; | unsigned char gizmo_secondary[4]; | ||||
| unsigned char gizmo_a[4]; | unsigned char gizmo_a[4]; | ||||
| unsigned char gizmo_b[4]; | unsigned char gizmo_b[4]; | ||||
| /* Paint Cursor Color. */ | |||||
| unsigned char paint_cursor[4]; | |||||
| char _pad2[4]; | |||||
| /* Icon Colors. */ | /* Icon Colors. */ | ||||
| /** Scene items. */ | /** Scene items. */ | ||||
| unsigned char icon_scene[4]; | unsigned char icon_scene[4]; | ||||
| /** Collection items. */ | /** Collection items. */ | ||||
| unsigned char icon_collection[4]; | unsigned char icon_collection[4]; | ||||
| /** Object items. */ | /** Object items. */ | ||||
| unsigned char icon_object[4]; | unsigned char icon_object[4]; | ||||
| /** Object data items. */ | /** Object data items. */ | ||||
| unsigned char icon_object_data[4]; | unsigned char icon_object_data[4]; | ||||
| /** Modifier and constraint items. */ | /** Modifier and constraint items. */ | ||||
| unsigned char icon_modifier[4]; | unsigned char icon_modifier[4]; | ||||
| /** Shading related items. */ | /** Shading related items. */ | ||||
| unsigned char icon_shading[4]; | unsigned char icon_shading[4]; | ||||
| /** File folders. */ | /** File folders. */ | ||||
| unsigned char icon_folder[4]; | unsigned char icon_folder[4]; | ||||
| char _pad2[4]; | char _pad3[4]; | ||||
| /** Intensity of the border icons. >0 will render an border around themed | /** Intensity of the border icons. >0 will render an border around themed | ||||
| * icons. */ | * icons. */ | ||||
| float icon_border_intensity; | float icon_border_intensity; | ||||
| } ThemeUI; | } ThemeUI; | ||||
| /* try to put them all in one, if needed a special struct can be created as well | /* try to put them all in one, if needed a special struct can be created as well | ||||
| * for example later on, when we introduce wire colors for ob types or so... | * for example later on, when we introduce wire colors for ob types or so... | ||||
| */ | */ | ||||
| ▲ Show 20 Lines • Show All 1,000 Lines • Show Last 20 Lines | |||||