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:
authorJoshua Leung <aligorith@gmail.com>2008-12-29 14:04:55 +0300
committerJoshua Leung <aligorith@gmail.com>2008-12-29 14:04:55 +0300
commit2c4c7004aee2f710d08055f7724af25db5817ea0 (patch)
treea8700ade70f5df78317f13fa5f52546788b9e1e1 /source/blender/editors/space_action/action_intern.h
parent1d42afe56124cc9cdf76ab25272505ba77d090b2 (diff)
2.5 - Action Editor: Copy/Paste
This can be activated using Ctrl-C/V and the buttons on the header. It still uses an ugly global copy/paste buffer for now. In future, we could investigate alternative methods...
Diffstat (limited to 'source/blender/editors/space_action/action_intern.h')
-rw-r--r--source/blender/editors/space_action/action_intern.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/space_action/action_intern.h b/source/blender/editors/space_action/action_intern.h
index 6f0b5c9899d..d70cbb3f4c2 100644
--- a/source/blender/editors/space_action/action_intern.h
+++ b/source/blender/editors/space_action/action_intern.h
@@ -73,6 +73,9 @@ enum {
/* ***************************************** */
/* action_edit_keyframes.c */
+void ACT_OT_keyframes_copy(struct wmOperatorType *ot);
+void ACT_OT_keyframes_paste(struct wmOperatorType *ot);
+
void ACT_OT_keyframes_delete(struct wmOperatorType *ot);
void ACT_OT_keyframes_clean(struct wmOperatorType *ot);
void ACT_OT_keyframes_sample(struct wmOperatorType *ot);