Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_graph/graph_intern.h
| Show All 22 Lines | |||||
| #ifndef __GRAPH_INTERN_H__ | #ifndef __GRAPH_INTERN_H__ | ||||
| #define __GRAPH_INTERN_H__ | #define __GRAPH_INTERN_H__ | ||||
| struct ARegion; | struct ARegion; | ||||
| struct ARegionType; | struct ARegionType; | ||||
| struct ScrArea; | struct ScrArea; | ||||
| struct SpaceGraph; | struct SpaceGraph; | ||||
| struct View2DGrid; | |||||
| struct bAnimContext; | struct bAnimContext; | ||||
| struct bAnimListElem; | struct bAnimListElem; | ||||
| struct bContext; | struct bContext; | ||||
| /* internal exports only */ | /* internal exports only */ | ||||
| /* ***************************************** */ | /* ***************************************** */ | ||||
| /* graph_draw.c */ | /* graph_draw.c */ | ||||
| void graph_draw_channel_names(struct bContext *C, struct bAnimContext *ac, struct ARegion *ar); | void graph_draw_channel_names(struct bContext *C, struct bAnimContext *ac, struct ARegion *ar); | ||||
| void graph_draw_curves(struct bAnimContext *ac, | void graph_draw_curves(struct bAnimContext *ac, | ||||
| struct SpaceGraph *sipo, | struct SpaceGraph *sipo, | ||||
| struct ARegion *ar, | struct ARegion *ar, | ||||
| struct View2DGrid *grid, | |||||
| short sel); | short sel); | ||||
| void graph_draw_ghost_curves(struct bAnimContext *ac, struct SpaceGraph *sipo, struct ARegion *ar); | void graph_draw_ghost_curves(struct bAnimContext *ac, struct SpaceGraph *sipo, struct ARegion *ar); | ||||
| /* ***************************************** */ | /* ***************************************** */ | ||||
| /* graph_select.c */ | /* graph_select.c */ | ||||
| void deselect_graph_keys(struct bAnimContext *ac, bool test, short sel, bool do_channels); | void deselect_graph_keys(struct bAnimContext *ac, bool test, short sel, bool do_channels); | ||||
| ▲ Show 20 Lines • Show All 127 Lines • Show Last 20 Lines | |||||