Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/interface/interface_intern.h
| Show First 20 Lines • Show All 473 Lines • ▼ Show 20 Lines | |||||
| void ui_popup_block_scrolltest(struct uiBlock *block); | void ui_popup_block_scrolltest(struct uiBlock *block); | ||||
| /* searchbox for string button */ | /* searchbox for string button */ | ||||
| ARegion *ui_searchbox_create(struct bContext *C, struct ARegion *butregion, uiBut *but); | ARegion *ui_searchbox_create(struct bContext *C, struct ARegion *butregion, uiBut *but); | ||||
| bool ui_searchbox_inside(struct ARegion *ar, int x, int y); | bool ui_searchbox_inside(struct ARegion *ar, int x, int y); | ||||
| int ui_searchbox_find_index(struct ARegion *ar, const char *name); | int ui_searchbox_find_index(struct ARegion *ar, const char *name); | ||||
| void ui_searchbox_update(struct bContext *C, struct ARegion *ar, uiBut *but, const bool reset); | void ui_searchbox_update(struct bContext *C, struct ARegion *ar, uiBut *but, const bool reset); | ||||
| bool ui_searchbox_autocomplete(struct bContext *C, struct ARegion *ar, uiBut *but, char *str); | int ui_searchbox_autocomplete(struct bContext *C, struct ARegion *ar, uiBut *but, char *str); | ||||
| void ui_searchbox_event(struct bContext *C, struct ARegion *ar, uiBut *but, const struct wmEvent *event); | void ui_searchbox_event(struct bContext *C, struct ARegion *ar, uiBut *but, const struct wmEvent *event); | ||||
| bool ui_searchbox_apply(uiBut *but, struct ARegion *ar); | bool ui_searchbox_apply(uiBut *but, struct ARegion *ar); | ||||
| void ui_searchbox_free(struct bContext *C, struct ARegion *ar); | void ui_searchbox_free(struct bContext *C, struct ARegion *ar); | ||||
| void ui_but_search_test(uiBut *but); | void ui_but_search_test(uiBut *but); | ||||
| typedef uiBlock * (*uiBlockHandleCreateFunc)(struct bContext *C, struct uiPopupBlockHandle *handle, void *arg1); | typedef uiBlock * (*uiBlockHandleCreateFunc)(struct bContext *C, struct uiPopupBlockHandle *handle, void *arg1); | ||||
| uiPopupBlockHandle *ui_popup_block_create(struct bContext *C, struct ARegion *butregion, uiBut *but, | uiPopupBlockHandle *ui_popup_block_create(struct bContext *C, struct ARegion *butregion, uiBut *but, | ||||
| ▲ Show 20 Lines • Show All 108 Lines • Show Last 20 Lines | |||||