Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_sequencer.c
| Show First 20 Lines • Show All 2,241 Lines • ▼ Show 20 Lines | static void rna_def_editor(BlenderRNA *brna) | ||||
| RNA_def_property_ui_text(prop, "Overlay Offset", "Number of frames to offset"); | RNA_def_property_ui_text(prop, "Overlay Offset", "Number of frames to offset"); | ||||
| RNA_def_property_int_funcs( | RNA_def_property_int_funcs( | ||||
| prop, "rna_SequenceEditor_overlay_frame_get", "rna_SequenceEditor_overlay_frame_set", NULL); | prop, "rna_SequenceEditor_overlay_frame_get", "rna_SequenceEditor_overlay_frame_set", NULL); | ||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_SEQUENCER, NULL); | RNA_def_property_update(prop, NC_SPACE | ND_SPACE_SEQUENCER, NULL); | ||||
| prop = RNA_def_property(srna, "proxy_storage", PROP_ENUM, PROP_NONE); | prop = RNA_def_property(srna, "proxy_storage", PROP_ENUM, PROP_NONE); | ||||
| RNA_def_property_enum_items(prop, editing_storage_items); | RNA_def_property_enum_items(prop, editing_storage_items); | ||||
| RNA_def_property_ui_text(prop, "Proxy Storage", "How to store proxies for this project"); | RNA_def_property_ui_text(prop, "Proxy Storage", "How to store proxies for this project"); | ||||
| RNA_def_property_translation_context(prop, BLT_I18NCONTEXT_ID_SEQUENCE); | |||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_SEQUENCER, "rna_SequenceEditor_update_cache"); | RNA_def_property_update(prop, NC_SPACE | ND_SPACE_SEQUENCER, "rna_SequenceEditor_update_cache"); | ||||
| prop = RNA_def_property(srna, "proxy_dir", PROP_STRING, PROP_DIRPATH); | prop = RNA_def_property(srna, "proxy_dir", PROP_STRING, PROP_DIRPATH); | ||||
| RNA_def_property_string_sdna(prop, NULL, "proxy_dir"); | RNA_def_property_string_sdna(prop, NULL, "proxy_dir"); | ||||
| RNA_def_property_ui_text(prop, "Proxy Directory", ""); | RNA_def_property_ui_text(prop, "Proxy Directory", ""); | ||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_SEQUENCER, "rna_SequenceEditor_update_cache"); | RNA_def_property_update(prop, NC_SPACE | ND_SPACE_SEQUENCER, "rna_SequenceEditor_update_cache"); | ||||
| /* cache flags */ | /* cache flags */ | ||||
| ▲ Show 20 Lines • Show All 1,350 Lines • Show Last 20 Lines | |||||