Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/UI_interface.h
| Show First 20 Lines • Show All 496 Lines • ▼ Show 20 Lines | |||||
| /* Search types. */ | /* Search types. */ | ||||
| typedef struct ARegion *(*uiButSearchCreateFn)(struct bContext *C, | typedef struct ARegion *(*uiButSearchCreateFn)(struct bContext *C, | ||||
| struct ARegion *butregion, | struct ARegion *butregion, | ||||
| struct uiButSearch *search_but); | struct uiButSearch *search_but); | ||||
| typedef void (*uiButSearchUpdateFn)(const struct bContext *C, | typedef void (*uiButSearchUpdateFn)(const struct bContext *C, | ||||
| void *arg, | void *arg, | ||||
| const char *str, | const char *str, | ||||
| uiSearchItems *items); | uiSearchItems *items, | ||||
| const bool is_first); | |||||
| typedef void (*uiButSearchArgFreeFn)(void *arg); | typedef void (*uiButSearchArgFreeFn)(void *arg); | ||||
| typedef bool (*uiButSearchContextMenuFn)(struct bContext *C, | typedef bool (*uiButSearchContextMenuFn)(struct bContext *C, | ||||
| void *arg, | void *arg, | ||||
| void *active, | void *active, | ||||
| const struct wmEvent *event); | const struct wmEvent *event); | ||||
| typedef struct ARegion *(*uiButSearchTooltipFn)(struct bContext *C, | typedef struct ARegion *(*uiButSearchTooltipFn)(struct bContext *C, | ||||
| struct ARegion *region, | struct ARegion *region, | ||||
| const struct rcti *item_rect, | const struct rcti *item_rect, | ||||
| ▲ Show 20 Lines • Show All 2,110 Lines • Show Last 20 Lines | |||||