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:
authorPeter Schlaile <peter@schlaile.de>2006-03-27 01:36:42 +0400
committerPeter Schlaile <peter@schlaile.de>2006-03-27 01:36:42 +0400
commit2dce179e9d46b7aeeb603636c6027ef2d1ff2a8e (patch)
treeb6f5d0e9b607675f6ff12529b9a2ce62e9e8a998 /source/blender/makesdna/DNA_space_types.h
parent915cd5b80b888c0eb70160ca6be11d7d39d43e8d (diff)
==Sequencer==
This patch is mostly a usability patch for the sequencer, mainly written by Anders Gudmundson and twisted a little bit by me. - Lock Time to other windows - Possibility to switch the X-Axis between frames and seconds-display - IPO-Frame Locking for plugins (T-Key) - Additional Popup to add HD-Sound and Movie at once - In Timeline-Window: Sequencer windows only playback - Make the IPOs a little bit IPO-Frame-Lock friendlier (doesn't jump; the frame that is drawn has the right dimension) - Wheel-Mouse buttons make the sequencer window zoom again. - The "This is not a sound/movie-file message" now reads "... or FFMPEG-support not compiled in!" since I learned some prominent people who complained, that hdaudio does not work for them ;-) - Make SPACEKEY open up the "Add Strip"-Popup on the timeline and start playback in the preview window.
Diffstat (limited to 'source/blender/makesdna/DNA_space_types.h')
-rw-r--r--source/blender/makesdna/DNA_space_types.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h
index 2be600e8f44..5a9f0debc7b 100644
--- a/source/blender/makesdna/DNA_space_types.h
+++ b/source/blender/makesdna/DNA_space_types.h
@@ -148,7 +148,8 @@ typedef struct SpaceSeq {
short mainb, zoom;
short chanshown;
short pad2;
-
+ int flag;
+ int pad;
} SpaceSeq;
typedef struct SpaceFile {
@@ -560,11 +561,15 @@ typedef struct SpaceImaSel {
#define TIME_ALL_ANIM_WIN 4
#define TIME_ALL_BUTS_WIN 8
#define TIME_WITH_SEQ_AUDIO 16
+#define TIME_SEQ 32
/* sseq->mainb */
-#define SEQ_DRAW_SEQUENCE 0
-#define SEQ_DRAW_IMG_IMBUF 1
-#define SEQ_DRAW_IMG_WAVEFORM 2
-#define SEQ_DRAW_IMG_VECTORSCOPE 3
+#define SEQ_DRAW_SEQUENCE 0
+#define SEQ_DRAW_IMG_IMBUF 1
+#define SEQ_DRAW_IMG_WAVEFORM 2
+#define SEQ_DRAW_IMG_VECTORSCOPE 3
+
+/* sseq->flag */
+#define SEQ_DRAWFRAMES 1
#endif