Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_sequencer.c
| Show First 20 Lines • Show All 2,384 Lines • ▼ Show 20 Lines | static void rna_def_scene(BlenderRNA *brna) | ||||
| RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_raw_update"); | RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_raw_update"); | ||||
| prop = RNA_def_property(srna, "scene_input", PROP_ENUM, PROP_NONE); | prop = RNA_def_property(srna, "scene_input", PROP_ENUM, PROP_NONE); | ||||
| RNA_def_property_enum_bitflag_sdna(prop, NULL, "flag"); | RNA_def_property_enum_bitflag_sdna(prop, NULL, "flag"); | ||||
| RNA_def_property_enum_items(prop, scene_input_items); | RNA_def_property_enum_items(prop, scene_input_items); | ||||
| RNA_def_property_ui_text(prop, "Input", "Input type to use for the Scene strip"); | RNA_def_property_ui_text(prop, "Input", "Input type to use for the Scene strip"); | ||||
| RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_use_sequence"); | RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_use_sequence"); | ||||
| prop = RNA_def_property(srna, "use_grease_pencil", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_annotations", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SEQ_SCENE_NO_GPENCIL); | RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SEQ_SCENE_NO_ANNOTATION); | ||||
| RNA_def_property_ui_text( | RNA_def_property_ui_text(prop, "Use Annotations", "Show Annotations in OpenGL previews"); | ||||
| prop, "Use Grease Pencil", "Show Grease Pencil strokes in OpenGL previews"); | RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_invalidate_raw_update"); | ||||
| RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, NULL); | |||||
| rna_def_filter_video(srna); | rna_def_filter_video(srna); | ||||
| rna_def_proxy(srna); | rna_def_proxy(srna); | ||||
| rna_def_input(srna); | rna_def_input(srna); | ||||
| rna_def_movie_types(srna); | rna_def_movie_types(srna); | ||||
| } | } | ||||
| static void rna_def_movie(BlenderRNA *brna) | static void rna_def_movie(BlenderRNA *brna) | ||||
| ▲ Show 20 Lines • Show All 933 Lines • Show Last 20 Lines | |||||