Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/editors/include/ED_anim_api.h')
-rw-r--r--source/blender/editors/include/ED_anim_api.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/source/blender/editors/include/ED_anim_api.h b/source/blender/editors/include/ED_anim_api.h
index 9ce52966dc8..aa1333f3ce7 100644
--- a/source/blender/editors/include/ED_anim_api.h
+++ b/source/blender/editors/include/ED_anim_api.h
@@ -36,6 +36,7 @@ struct View2D;
struct gla2DDrawInfo;
struct Object;
struct bActionGroup;
+struct IpoCurve;
/* ************************************************ */
/* ANIMATION CHANNEL FILTERING */
@@ -243,16 +244,25 @@ enum {
} eAnimEditDraw_CurrentFrame;
/* main call to draw current-frame indicator in an Animation Editor */
-void ANIM_draw_cfra(const bContext *C, struct View2D *v2d, short flag);
+void ANIM_draw_cfra(const struct bContext *C, struct View2D *v2d, short flag);
/* ------------- Preview Range Drawing -------------- */
/* main call to draw preview range curtains */
-void ANIM_draw_previewrange(const bContext *C, struct View2D *v2d);
+void ANIM_draw_previewrange(const struct bContext *C, struct View2D *v2d);
/* ************************************************* */
/* ASSORTED TOOLS */
+/* ------------ IPO Adrcode <-> Icons/Names Mapping ------------ */
+
+
+int geticon_ipo_blocktype(short blocktype);
+char *getname_ipocurve(struct IpoCurve *icu, struct Object *ob);
+
+unsigned int ipo_rainbow(int cur, int tot);
+
+
/* ------------- NLA-Mapping ----------------------- */
/* Obtain the Object providing NLA-scaling for the given channel if applicable */