Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_userdef_types.h
| Show First 20 Lines • Show All 148 Lines • ▼ Show 20 Lines | typedef struct uiPanelColors { | ||||
| int pad; | int pad; | ||||
| } uiPanelColors; | } uiPanelColors; | ||||
| typedef struct uiGradientColors { | typedef struct uiGradientColors { | ||||
| char gradient[4]; | char gradient[4]; | ||||
| char high_gradient[4]; | char high_gradient[4]; | ||||
| int show_grad; | int show_grad; | ||||
| int pad2; | int pad2; | ||||
campbellbarton: try avoid random whitespace, I meant to remove but slipped throuth :/ | |||||
| } uiGradientColors; | } uiGradientColors; | ||||
| typedef struct ThemeUI { | typedef struct ThemeUI { | ||||
| /* Interface Elements (buttons, menus, icons) */ | /* Interface Elements (buttons, menus, icons) */ | ||||
| uiWidgetColors wcol_regular, wcol_tool, wcol_text; | uiWidgetColors wcol_regular, wcol_tool, wcol_text; | ||||
| uiWidgetColors wcol_radio, wcol_option, wcol_toggle; | uiWidgetColors wcol_radio, wcol_option, wcol_toggle; | ||||
| uiWidgetColors wcol_num, wcol_numslider; | uiWidgetColors wcol_num, wcol_numslider; | ||||
| uiWidgetColors wcol_menu, wcol_pulldown, wcol_menu_back, wcol_menu_item, wcol_tooltip; | uiWidgetColors wcol_menu, wcol_pulldown, wcol_menu_back, wcol_menu_item, wcol_tooltip; | ||||
| Show All 27 Lines | typedef struct ThemeSpace { | ||||
| char text_hi[4]; | char text_hi[4]; | ||||
| /* header colors */ | /* header colors */ | ||||
| char header[4]; /* region background */ | char header[4]; /* region background */ | ||||
| char header_title[4]; /* unused */ | char header_title[4]; /* unused */ | ||||
| char header_text[4]; | char header_text[4]; | ||||
| char header_text_hi[4]; | char header_text_hi[4]; | ||||
| /* region tabs */ | |||||
| char tab_active[4]; | |||||
| char tab_inactive[4]; | |||||
| char tab_back[4]; | |||||
| char tab_outline[4]; | |||||
| /* button/tool regions */ | /* button/tool regions */ | ||||
| char button[4]; /* region background */ | char button[4]; /* region background */ | ||||
| char button_title[4]; /* panel title */ | char button_title[4]; /* panel title */ | ||||
| char button_text[4]; | char button_text[4]; | ||||
| char button_text_hi[4]; | char button_text_hi[4]; | ||||
| /* listview regions */ | /* listview regions */ | ||||
| char list[4]; /* region background */ | char list[4]; /* region background */ | ||||
| ▲ Show 20 Lines • Show All 620 Lines • Show Last 20 Lines | |||||
try avoid random whitespace, I meant to remove but slipped throuth :/