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:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-07-22 20:18:51 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-07-22 20:18:51 +0400
commit478e42970cc4328bf68239ad27d56cf144f323b9 (patch)
tree982e0b9579cc4768283376bd8bc6a1ad66931e74 /source/blender/editors/space_clip/clip_intern.h
parent4b24ce84e88c35511e186ca8cd9eb8550166ee1f (diff)
Camera tracking integration
=========================== - Operator "Join Selected Tracks". This operator joins all selected tracks to active track. Hotkey is Ctrl-J. - Operator "Select Grouped". Now it's easy to select all locked/keyframes/etc markers. Hotkey is Shit-G. - Operator to jump to beginning/end of active path. Hotkeys are Shift+Ctrl+Arrow Left/Right. - Operator to copy color from active track to all tracks.
Diffstat (limited to 'source/blender/editors/space_clip/clip_intern.h')
-rw-r--r--source/blender/editors/space_clip/clip_intern.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/editors/space_clip/clip_intern.h b/source/blender/editors/space_clip/clip_intern.h
index 3626d6cbe61..165587526e5 100644
--- a/source/blender/editors/space_clip/clip_intern.h
+++ b/source/blender/editors/space_clip/clip_intern.h
@@ -62,6 +62,7 @@ void CLIP_OT_select(struct wmOperatorType *ot);
void CLIP_OT_select_all(struct wmOperatorType *ot);
void CLIP_OT_select_border(struct wmOperatorType *ot);
void CLIP_OT_select_circle(struct wmOperatorType *ot);
+void CLIP_OT_select_grouped(struct wmOperatorType *ot);
void CLIP_OT_add_marker(struct wmOperatorType *ot);
void CLIP_OT_delete_track(struct wmOperatorType *ot);
@@ -72,6 +73,7 @@ void CLIP_OT_solve_camera(struct wmOperatorType *ot);
void CLIP_OT_clear_reconstruction(struct wmOperatorType *ot);
void CLIP_OT_clear_track_path(struct wmOperatorType *ot);
+void CLIP_OT_join_tracks(struct wmOperatorType *ot);
void CLIP_OT_disable_markers(struct wmOperatorType *ot);
void CLIP_OT_hide_tracks(struct wmOperatorType *ot);
@@ -87,6 +89,9 @@ void CLIP_OT_set_center_principal(struct wmOperatorType *ot);
void CLIP_OT_slide_marker(struct wmOperatorType *ot);
+void CLIP_OT_frame_jump(struct wmOperatorType *ot);
+void CLIP_OT_track_copy_color(struct wmOperatorType *ot);
+
void CLIP_OT_detect_features(struct wmOperatorType *ot);
/* clip_draw.c */