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_utils.c
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_utils.c')
-rw-r--r--source/blender/editors/space_clip/tracking_ops_utils.c79
1 files changed, 79 insertions, 0 deletions
diff --git a/source/blender/editors/space_clip/tracking_ops_utils.c b/source/blender/editors/space_clip/tracking_ops_utils.c
new file mode 100644
index 00000000000..4fbee51407d
--- /dev/null
+++ b/source/blender/editors/space_clip/tracking_ops_utils.c
@@ -0,0 +1,79 @@
+/*
+ * ***** 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_utils.c
+ * \ingroup spclip
+ */
+
+#include "MEM_guardedalloc.h"
+
+#include "DNA_space_types.h"
+
+#include "BLI_utildefines.h"
+
+#include "BKE_context.h"
+#include "BKE_tracking.h"
+
+#include "WM_api.h"
+#include "WM_types.h"
+
+#include "tracking_ops_intern.h" // own include
+
+void clip_tracking_clear_invisible_track_selection(SpaceClip *sc,
+ MovieClip *clip)
+{
+ ListBase *tracksbase = BKE_tracking_get_active_tracks(&clip->tracking);
+ int hidden = 0;
+ if ((sc->flag & SC_SHOW_MARKER_PATTERN) == 0) {
+ hidden |= TRACK_AREA_PAT;
+ }
+ if ((sc->flag & SC_SHOW_MARKER_SEARCH) == 0) {
+ hidden |= TRACK_AREA_SEARCH;
+ }
+ if (hidden) {
+ for (MovieTrackingTrack *track = tracksbase->first;
+ track != NULL;
+ track = track->next)
+ {
+ if ((track->flag & TRACK_HIDDEN) == 0) {
+ BKE_tracking_track_flag_clear(track, hidden, SELECT);
+ }
+ }
+ }
+}
+
+void clip_tracking_hide_cursor(bContext *C)
+{
+ wmWindow *win = CTX_wm_window(C);
+ WM_cursor_set(win, CURSOR_NONE);
+}
+
+void clip_tracking_show_cursor(bContext *C)
+{
+ wmWindow *win = CTX_wm_window(C);
+ WM_cursor_set(win, CURSOR_STD);
+}