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:
-rw-r--r--source/blender/editors/space_outliner/space_outliner.c3
-rw-r--r--source/blender/makesdna/DNA_sequence_types.h3
-rw-r--r--source/blender/makesrna/RNA_types.h9
-rw-r--r--source/blender/makesrna/intern/makesrna.c2
-rw-r--r--source/blender/makesrna/intern/rna_ID.c2
-rw-r--r--source/blender/makesrna/intern/rna_image.c2
-rw-r--r--source/blender/makesrna/intern/rna_internal.h1
-rw-r--r--source/blender/makesrna/intern/rna_scene.c5
-rw-r--r--source/blender/makesrna/intern/rna_sequence.c865
9 files changed, 882 insertions, 10 deletions
diff --git a/source/blender/editors/space_outliner/space_outliner.c b/source/blender/editors/space_outliner/space_outliner.c
index 923710d22b3..84beb52e953 100644
--- a/source/blender/editors/space_outliner/space_outliner.c
+++ b/source/blender/editors/space_outliner/space_outliner.c
@@ -230,7 +230,8 @@ static void rna_collection_but(CellRNA *cell, rcti *rct, uiBlock *block)
if(nameprop)
nameptr= RNA_property_string_get_alloc(&lookup, nameprop, name, sizeof(name));
- else
+
+ if(!nameprop || strlen(nameptr) == 0)
sprintf(nameptr, "%d", cell->index+1);
}
diff --git a/source/blender/makesdna/DNA_sequence_types.h b/source/blender/makesdna/DNA_sequence_types.h
index 7bad8ec3b44..d77e39352c6 100644
--- a/source/blender/makesdna/DNA_sequence_types.h
+++ b/source/blender/makesdna/DNA_sequence_types.h
@@ -182,9 +182,6 @@ typedef struct Editing {
ListBase *seqbasep;
ListBase seqbase;
ListBase metastack;
- short flag;
- short pad;
- int rt;
} Editing;
/* ************* Effect Variable Structs ********* */
diff --git a/source/blender/makesrna/RNA_types.h b/source/blender/makesrna/RNA_types.h
index cb42e89ecd0..d13c91d3b7e 100644
--- a/source/blender/makesrna/RNA_types.h
+++ b/source/blender/makesrna/RNA_types.h
@@ -62,10 +62,11 @@ typedef enum PropertySubType {
PROP_NONE = 0,
PROP_UNSIGNED = 1,
PROP_FILEPATH = 2,
- PROP_COLOR = 3,
- PROP_VECTOR = 4,
- PROP_MATRIX = 5,
- PROP_ROTATION = 6
+ PROP_DIRPATH = 3,
+ PROP_COLOR = 4,
+ PROP_VECTOR = 5,
+ PROP_MATRIX = 6,
+ PROP_ROTATION = 7
} PropertySubType;
typedef enum PropertyFlag {
diff --git a/source/blender/makesrna/intern/makesrna.c b/source/blender/makesrna/intern/makesrna.c
index 37af9abc08b..cb54783389d 100644
--- a/source/blender/makesrna/intern/makesrna.c
+++ b/source/blender/makesrna/intern/makesrna.c
@@ -638,6 +638,7 @@ static const char *rna_property_subtypename(PropertyType type)
case PROP_NONE: return "PROP_NONE";
case PROP_UNSIGNED: return "PROP_UNSIGNED";
case PROP_FILEPATH: return "PROP_FILEPATH";
+ case PROP_DIRPATH: return "PROP_DIRPATH";
case PROP_COLOR: return "PROP_COLOR";
case PROP_VECTOR: return "PROP_VECTOR";
case PROP_MATRIX: return "PROP_MATRIX";
@@ -921,6 +922,7 @@ RNAProcessItem PROCESS_ITEMS[]= {
{"rna_scene.c", RNA_def_scene},
{"rna_screen.c", RNA_def_screen},
{"rna_sensor.c", RNA_def_sensor},
+ {"rna_sequence.c", RNA_def_sequence},
{"rna_vfont.c", RNA_def_vfont},
{"rna_wm.c", RNA_def_wm},
{"rna_world.c", RNA_def_world},
diff --git a/source/blender/makesrna/intern/rna_ID.c b/source/blender/makesrna/intern/rna_ID.c
index 35d59bad826..fed87bc4638 100644
--- a/source/blender/makesrna/intern/rna_ID.c
+++ b/source/blender/makesrna/intern/rna_ID.c
@@ -162,7 +162,7 @@ static void rna_def_ID(BlenderRNA *brna)
RNA_def_property_flag(prop, PROP_NOT_EDITABLE); /* must be unique */
RNA_def_property_ui_text(prop, "Name", "Unique datablock ID name.");
RNA_def_property_string_funcs(prop, "rna_ID_name_get", "rna_ID_name_length", "rna_ID_name_set");
- RNA_def_property_string_maxlength(prop, 22);
+ RNA_def_property_string_maxlength(prop, sizeof(((ID*)NULL)->name)-2);
RNA_def_struct_name_property(srna, prop);
prop= RNA_def_property(srna, "users", PROP_INT, PROP_UNSIGNED);
diff --git a/source/blender/makesrna/intern/rna_image.c b/source/blender/makesrna/intern/rna_image.c
index a48c2962b7a..2a41961ca00 100644
--- a/source/blender/makesrna/intern/rna_image.c
+++ b/source/blender/makesrna/intern/rna_image.c
@@ -145,7 +145,7 @@ static void rna_def_image(BlenderRNA *brna)
prop= RNA_def_property(srna, "premultiply", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", IMA_DO_PREMUL);
- RNA_def_property_ui_text(prop, "Premultiply", "Convert from key alpha to premultiplied alpha.");
+ RNA_def_property_ui_text(prop, "Premultiply", "Convert RGB from key alpha to premultiplied alpha.");
/* generated image (image_generated_change_cb) */
prop= RNA_def_property(srna, "generated_type", PROP_ENUM, PROP_NONE);
diff --git a/source/blender/makesrna/intern/rna_internal.h b/source/blender/makesrna/intern/rna_internal.h
index 7ac44a34ed0..090f5b6317e 100644
--- a/source/blender/makesrna/intern/rna_internal.h
+++ b/source/blender/makesrna/intern/rna_internal.h
@@ -123,6 +123,7 @@ void RNA_def_rna(struct BlenderRNA *brna);
void RNA_def_scene(struct BlenderRNA *brna);
void RNA_def_screen(struct BlenderRNA *brna);
void RNA_def_sensor(struct BlenderRNA *brna);
+void RNA_def_sequence(struct BlenderRNA *brna);
void RNA_def_vfont(struct BlenderRNA *brna);
void RNA_def_wm(struct BlenderRNA *brna);
void RNA_def_world(struct BlenderRNA *brna);
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 6b300772144..c6c4b710d72 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -143,6 +143,11 @@ void RNA_def_scene(BlenderRNA *brna)
prop= RNA_def_property(srna, "nodetree", PROP_POINTER, PROP_NONE);
RNA_def_property_ui_text(prop, "Node Tree", "Compositing node tree.");
+
+ prop= RNA_def_property(srna, "sequence_editor", PROP_POINTER, PROP_NONE);
+ RNA_def_property_pointer_sdna(prop, NULL, "ed");
+ RNA_def_property_struct_type(prop, "SequenceEditor");
+ RNA_def_property_ui_text(prop, "Sequence Editor", "");
prop= RNA_def_property(srna, "radiosity", PROP_POINTER, PROP_NONE);
RNA_def_property_pointer_sdna(prop, NULL, "radio");
diff --git a/source/blender/makesrna/intern/rna_sequence.c b/source/blender/makesrna/intern/rna_sequence.c
new file mode 100644
index 00000000000..cccf54c518c
--- /dev/null
+++ b/source/blender/makesrna/intern/rna_sequence.c
@@ -0,0 +1,865 @@
+/**
+ * $Id$
+ *
+ * ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * Contributor(s): Blender Foundation (2008)
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+
+#include <stdlib.h>
+#include <limits.h>
+
+#include "RNA_define.h"
+#include "RNA_types.h"
+
+#include "rna_internal.h"
+
+#include "DNA_object_types.h"
+#include "DNA_scene_types.h"
+#include "DNA_sequence_types.h"
+
+#ifdef RNA_RUNTIME
+
+/* name functions that ignore the first two characters */
+static void rna_Sequence_name_get(PointerRNA *ptr, char *value)
+{
+ Sequence *seq= (Sequence*)ptr->data;
+ BLI_strncpy(value, seq->name+2, sizeof(seq->name)-2);
+}
+
+static int rna_Sequence_name_length(PointerRNA *ptr)
+{
+ Sequence *seq= (Sequence*)ptr->data;
+ return strlen(seq->name+2);
+}
+
+static void rna_Sequence_name_set(PointerRNA *ptr, const char *value)
+{
+ Sequence *seq= (Sequence*)ptr->data;
+ BLI_strncpy(seq->name+2, value, sizeof(seq->name)-2);
+}
+
+static StructRNA* rna_Sequence_refine(struct PointerRNA *ptr)
+{
+ Sequence *seq= (Sequence*)ptr->data;
+
+ switch(seq->type) {
+ case SEQ_IMAGE:
+ return &RNA_ImageSequence;
+ case SEQ_META:
+ return &RNA_MetaSequence;
+ case SEQ_SCENE:
+ return &RNA_SceneSequence;
+ case SEQ_MOVIE:
+ case SEQ_MOVIE_AND_HD_SOUND:
+ return &RNA_MovieSequence;
+ case SEQ_RAM_SOUND:
+ case SEQ_HD_SOUND:
+ return &RNA_SoundSequence;
+ case SEQ_CROSS:
+ case SEQ_ADD:
+ case SEQ_SUB:
+ case SEQ_ALPHAOVER:
+ case SEQ_ALPHAUNDER:
+ case SEQ_GAMCROSS:
+ case SEQ_MUL:
+ case SEQ_OVERDROP:
+ return &RNA_EffectSequence;
+ case SEQ_PLUGIN:
+ return &RNA_PluginSequence;
+ case SEQ_WIPE:
+ return &RNA_WipeSequence;
+ case SEQ_GLOW:
+ return &RNA_GlowSequence;
+ case SEQ_TRANSFORM:
+ return &RNA_TransformSequence;
+ case SEQ_COLOR:
+ return &RNA_ColorSequence;
+ case SEQ_SPEED:
+ return &RNA_SpeedControlSequence;
+ default:
+ return &RNA_Sequence;
+ }
+}
+
+static void *rna_SequenceEdtior_meta_stack_get(CollectionPropertyIterator *iter)
+{
+ ListBaseIterator *internal= iter->internal;
+ MetaStack *ms= (MetaStack*)internal->link;
+
+ return (Sequence*)ms->parseq;
+}
+
+#else
+
+static void rna_def_strip_element(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+
+ srna = RNA_def_struct(brna, "SequenceElement", NULL, "Sequence Element");
+ RNA_def_struct_sdna(srna, "StripElem");
+
+ prop= RNA_def_property(srna, "filename", PROP_STRING, PROP_FILEPATH);
+ RNA_def_property_string_sdna(prop, NULL, "name");
+ RNA_def_property_ui_text(prop, "Filename", "");
+}
+
+static void rna_def_strip_crop(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+
+ srna = RNA_def_struct(brna, "SequenceCrop", NULL, "Sequence Crop");
+ RNA_def_struct_sdna(srna, "StripCrop");
+
+ prop= RNA_def_property(srna, "top", PROP_INT, PROP_UNSIGNED);
+ RNA_def_property_ui_text(prop, "Top", "");
+ RNA_def_property_ui_range(prop, 0, 4096, 1, 0);
+
+ prop= RNA_def_property(srna, "bottom", PROP_INT, PROP_UNSIGNED);
+ RNA_def_property_ui_text(prop, "Bottom", "");
+ RNA_def_property_ui_range(prop, 0, 4096, 1, 0);
+
+ prop= RNA_def_property(srna, "left", PROP_INT, PROP_UNSIGNED);
+ RNA_def_property_ui_text(prop, "Left", "");
+ RNA_def_property_ui_range(prop, 0, 4096, 1, 0);
+
+ prop= RNA_def_property(srna, "right", PROP_INT, PROP_UNSIGNED);
+ RNA_def_property_ui_text(prop, "Right", "");
+ RNA_def_property_ui_range(prop, 0, 4096, 1, 0);
+}
+
+static void rna_def_strip_transform(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+
+ srna = RNA_def_struct(brna, "SequenceTransform", NULL, "Sequence Transform");
+ RNA_def_struct_sdna(srna, "StripTransform");
+
+ prop= RNA_def_property(srna, "offset_x", PROP_INT, PROP_NONE);
+ RNA_def_property_int_sdna(prop, NULL, "xofs");
+ RNA_def_property_ui_text(prop, "Offset Y", "");
+ RNA_def_property_ui_range(prop, -4096, 4096, 1, 0);
+
+ prop= RNA_def_property(srna, "offset_y", PROP_INT, PROP_NONE);
+ RNA_def_property_int_sdna(prop, NULL, "yofs");
+ RNA_def_property_ui_text(prop, "Offset Y", "");
+ RNA_def_property_ui_range(prop, -4096, 4096, 1, 0);
+}
+
+static void rna_def_strip_proxy(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+
+ srna = RNA_def_struct(brna, "SequenceProxy", NULL, "Sequence Proxy");
+ RNA_def_struct_sdna(srna, "StripProxy");
+
+ prop= RNA_def_property(srna, "directory", PROP_STRING, PROP_DIRPATH);
+ RNA_def_property_string_sdna(prop, NULL, "dir");
+ RNA_def_property_ui_text(prop, "Directory", "");
+}
+
+static void rna_def_strip_color_balance(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+
+ srna = RNA_def_struct(brna, "SequenceColorBalance", NULL, "Sequence Color Balance");
+ RNA_def_struct_sdna(srna, "StripColorBalance");
+
+ prop= RNA_def_property(srna, "lift", PROP_FLOAT, PROP_COLOR);
+ RNA_def_property_ui_text(prop, "Lift", "Color balance lift (shadows).");
+ RNA_def_property_ui_range(prop, 0.0f, 1.0f, 10, 3);
+
+ prop= RNA_def_property(srna, "gamma", PROP_FLOAT, PROP_COLOR);
+ RNA_def_property_ui_text(prop, "Gamma", "Color balance gamma (midtones).");
+ RNA_def_property_ui_range(prop, 0.0f, 1.0f, 10, 3);
+
+ prop= RNA_def_property(srna, "gain", PROP_FLOAT, PROP_COLOR);
+ RNA_def_property_ui_text(prop, "Gain", "Color balance gain (highlights).");
+ RNA_def_property_ui_range(prop, 0.0f, 1.0f, 10, 3);
+
+ prop= RNA_def_property(srna, "inverse_gain", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_COLOR_BALANCE_INVERSE_GAIN);
+ RNA_def_property_ui_text(prop, "Inverse Gain", "");
+
+ prop= RNA_def_property(srna, "inverse_gamma", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_COLOR_BALANCE_INVERSE_GAMMA);
+ RNA_def_property_ui_text(prop, "Inverse Gamma", "");
+
+ prop= RNA_def_property(srna, "inverse_lift", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_COLOR_BALANCE_INVERSE_LIFT);
+ RNA_def_property_ui_text(prop, "Inverse Lift", "");
+
+ /* not yet used
+ prop= RNA_def_property(srna, "exposure", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_range(prop, 0.0f, 1.0f);
+ RNA_def_property_ui_text(prop, "Exposure", "");
+
+ prop= RNA_def_property(srna, "saturation", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_range(prop, 0.0f, 1.0f);
+ RNA_def_property_ui_text(prop, "Saturation", "");*/
+}
+
+static void rna_def_sequence(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+
+ static const EnumPropertyItem seq_type_items[]= {
+ {SEQ_IMAGE, "IMAGE", "Image", ""},
+ {SEQ_META, "META", "Meta", ""},
+ {SEQ_SCENE, "SCENE", "Scene", ""},
+ {SEQ_MOVIE, "MOVIE", "Movie", ""},
+ {SEQ_RAM_SOUND, "RAM_SOUND", "Ram Sound", ""},
+ {SEQ_HD_SOUND, "HD_SOUND", "HD Sound", ""},
+ {SEQ_MOVIE_AND_HD_SOUND, "MOVIE_AND_HD_SOUND", "Movie and HD Sound", ""},
+ {SEQ_EFFECT, "REPLACE", "Replace", ""},
+ {SEQ_CROSS, "CROSS", "Cross", ""},
+ {SEQ_ADD, "ADD", "Add", ""},
+ {SEQ_SUB, "SUBTRACT", "Subtract", ""},
+ {SEQ_ALPHAOVER, "ALPHAOVER", "Alpha Over", ""},
+ {SEQ_ALPHAUNDER, "ALPHAUNDER", "Alpha Under", ""},
+ {SEQ_GAMCROSS, "GAMMACROSS", "Gamma Cross", ""},
+ {SEQ_MUL, "MULTIPLY", "Multiply", ""},
+ {SEQ_OVERDROP, "OVERDROP", "Over Drop", ""},
+ {SEQ_PLUGIN, "PLUGIN", "plugin", ""},
+ {SEQ_WIPE, "WIPE", "Wipe", ""},
+ {SEQ_GLOW, "GLOW", "Glow", ""},
+ {SEQ_TRANSFORM, "TRANSFORM", "Transform", ""},
+ {SEQ_COLOR, "COLOR", "Color", ""},
+ {SEQ_SPEED, "SPEED", "Speed", ""},
+ {0, NULL, NULL, NULL}
+ };
+
+ static const EnumPropertyItem blend_mode_items[]= {
+ {SEQ_BLEND_REPLACE, "REPLACE", "Replace", ""},
+ {SEQ_CROSS, "CROSS", "Cross", ""},
+ {SEQ_ADD, "ADD", "Add", ""},
+ {SEQ_SUB, "SUBTRACT", "Subtract", ""},
+ {SEQ_ALPHAOVER, "ALPHAOVER", "Alpha Over", ""},
+ {SEQ_ALPHAUNDER, "ALPHAUNDER", "Alpha Under", ""},
+ {SEQ_GAMCROSS, "GAMCROSS", "Gamma Cross", ""},
+ {SEQ_MUL, "MULTIPLY", "Multiply", ""},
+ {SEQ_OVERDROP, "OVERDROP", "Over Drop", ""},
+ {SEQ_PLUGIN, "PLUGIN", "plugin", ""},
+ {SEQ_WIPE, "WIPE", "Wipe", ""},
+ {SEQ_GLOW, "GLOW", "Glow", ""},
+ {SEQ_TRANSFORM, "TRANSFORM", "Transform", ""},
+ {SEQ_COLOR, "COLOR", "Color", ""},
+ {SEQ_SPEED, "SPEED", "Speed", ""},
+ {0, NULL, NULL, NULL}
+ };
+
+ srna = RNA_def_struct(brna, "Sequence", NULL, "Sequence");
+ RNA_def_struct_funcs(srna, NULL, "rna_Sequence_refine");
+
+ prop= RNA_def_property(srna, "name", PROP_STRING, PROP_NONE);
+ RNA_def_property_string_funcs(prop, "rna_Sequence_name_get", "rna_Sequence_name_length", "rna_Sequence_name_set");
+ RNA_def_property_string_maxlength(prop, sizeof(((Sequence*)NULL)->name)-2);
+ RNA_def_property_ui_text(prop, "Name", "");
+ RNA_def_struct_name_property(srna, prop);
+
+ prop= RNA_def_property(srna, "type", PROP_ENUM, PROP_NONE);
+ RNA_def_property_flag(prop, PROP_NOT_EDITABLE);
+ RNA_def_property_enum_items(prop, seq_type_items);
+ RNA_def_property_ui_text(prop, "Type", "");
+
+ prop= RNA_def_property(srna, "ipo", PROP_POINTER, PROP_NONE);
+ RNA_def_property_ui_text(prop, "Ipo Curves", "Ipo curves used by this sequence.");
+
+ /* flags */
+
+ prop= RNA_def_property(srna, "selected", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SELECT);
+ RNA_def_property_ui_text(prop, "Selected", "");
+
+ prop= RNA_def_property(srna, "active", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_ACTIVE);
+ RNA_def_property_ui_text(prop, "Active", "");
+
+ prop= RNA_def_property(srna, "left_handle_selected", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_LEFTSEL);
+ RNA_def_property_ui_text(prop, "Left Handle Selected", "");
+
+ prop= RNA_def_property(srna, "right_handle_selected", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_RIGHTSEL);
+ RNA_def_property_ui_text(prop, "Right Handle Selected", "");
+
+ prop= RNA_def_property(srna, "mute", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_MUTE);
+ RNA_def_property_ui_text(prop, "Mute", "");
+
+ prop= RNA_def_property(srna, "ipo_frame_locked", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_IPO_FRAME_LOCKED);
+ RNA_def_property_ui_text(prop, "IPO Frame Locked", "Lock the IPO coordinates to the global frame counter.");
+
+ prop= RNA_def_property(srna, "lock", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_LOCK);
+ RNA_def_property_ui_text(prop, "Lock", "Lock strip so that it can't be transformed.");
+
+ /* strip positioning */
+
+ prop= RNA_def_property(srna, "length", PROP_INT, PROP_UNSIGNED);
+ RNA_def_property_int_sdna(prop, NULL, "len");
+ RNA_def_property_flag(prop, PROP_NOT_EDITABLE); // computed from other values
+ RNA_def_property_ui_text(prop, "Length", "The length of the contents of this strip before the handles are applied");
+
+ prop= RNA_def_property(srna, "start_frame", PROP_INT, PROP_UNSIGNED);
+ RNA_def_property_int_sdna(prop, NULL, "start");
+ RNA_def_property_flag(prop, PROP_NOT_EDITABLE); // overlap tests
+ RNA_def_property_ui_text(prop, "Start Frame", "");
+
+ prop= RNA_def_property(srna, "start_offset", PROP_INT, PROP_UNSIGNED);
+ RNA_def_property_int_sdna(prop, NULL, "startofs");
+ RNA_def_property_flag(prop, PROP_NOT_EDITABLE); // overlap tests
+ RNA_def_property_ui_text(prop, "Start Offset", "");
+
+ prop= RNA_def_property(srna, "end_offset", PROP_INT, PROP_UNSIGNED);
+ RNA_def_property_int_sdna(prop, NULL, "endofs");
+ RNA_def_property_flag(prop, PROP_NOT_EDITABLE); // overlap tests
+ RNA_def_property_ui_text(prop, "End offset", "");
+
+ prop= RNA_def_property(srna, "start_still", PROP_INT, PROP_UNSIGNED);
+ RNA_def_property_int_sdna(prop, NULL, "startstill");
+ RNA_def_property_flag(prop, PROP_NOT_EDITABLE); // overlap tests
+ RNA_def_property_range(prop, 0, MAXFRAME);
+ RNA_def_property_ui_text(prop, "Start Still", "");
+
+ prop= RNA_def_property(srna, "end_still", PROP_INT, PROP_UNSIGNED);
+ RNA_def_property_int_sdna(prop, NULL, "endstill");
+ RNA_def_property_flag(prop, PROP_NOT_EDITABLE); // overlap tests
+ RNA_def_property_range(prop, 0, MAXFRAME);
+ RNA_def_property_ui_text(prop, "End Still", "");
+
+ prop= RNA_def_property(srna, "channel", PROP_INT, PROP_UNSIGNED);
+ RNA_def_property_int_sdna(prop, NULL, "machine");
+ RNA_def_property_flag(prop, PROP_NOT_EDITABLE); // overlap test
+ RNA_def_property_ui_text(prop, "Channel", "Y position of the sequence strip.");
+
+ /* blending */
+
+ prop= RNA_def_property(srna, "blend_mode", PROP_ENUM, PROP_NONE);
+ RNA_def_property_enum_items(prop, blend_mode_items);
+ RNA_def_property_ui_text(prop, "Blend Mode", "");
+
+ prop= RNA_def_property(srna, "blend_opacity", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_range(prop, 0.0f, 100.0f);
+ RNA_def_property_ui_text(prop, "Blend Opacity", "");
+}
+
+void rna_def_editor(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+
+ srna = RNA_def_struct(brna, "SequenceEditor", NULL, "Sequence Editor");
+ RNA_def_struct_sdna(srna, "Editing");
+
+ prop= RNA_def_property(srna, "sequences", PROP_COLLECTION, PROP_NONE);
+ RNA_def_property_collection_sdna(prop, NULL, "seqbase", NULL);
+ RNA_def_property_struct_type(prop, "Sequence");
+ RNA_def_property_ui_text(prop, "Sequences", "");
+
+ prop= RNA_def_property(srna, "meta_stack", PROP_COLLECTION, PROP_NONE);
+ RNA_def_property_collection_sdna(prop, NULL, "metastack", NULL);
+ RNA_def_property_struct_type(prop, "Sequence");
+ RNA_def_property_ui_text(prop, "Meta Stack", "Meta strip stack, last is currently edited meta strip.");
+ RNA_def_property_collection_funcs(prop, 0, 0, 0, "rna_SequenceEdtior_meta_stack_get", 0, 0, 0, 0);
+}
+
+static void rna_def_filter_video(StructRNA *srna)
+{
+ PropertyRNA *prop;
+
+ prop= RNA_def_property(srna, "de_interlace", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_FILTERY);
+ RNA_def_property_ui_text(prop, "De-Interlace", "For video movies to remove fields.");
+
+ prop= RNA_def_property(srna, "premultiply", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_MAKE_PREMUL);
+ RNA_def_property_ui_text(prop, "Premultiply", "Convert RGB from key alpha to premultiplied alpha.");
+
+ prop= RNA_def_property(srna, "flip_x", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_FLIPX);
+ RNA_def_property_ui_text(prop, "Flip X", "Flip on the X axis.");
+
+ prop= RNA_def_property(srna, "flip_y", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_FLIPY);
+ RNA_def_property_ui_text(prop, "Flip Y", "Flip on the Y axis.");
+
+ prop= RNA_def_property(srna, "convert_float", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_MAKE_FLOAT);
+ RNA_def_property_ui_text(prop, "Convert Float", "Convert input to float data.");
+
+ prop= RNA_def_property(srna, "reverse_frames", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_REVERSE_FRAMES);
+ RNA_def_property_ui_text(prop, "Flip Time", "Reverse frame order.");
+
+ prop= RNA_def_property(srna, "multiply_colors", PROP_FLOAT, PROP_UNSIGNED);
+ RNA_def_property_float_sdna(prop, NULL, "mul");
+ RNA_def_property_range(prop, 0.0f, 20.0f);
+ RNA_def_property_ui_text(prop, "Multiply Colors", "");
+
+ prop= RNA_def_property(srna, "strobe", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_range(prop, 1.0f, 30.0f);
+ RNA_def_property_ui_text(prop, "Strobe", "Only display every nth frame.");
+
+ prop= RNA_def_property(srna, "use_color_balance", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_USE_COLOR_BALANCE);
+ RNA_def_property_flag(prop, PROP_NOT_EDITABLE); // allocate color balance
+ RNA_def_property_ui_text(prop, "Use Color Balance", "(3-Way color correction) on input.");
+
+ prop= RNA_def_property(srna, "color_balance", PROP_POINTER, PROP_NONE);
+ RNA_def_property_pointer_sdna(prop, NULL, "strip->color_balance");
+ RNA_def_property_ui_text(prop, "Color Balance", "");
+
+ prop= RNA_def_property(srna, "use_translation", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_USE_TRANSFORM);
+ RNA_def_property_flag(prop, PROP_NOT_EDITABLE); // allocate transform
+ RNA_def_property_ui_text(prop, "Use Translation", "Translate image before processing.");
+
+ prop= RNA_def_property(srna, "transform", PROP_POINTER, PROP_NONE);
+ RNA_def_property_pointer_sdna(prop, NULL, "strip->transform");
+ RNA_def_property_ui_text(prop, "Transform", "");
+
+ prop= RNA_def_property(srna, "use_crop", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_USE_CROP);
+ RNA_def_property_flag(prop, PROP_NOT_EDITABLE); // allocate crop
+ RNA_def_property_ui_text(prop, "Use Crop", "Crop image before processing.");
+
+ prop= RNA_def_property(srna, "crop", PROP_POINTER, PROP_NONE);
+ RNA_def_property_pointer_sdna(prop, NULL, "strip->crop");
+ RNA_def_property_ui_text(prop, "Crop", "");
+}
+
+static void rna_def_filter_sound(StructRNA *srna)
+{
+ PropertyRNA *prop;
+
+ prop= RNA_def_property(srna, "sound_gain", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_float_sdna(prop, NULL, "level");
+ RNA_def_property_range(prop, -96.0f, 6.0f);
+ RNA_def_property_ui_text(prop, "Sound Gain", "Sound level in dB (0 = full volume).");
+
+ prop= RNA_def_property(srna, "sound_pan", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_float_sdna(prop, NULL, "pan");
+ RNA_def_property_range(prop, -1.0f, 1.0f);
+ RNA_def_property_ui_text(prop, "Sound Pan", "Stereo sound balance.");
+}
+
+static void rna_def_proxy(StructRNA *srna)
+{
+ PropertyRNA *prop;
+
+ prop= RNA_def_property(srna, "use_proxy", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_USE_PROXY);
+ RNA_def_property_flag(prop, PROP_NOT_EDITABLE); // allocate proxy
+ RNA_def_property_ui_text(prop, "Use Proxy", "Use a preview proxy for this strip.");
+
+ prop= RNA_def_property(srna, "proxy", PROP_POINTER, PROP_NONE);
+ RNA_def_property_pointer_sdna(prop, NULL, "strip->proxy");
+ RNA_def_property_ui_text(prop, "Proxy", "");
+
+ prop= RNA_def_property(srna, "proxy_custom_directory", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_USE_PROXY_CUSTOM_DIR);
+ RNA_def_property_ui_text(prop, "Proxy Custom Directory", "Use a custom directory to store data.");
+}
+
+static void rna_def_input(StructRNA *srna)
+{
+ PropertyRNA *prop;
+
+ prop= RNA_def_property(srna, "animation_start_offset", PROP_INT, PROP_UNSIGNED);
+ RNA_def_property_int_sdna(prop, NULL, "anim_startofs");
+ RNA_def_property_flag(prop, PROP_NOT_EDITABLE); // overlap test
+ RNA_def_property_ui_text(prop, "Animation Start Offset", "Animation start offset (trim start).");
+
+ prop= RNA_def_property(srna, "animation_end_offset", PROP_INT, PROP_UNSIGNED);
+ RNA_def_property_int_sdna(prop, NULL, "anim_endofs");
+ RNA_def_property_flag(prop, PROP_NOT_EDITABLE); // overlap test
+ RNA_def_property_ui_text(prop, "Animation End Offset", "Animation end offset (trim end).");
+}
+
+static void rna_def_image(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+
+ srna = RNA_def_struct(brna, "ImageSequence", "Sequence", "Image Sequence");
+ RNA_def_struct_sdna(srna, "Sequence");
+
+ prop= RNA_def_property(srna, "directory", PROP_STRING, PROP_DIRPATH);
+ RNA_def_property_string_sdna(prop, NULL, "strip->dir");
+ RNA_def_property_ui_text(prop, "Directory", "");
+
+ prop= RNA_def_property(srna, "elements", PROP_COLLECTION, PROP_NONE);
+ RNA_def_property_collection_sdna(prop, NULL, "strip->stripdata", "strip->len");
+ RNA_def_property_struct_type(prop, "SequenceElement");
+ RNA_def_property_ui_text(prop, "Elements", "");
+
+
+ rna_def_filter_video(srna);
+ rna_def_proxy(srna);
+ rna_def_input(srna);
+}
+
+static void rna_def_meta(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+
+ srna = RNA_def_struct(brna, "MetaSequence", "Sequence", "Meta Sequence");
+ RNA_def_struct_sdna(srna, "Sequence");
+
+ prop = RNA_def_property(srna, "sequences", PROP_COLLECTION, PROP_NONE);
+ RNA_def_property_collection_sdna(prop, NULL, "seqbase", NULL);
+ RNA_def_property_struct_type(prop, "Sequence");
+ RNA_def_property_ui_text(prop, "Sequences", "");
+
+ rna_def_filter_video(srna);
+ rna_def_proxy(srna);
+ rna_def_input(srna);
+}
+
+static void rna_def_scene(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+
+ srna = RNA_def_struct(brna, "SceneSequence", "Sequence", "Scene Sequence");
+ RNA_def_struct_sdna(srna, "Sequence");
+
+ prop= RNA_def_property(srna, "scene", PROP_POINTER, PROP_NONE);
+ RNA_def_property_ui_text(prop, "Scene", "Scene that this sequence uses.");
+
+ rna_def_filter_video(srna);
+ rna_def_proxy(srna);
+ rna_def_input(srna);
+}
+
+static void rna_def_movie(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+
+ srna = RNA_def_struct(brna, "MovieSequence", "Sequence", "Movie Sequence");
+ RNA_def_struct_sdna(srna, "Sequence");
+
+ prop= RNA_def_property(srna, "mpeg_preseek", PROP_INT, PROP_NONE);
+ RNA_def_property_int_sdna(prop, NULL, "anim_preseek");
+ RNA_def_property_range(prop, 0, 50);
+ RNA_def_property_ui_text(prop, "MPEG Preseek", "For MPEG movies, preseek this many frames.");
+
+ prop= RNA_def_property(srna, "filename", PROP_STRING, PROP_FILEPATH);
+ RNA_def_property_string_sdna(prop, NULL, "strip->stripdata->name");
+ RNA_def_property_ui_text(prop, "Filename", "");
+
+ prop= RNA_def_property(srna, "directory", PROP_STRING, PROP_DIRPATH);
+ RNA_def_property_string_sdna(prop, NULL, "strip->dir");
+ RNA_def_property_ui_text(prop, "Directory", "");
+
+ rna_def_filter_video(srna);
+ rna_def_proxy(srna);
+ rna_def_input(srna);
+}
+
+static void rna_def_sound(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+
+ srna = RNA_def_struct(brna, "SoundSequence", "Sequence", "Sound Sequence");
+ RNA_def_struct_sdna(srna, "Sequence");
+
+ prop= RNA_def_property(srna, "sound", PROP_POINTER, PROP_NONE);
+ RNA_def_property_struct_type(prop, "UnknownType");
+ RNA_def_property_ui_text(prop, "Sound", "Sound datablock used by this sequence (RAM audio only).");
+
+ prop= RNA_def_property(srna, "filename", PROP_STRING, PROP_FILEPATH);
+ RNA_def_property_string_sdna(prop, NULL, "strip->stripdata->name");
+ RNA_def_property_ui_text(prop, "Filename", "");
+
+ prop= RNA_def_property(srna, "directory", PROP_STRING, PROP_DIRPATH);
+ RNA_def_property_string_sdna(prop, NULL, "strip->dir");
+ RNA_def_property_ui_text(prop, "Directory", "");
+
+ rna_def_filter_sound(srna);
+ rna_def_input(srna);
+}
+
+static void rna_def_effect(BlenderRNA *brna)
+{
+ StructRNA *srna;
+
+ srna = RNA_def_struct(brna, "EffectSequence", "Sequence", "Effect Sequence");
+ RNA_def_struct_sdna(srna, "Sequence");
+
+ rna_def_proxy(srna);
+}
+
+static void rna_def_plugin(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+
+ srna = RNA_def_struct(brna, "PluginSequence", "EffectSequence", "Plugin Sequence");
+ RNA_def_struct_sdna_from(srna, "PluginSeq", "plugin");
+
+ prop= RNA_def_property(srna, "filename", PROP_STRING, PROP_FILEPATH);
+ RNA_def_property_string_sdna(prop, NULL, "name");
+ RNA_def_property_flag(prop, PROP_NOT_EDITABLE);
+ RNA_def_property_ui_text(prop, "Filename", "");
+
+ /* plugin properties need custom wrapping code like ID properties */
+}
+
+static void rna_def_wipe(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+
+ static const EnumPropertyItem wipe_type_items[]= {
+ {0, "SINGLE", "Single", ""},
+ {1, "DOUBLE", "Double", ""},
+ /* not used yet {2, "BOX", "Box", ""}, */
+ /* not used yet {3, "CROSS", "Cross", ""}, */
+ {4, "IRIS", "Iris", ""},
+ {5, "CLOCK", "Clock", ""},
+ {0, NULL, NULL, NULL}
+ };
+
+ static const EnumPropertyItem wipe_direction_items[]= {
+ {0, "OUT", "Out", ""},
+ {1, "IN", "In", ""},
+ {0, NULL, NULL, NULL}
+ };
+
+ srna = RNA_def_struct(brna, "WipeSequence", "EffectSequence", "Wipe Sequence");
+ RNA_def_struct_sdna_from(srna, "WipeVars", "effectdata");
+
+ prop= RNA_def_property(srna, "blur_width", PROP_FLOAT, PROP_UNSIGNED);
+ RNA_def_property_float_sdna(prop, NULL, "edgeWidth");
+ RNA_def_property_range(prop, 0.0f, 1.0f);
+ RNA_def_property_ui_text(prop, "Blur Width", "Width of the blur edge, in percentage relative to the image size.");
+
+ prop= RNA_def_property(srna, "angle", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_float_sdna(prop, NULL, "angle");
+ RNA_def_property_range(prop, -90.0f, 90.0f);
+ RNA_def_property_ui_text(prop, "Angle", "Edge angle.");
+
+ prop= RNA_def_property(srna, "direction", PROP_ENUM, PROP_NONE);
+ RNA_def_property_enum_sdna(prop, NULL, "forward");
+ RNA_def_property_enum_items(prop, wipe_direction_items);
+ RNA_def_property_ui_text(prop, "Direction", "Wipe direction.");
+
+ prop= RNA_def_property(srna, "transition_type", PROP_ENUM, PROP_NONE);
+ RNA_def_property_enum_sdna(prop, NULL, "wipetype");
+ RNA_def_property_enum_items(prop, wipe_type_items);
+ RNA_def_property_ui_text(prop, "Transition Type", "");
+}
+
+static void rna_def_glow(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+
+ srna = RNA_def_struct(brna, "GlowSequence", "EffectSequence", "Glow Sequence");
+ RNA_def_struct_sdna_from(srna, "GlowVars", "effectdata");
+
+ prop= RNA_def_property(srna, "threshold", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_float_sdna(prop, NULL, "fMini");
+ RNA_def_property_range(prop, 0.0f, 1.0f);
+ RNA_def_property_ui_text(prop, "Threshold", "Minimum intensity to trigger a glow");
+
+ prop= RNA_def_property(srna, "clamp", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_float_sdna(prop, NULL, "fClamp");
+ RNA_def_property_range(prop, 0.0f, 1.0f);
+ RNA_def_property_ui_text(prop, "Clamp", "rightness limit of intensity.");
+
+ prop= RNA_def_property(srna, "boost_factor", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_float_sdna(prop, NULL, "fBoost");
+ RNA_def_property_range(prop, 0.0f, 10.0f);
+ RNA_def_property_ui_text(prop, "Boost Factor", "Brightness multiplier.");
+
+ prop= RNA_def_property(srna, "blur_distance", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_float_sdna(prop, NULL, "dDist");
+ RNA_def_property_range(prop, 0.5f, 20.0f);
+ RNA_def_property_ui_text(prop, "Blur Distance", "Radius of glow effect.");
+
+ prop= RNA_def_property(srna, "quality", PROP_INT, PROP_NONE);
+ RNA_def_property_int_sdna(prop, NULL, "dQuality");
+ RNA_def_property_range(prop, 1, 5);
+ RNA_def_property_ui_text(prop, "Quality", "Accuracy of the blur effect.");
+
+ prop= RNA_def_property(srna, "only_boost", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "bNoComp", 0);
+ RNA_def_property_ui_text(prop, "Only Boost", "Show the glow buffer only.");
+}
+
+static void rna_def_transform(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+
+ static const EnumPropertyItem interpolation_items[]= {
+ {0, "NONE", "None", "No interpolation."},
+ {1, "BILINEAR", "Bilinear", "Bilinear interpolation."},
+ {2, "BICUBIC", "Bicubic", "Bicubic interpolation."},
+ {0, NULL, NULL, NULL}
+ };
+
+ static const EnumPropertyItem translation_unit_items[]= {
+ {0, "PIXELS", "Pixels", ""},
+ {1, "PERCENT", "Percent", ""},
+ {0, NULL, NULL, NULL}
+ };
+
+ srna = RNA_def_struct(brna, "TransformSequence", "EffectSequence", "Transform Sequence");
+ RNA_def_struct_sdna_from(srna, "TransformVars", "effectdata");
+
+ prop= RNA_def_property(srna, "scale_start_x", PROP_FLOAT, PROP_UNSIGNED);
+ RNA_def_property_float_sdna(prop, NULL, "ScalexIni");
+ RNA_def_property_ui_text(prop, "Scale Start X", "");
+ RNA_def_property_ui_range(prop, 0, 10, 3, 10);
+
+ prop= RNA_def_property(srna, "scale_start_y", PROP_FLOAT, PROP_UNSIGNED);
+ RNA_def_property_float_sdna(prop, NULL, "ScaleyIni");
+ RNA_def_property_ui_text(prop, "Scale Start Y", "");
+ RNA_def_property_ui_range(prop, 0, 10, 3, 10);
+
+ prop= RNA_def_property(srna, "scale_end_x", PROP_FLOAT, PROP_UNSIGNED);
+ RNA_def_property_float_sdna(prop, NULL, "ScalexFin");
+ RNA_def_property_ui_text(prop, "Scale End X", "");
+ RNA_def_property_ui_range(prop, 0, 10, 3, 10);
+
+ prop= RNA_def_property(srna, "scale_end_y", PROP_FLOAT, PROP_UNSIGNED);
+ RNA_def_property_float_sdna(prop, NULL, "ScaleyFin");
+ RNA_def_property_ui_text(prop, "Scale End Y", "");
+ RNA_def_property_ui_range(prop, 0, 10, 3, 10);
+
+ prop= RNA_def_property(srna, "translate_start_x", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_float_sdna(prop, NULL, "xIni");
+ RNA_def_property_ui_text(prop, "Translate Start X", "");
+ RNA_def_property_ui_range(prop, -500.0f, 500.0f, 3, 10);
+
+ prop= RNA_def_property(srna, "translate_start_y", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_float_sdna(prop, NULL, "yIni");
+ RNA_def_property_ui_text(prop, "Translate Start Y", "");
+ RNA_def_property_ui_range(prop, -500.0f, 500.0f, 3, 10);
+
+ prop= RNA_def_property(srna, "translate_end_x", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_float_sdna(prop, NULL, "xFin");
+ RNA_def_property_ui_text(prop, "Translate End X", "");
+ RNA_def_property_ui_range(prop, -500.0f, 500.0f, 3, 10);
+
+ prop= RNA_def_property(srna, "translate_end_y", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_float_sdna(prop, NULL, "yFin");
+ RNA_def_property_ui_text(prop, "Translate End Y", "");
+ RNA_def_property_ui_range(prop, -500.0f, 500.0f, 3, 10);
+
+ prop= RNA_def_property(srna, "rotation_start", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_float_sdna(prop, NULL, "rotIni");
+ RNA_def_property_range(prop, 0.0f, 360.0f);
+ RNA_def_property_ui_text(prop, "Rotation Start", "");
+
+ prop= RNA_def_property(srna, "rotation_end", PROP_FLOAT, PROP_NONE);
+ RNA_def_property_float_sdna(prop, NULL, "rotFin");
+ RNA_def_property_range(prop, 0.0f, 360.0f);
+ RNA_def_property_ui_text(prop, "Rotation End", "");
+
+ prop= RNA_def_property(srna, "translation_unit", PROP_ENUM, PROP_NONE);
+ RNA_def_property_enum_sdna(prop, NULL, "percent");
+ RNA_def_property_enum_items(prop, translation_unit_items);
+ RNA_def_property_ui_text(prop, "Translation Unit", "");
+
+ prop= RNA_def_property(srna, "interpolation", PROP_ENUM, PROP_NONE);
+ RNA_def_property_enum_items(prop, interpolation_items);
+ RNA_def_property_ui_text(prop, "Interpolation", "");
+}
+
+static void rna_def_solid_color(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+
+ srna = RNA_def_struct(brna, "ColorSequence", "EffectSequence", "Color Sequence");
+ RNA_def_struct_sdna_from(srna, "SolidColorVars", "effectdata");
+
+ prop= RNA_def_property(srna, "color", PROP_FLOAT, PROP_COLOR);
+ RNA_def_property_float_sdna(prop, NULL, "col");
+ RNA_def_property_ui_text(prop, "Color", "");
+}
+
+static void rna_def_speed_control(BlenderRNA *brna)
+{
+ StructRNA *srna;
+ PropertyRNA *prop;
+
+ srna = RNA_def_struct(brna, "SpeedControlSequence", "EffectSequence", "SpeedControl Sequence");
+ RNA_def_struct_sdna_from(srna, "SpeedControlVars", "effectdata");
+
+ prop= RNA_def_property(srna, "global_speed", PROP_FLOAT, PROP_UNSIGNED);
+ RNA_def_property_float_sdna(prop, NULL, "globalSpeed");
+ RNA_def_property_ui_text(prop, "Global Speed", "");
+ RNA_def_property_ui_range(prop, 0.0f, 100.0f, 1, 0);
+
+ prop= RNA_def_property(srna, "ipo_velocity", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flags", SEQ_SPEED_INTEGRATE);
+ RNA_def_property_ui_text(prop, "IPO Velocity", "Interpret the IPO value as a velocity instead of a frame number.");
+
+ prop= RNA_def_property(srna, "frame_blending", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flags", SEQ_SPEED_BLEND);
+ RNA_def_property_ui_text(prop, "Frame Blending", "Blend two frames into the target for a smoother result.");
+
+ prop= RNA_def_property(srna, "ipo_compress_y", PROP_BOOLEAN, PROP_NONE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flags", SEQ_SPEED_COMPRESS_IPO_Y);
+ RNA_def_property_ui_text(prop, "IPO Compress Y", "Scale IPO value to get the target frame number, IPO value runs from 0.0 to 1.0.");
+}
+
+void RNA_def_sequence(BlenderRNA *brna)
+{
+ rna_def_strip_element(brna);
+ rna_def_strip_proxy(brna);
+ rna_def_strip_color_balance(brna);
+ rna_def_strip_crop(brna);
+ rna_def_strip_transform(brna);
+
+ rna_def_sequence(brna);
+ rna_def_editor(brna);
+
+ rna_def_image(brna);
+ rna_def_meta(brna);
+ rna_def_scene(brna);
+ rna_def_movie(brna);
+ rna_def_sound(brna);
+ rna_def_effect(brna);
+ rna_def_plugin(brna);
+ rna_def_wipe(brna);
+ rna_def_glow(brna);
+ rna_def_transform(brna);
+ rna_def_solid_color(brna);
+ rna_def_speed_control(brna);
+}
+
+#endif
+