Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_space_api.h
| Show First 20 Lines • Show All 56 Lines • ▼ Show 20 Lines | |||||
| * called in WM_init_exit */ | * called in WM_init_exit */ | ||||
| /* in space_file.c */ | /* in space_file.c */ | ||||
| void ED_file_init(void); | void ED_file_init(void); | ||||
| void ED_file_exit(void); | void ED_file_exit(void); | ||||
| #define REGION_DRAW_POST_VIEW 0 | #define REGION_DRAW_POST_VIEW 0 | ||||
| #define REGION_DRAW_POST_PIXEL 1 | #define REGION_DRAW_POST_PIXEL 1 | ||||
| #define REGION_DRAW_PRE_VIEW 2 | #define REGION_DRAW_PRE_VIEW 2 | ||||
| #define REGION_DRAW_BACKDROP 3 | |||||
| void *ED_region_draw_cb_activate(struct ARegionType *, | void *ED_region_draw_cb_activate(struct ARegionType *, | ||||
| void (*draw)(const struct bContext *, struct ARegion *, void *), | void (*draw)(const struct bContext *, struct ARegion *, void *), | ||||
| void *custumdata, | void *custumdata, | ||||
| int type); | int type); | ||||
| int ED_region_has_draw_cb(const struct bContext *, struct ARegion *, int); | |||||
JacquesLucke: missing name for the `int` parameter | |||||
| void ED_region_draw_cb_draw(const struct bContext *, struct ARegion *, int); | void ED_region_draw_cb_draw(const struct bContext *, struct ARegion *, int); | ||||
| void ED_region_draw_cb_exit(struct ARegionType *, void *); | void ED_region_draw_cb_exit(struct ARegionType *, void *); | ||||
| /* generic callbacks */ | /* generic callbacks */ | ||||
| /* ed_util.c */ | /* ed_util.c */ | ||||
| void ED_region_draw_mouse_line_cb(const struct bContext *C, struct ARegion *ar, void *arg_info); | void ED_region_draw_mouse_line_cb(const struct bContext *C, struct ARegion *ar, void *arg_info); | ||||
| #endif /* __ED_SPACE_API_H__ */ | #endif /* __ED_SPACE_API_H__ */ | ||||
missing name for the int parameter