Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/interface/interface_intern.h
| Show First 20 Lines • Show All 65 Lines • ▼ Show 20 Lines | typedef enum { | ||||
| /* standard set */ | /* standard set */ | ||||
| UI_WTYPE_LABEL, | UI_WTYPE_LABEL, | ||||
| UI_WTYPE_TOGGLE, | UI_WTYPE_TOGGLE, | ||||
| UI_WTYPE_CHECKBOX, | UI_WTYPE_CHECKBOX, | ||||
| UI_WTYPE_RADIO, | UI_WTYPE_RADIO, | ||||
| UI_WTYPE_NUMBER, | UI_WTYPE_NUMBER, | ||||
| UI_WTYPE_SLIDER, | UI_WTYPE_SLIDER, | ||||
| UI_WTYPE_EXEC, | UI_WTYPE_EXEC, | ||||
| UI_WTYPE_TAB, | |||||
| UI_WTYPE_TOOLTIP, | UI_WTYPE_TOOLTIP, | ||||
| /* strings */ | /* strings */ | ||||
| UI_WTYPE_NAME, | UI_WTYPE_NAME, | ||||
| UI_WTYPE_NAME_LINK, | UI_WTYPE_NAME_LINK, | ||||
| UI_WTYPE_POINTER_LINK, | UI_WTYPE_POINTER_LINK, | ||||
| UI_WTYPE_FILENAME, | UI_WTYPE_FILENAME, | ||||
| ▲ Show 20 Lines • Show All 572 Lines • ▼ Show 20 Lines | |||||
| void ui_draw_anti_roundbox(int mode, float minx, float miny, float maxx, float maxy, float rad, bool use_alpha); | void ui_draw_anti_roundbox(int mode, float minx, float miny, float maxx, float maxy, float rad, bool use_alpha); | ||||
| void ui_draw_menu_back(struct uiStyle *style, uiBlock *block, rcti *rect); | void ui_draw_menu_back(struct uiStyle *style, uiBlock *block, rcti *rect); | ||||
| void ui_draw_pie_center(uiBlock *block); | void ui_draw_pie_center(uiBlock *block); | ||||
| uiWidgetColors *ui_tooltip_get_theme(void); | uiWidgetColors *ui_tooltip_get_theme(void); | ||||
| void ui_draw_tooltip_background(uiStyle *UNUSED(style), uiBlock *block, rcti *rect); | void ui_draw_tooltip_background(uiStyle *UNUSED(style), uiBlock *block, rcti *rect); | ||||
| void ui_draw_search_back(struct uiStyle *style, uiBlock *block, rcti *rect); | void ui_draw_search_back(struct uiStyle *style, uiBlock *block, rcti *rect); | ||||
| bool ui_link_bezier_points(const rcti *rect, float coord_array[][2], int resol); | bool ui_link_bezier_points(const rcti *rect, float coord_array[][2], int resol); | ||||
| void ui_draw_link_bezier(const rcti *rect); | void ui_draw_link_bezier(const rcti *rect); | ||||
| void ui_draw_but_TAB_outline(rcti *rect, float rad, int roundboxtype, unsigned char highlight[3], | |||||
| unsigned char highlight_fade[3]); | |||||
| extern void ui_draw_but(const struct bContext *C, ARegion *ar, struct uiStyle *style, uiBut *but, rcti *rect); | extern void ui_draw_but(const struct bContext *C, ARegion *ar, struct uiStyle *style, uiBut *but, rcti *rect); | ||||
| /* theme color init */ | /* theme color init */ | ||||
| struct ThemeUI; | struct ThemeUI; | ||||
| void ui_widget_color_init(struct ThemeUI *tui); | void ui_widget_color_init(struct ThemeUI *tui); | ||||
| void ui_draw_menu_item(struct uiFontStyle *fstyle, rcti *rect, const char *name, int iconid, int state, bool use_sep); | void ui_draw_menu_item(struct uiFontStyle *fstyle, rcti *rect, const char *name, int iconid, int state, bool use_sep); | ||||
| void ui_draw_preview_item(struct uiFontStyle *fstyle, rcti *rect, const char *name, int iconid, int state); | void ui_draw_preview_item(struct uiFontStyle *fstyle, rcti *rect, const char *name, int iconid, int state); | ||||
| ▲ Show 20 Lines • Show All 47 Lines • Show Last 20 Lines | |||||