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-08-04 18:39:37 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-08-04 18:39:37 +0400
commit6cc4952ca3105a6c044027cb17e86ee57444fc35 (patch)
tree8745254b52313cffa3f53b52c091f9e797d4a836 /source/blender/editors/space_clip/clip_intern.h
parentf56590a5f5b32a2b924eb4ed914794657f2d145b (diff)
Camera tracking integration
=========================== - Fixed bug with resetting marker's flag for non-transforming tracks when canceling transformation. - Fixed bug with keyframing non-selected tracks when initializing tracking tools. - Changed selection policy: now invisible parts of marker can be selected. - Added operator redo panel to Clip Editor. - Set Scale operator now uses operator property for scale. - Added operator "Clean Tracks" which currently checks if tracks are tracked long enough and can select bad tracks, delete them or delete tracking segments which are too short.
Diffstat (limited to 'source/blender/editors/space_clip/clip_intern.h')
-rw-r--r--source/blender/editors/space_clip/clip_intern.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/source/blender/editors/space_clip/clip_intern.h b/source/blender/editors/space_clip/clip_intern.h
index c7fe8d968cf..291850eff4b 100644
--- a/source/blender/editors/space_clip/clip_intern.h
+++ b/source/blender/editors/space_clip/clip_intern.h
@@ -46,8 +46,6 @@ struct wmOperatorType;
/* clip_ops.c */
void CLIP_OT_open(struct wmOperatorType *ot);
void CLIP_OT_reload(struct wmOperatorType *ot);
-void CLIP_OT_tools(struct wmOperatorType *ot);
- void CLIP_OT_properties(struct wmOperatorType *ot);
// void CLIP_OT_unlink(struct wmOperatorType *ot);
void CLIP_OT_view_pan(struct wmOperatorType *ot);
void CLIP_OT_view_zoom(wmOperatorType *ot);
@@ -98,6 +96,8 @@ void CLIP_OT_stabilize_2d_add(struct wmOperatorType *ot);
void CLIP_OT_stabilize_2d_remove(struct wmOperatorType *ot);
void CLIP_OT_stabilize_2d_select(struct wmOperatorType *ot);
+void CLIP_OT_clean_tracks(wmOperatorType *ot);
+
/* clip_draw.c */
void draw_clip_main(struct SpaceClip *sc, struct ARegion *ar, struct Scene *scene);
void draw_clip_track_widget(const bContext *C, void *poin, void *arg1, void *arg2, rcti *rect);
@@ -105,5 +105,10 @@ void draw_clip_track_widget(const bContext *C, void *poin, void *arg1, void *arg
/* clip_buttons.c */
void ED_clip_buttons_register(struct ARegionType *art);
+/* clip_toolbar.c */
+void CLIP_OT_tools(struct wmOperatorType *ot);
+void CLIP_OT_properties(struct wmOperatorType *ot);
+void ED_clip_tool_props_register(struct ARegionType *art);
+
#endif /* ED_CLIP_INTERN_H */