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>2016-01-15 12:02:26 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-01-15 13:15:56 +0300
commit585574dc301904d0a3672b1956d50c8455a0e3e6 (patch)
treeab0b07c7c0aef9deb30f16b4cc6ee021c72bbcb3 /source/blender/editors/space_clip/tracking_ops_intern.h
parentbdd79ef880ac26de4cef623518c845fa23892a90 (diff)
Tracking: Split tracking_ops into smaller files
The file started to be rather really huge and difficult to follow. Should be no functional changes.
Diffstat (limited to 'source/blender/editors/space_clip/tracking_ops_intern.h')
-rw-r--r--source/blender/editors/space_clip/tracking_ops_intern.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/source/blender/editors/space_clip/tracking_ops_intern.h b/source/blender/editors/space_clip/tracking_ops_intern.h
new file mode 100644
index 00000000000..d9aff100416
--- /dev/null
+++ b/source/blender/editors/space_clip/tracking_ops_intern.h
@@ -0,0 +1,45 @@
+/*
+ * ***** BEGIN GPL LICENSE BLOCK *****
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * The Original Code is Copyright (C) 2016 Blender Foundation.
+ * All rights reserved.
+ *
+ *
+ * Contributor(s): Blender Foundation,
+ * Sergey Sharybin
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+
+/** \file blender/editors/space_clip/tracking_ops_intern.h
+ * \ingroup spclip
+ */
+
+#ifndef __CLIP_TRACKING_INTERN__
+#define __CLIP_TRACKING_INTERN__
+
+struct bContext;
+struct SpaceClip;
+struct MovieClip;
+
+void clip_tracking_clear_invisible_track_selection(struct SpaceClip *sc,
+ struct MovieClip *clip);
+
+void clip_tracking_show_cursor(struct bContext *C);
+void clip_tracking_hide_cursor(struct bContext *C);
+
+#endif /* __CLIP_TRACKING_INTERN__ */ \ No newline at end of file