Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/interface/interface_intern.h
| Show First 20 Lines • Show All 310 Lines • ▼ Show 20 Lines | typedef struct uiButSearch { | ||||
| uiButSearchContextMenuFn item_context_menu_fn; | uiButSearchContextMenuFn item_context_menu_fn; | ||||
| uiButSearchTooltipFn item_tooltip_fn; | uiButSearchTooltipFn item_tooltip_fn; | ||||
| const char *item_sep_string; | const char *item_sep_string; | ||||
| struct PointerRNA rnasearchpoin; | struct PointerRNA rnasearchpoin; | ||||
| struct PropertyRNA *rnasearchprop; | struct PropertyRNA *rnasearchprop; | ||||
| /** | |||||
| * The search box only provides suggestions, it does not force | |||||
| * the string to match one of the search items when applying. | |||||
| */ | |||||
| bool all_strings_valid; | |||||
| } uiButSearch; | } uiButSearch; | ||||
| /** Derived struct for #UI_BTYPE_DECORATOR */ | /** Derived struct for #UI_BTYPE_DECORATOR */ | ||||
| typedef struct uiButDecorator { | typedef struct uiButDecorator { | ||||
| uiBut but; | uiBut but; | ||||
| struct PointerRNA rnapoin; | struct PointerRNA rnapoin; | ||||
| struct PropertyRNA *rnaprop; | struct PropertyRNA *rnaprop; | ||||
| ▲ Show 20 Lines • Show All 876 Lines • Show Last 20 Lines | |||||