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:
Diffstat (limited to 'source/blender/makesdna/DNA_space_types.h')
-rw-r--r--source/blender/makesdna/DNA_space_types.h21
1 files changed, 17 insertions, 4 deletions
diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h
index 1938c63d474..0bc91907d6e 100644
--- a/source/blender/makesdna/DNA_space_types.h
+++ b/source/blender/makesdna/DNA_space_types.h
@@ -520,9 +520,15 @@ typedef struct SpaceClip {
* defined when drawing and used for mouse position calculation */
/* movie postprocessing */
- int postproc_flag;
+ int postproc_flag, pad2;
- int runtime_flag; /* different runtime flags */
+ void *draw_context;
+
+ /* dopesheet */
+ short dope_sort; /* sort order in dopesheet view */
+ short dope_flag; /* dopsheet view flags */
+
+ int pad3;
} SpaceClip;
/* view3d Now in DNA_view3d_types.h */
@@ -904,6 +910,7 @@ enum {
#define SC_SHOW_GRAPH_TRACKS (1<<15)
/*#define SC_SHOW_PYRAMID_LEVELS (1<<16) */ /* UNUSED */
#define SC_LOCK_TIMECURSOR (1<<17)
+#define SC_SHOW_SECONDS (1<<18)
/* SpaceClip->mode */
#define SC_MODE_TRACKING 0
@@ -913,9 +920,15 @@ enum {
/* SpaceClip->view */
#define SC_VIEW_CLIP 0
#define SC_VIEW_GRAPH 1
+#define SC_VIEW_DOPESHEET 2
+
+/* SpaceClip->dope_sort */
+#define SC_DOPE_SORT_NAME 0
+#define SC_DOPE_SORT_LONGEST 1
+#define SC_DOPE_SORT_TOTAL 2
-/* SpaceClip->runtime_flag */
-#define SC_GRAPH_BOTTOM (1<<0)
+/* SpaceClip->dope_flag */
+#define SC_DOPE_SORT_INVERSE 1
/* space types, moved from DNA_screen_types.h */
/* Do NOT change order, append on end. types are hardcoded needed */