Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_screen.h
| Show First 20 Lines • Show All 66 Lines • ▼ Show 20 Lines | |||||
| void ED_region_do_draw(struct bContext *C, struct ARegion *ar); | void ED_region_do_draw(struct bContext *C, struct ARegion *ar); | ||||
| void ED_region_exit(struct bContext *C, struct ARegion *ar); | void ED_region_exit(struct bContext *C, struct ARegion *ar); | ||||
| void ED_region_remove(struct bContext *C, struct ScrArea *sa, struct ARegion *ar); | void ED_region_remove(struct bContext *C, struct ScrArea *sa, struct ARegion *ar); | ||||
| void ED_region_pixelspace(struct ARegion *ar); | void ED_region_pixelspace(struct ARegion *ar); | ||||
| void ED_region_update_rect(struct ARegion *ar); | void ED_region_update_rect(struct ARegion *ar); | ||||
| void ED_region_floating_initialize(struct ARegion *ar); | void ED_region_floating_initialize(struct ARegion *ar); | ||||
| void ED_region_tag_redraw(struct ARegion *ar); | void ED_region_tag_redraw(struct ARegion *ar); | ||||
| void ED_region_tag_redraw_partial(struct ARegion *ar, const struct rcti *rct, bool rebuild); | void ED_region_tag_redraw_partial(struct ARegion *ar, const struct rcti *rct, bool rebuild); | ||||
| void ED_region_tag_redraw_overlay(struct ARegion *ar); | void ED_region_tag_redraw_overlay(struct ARegion *ar); | ||||
brecht: This could be renamed to `ED_region_tag_redraw_cursor` since that's all it's doing. To avoid… | |||||
| void ED_region_tag_redraw_no_rebuild(struct ARegion *ar); | void ED_region_tag_redraw_no_rebuild(struct ARegion *ar); | ||||
| void ED_region_tag_refresh_ui(struct ARegion *ar); | void ED_region_tag_refresh_ui(struct ARegion *ar); | ||||
| void ED_region_tag_redraw_editor_overlays(struct ARegion *ar); | |||||
| void ED_region_panels_init(struct wmWindowManager *wm, struct ARegion *ar); | void ED_region_panels_init(struct wmWindowManager *wm, struct ARegion *ar); | ||||
| void ED_region_panels_ex(const struct bContext *C, | void ED_region_panels_ex(const struct bContext *C, | ||||
| struct ARegion *ar, | struct ARegion *ar, | ||||
| const char *contexts[], | const char *contexts[], | ||||
| int contextnr, | int contextnr, | ||||
| const bool vertical); | const bool vertical); | ||||
| void ED_region_panels(const struct bContext *C, struct ARegion *ar); | void ED_region_panels(const struct bContext *C, struct ARegion *ar); | ||||
| ▲ Show 20 Lines • Show All 378 Lines • Show Last 20 Lines | |||||
This could be renamed to ED_region_tag_redraw_cursor since that's all it's doing. To avoid confusion with the new function.