Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_space.c
| Show First 20 Lines • Show All 992 Lines • ▼ Show 20 Lines | |||||
| RNA_def_property_ui_text(prop, "Show Metadata", "Show metadata of first visible strip"); | RNA_def_property_ui_text(prop, "Show Metadata", "Show metadata of first visible strip"); | ||||
| 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, "show_seconds", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_seconds", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SEQ_DRAWFRAMES); | RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SEQ_DRAWFRAMES); | ||||
| RNA_def_property_ui_text(prop, "Show Seconds", "Show timing in seconds not frames"); | RNA_def_property_ui_text(prop, "Show Seconds", "Show timing in seconds not frames"); | ||||
| 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, "show_marker_lines", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_markers", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_SHOW_MARKER_LINES); | RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_SHOW_MARKERS); | ||||
| RNA_def_property_ui_text(prop, "Show Marker Lines", "Show a vertical line for every marker"); | RNA_def_property_ui_text( | ||||
| prop, | |||||
| "Show Markers", | |||||
| "If any exists, show markers in a separate row at the bottom of the editor"); | |||||
| 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, "show_annotation", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_annotation", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_SHOW_GPENCIL); | RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_SHOW_GPENCIL); | ||||
| RNA_def_property_ui_text(prop, "Show Annotation", "Show annotations for this view"); | RNA_def_property_ui_text(prop, "Show Annotation", "Show annotations for this view"); | ||||
| 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, "display_channel", PROP_INT, PROP_NONE); | prop = RNA_def_property(srna, "display_channel", PROP_INT, PROP_NONE); | ||||
| ▲ Show 20 Lines • Show All 239 Lines • ▼ Show 20 Lines | |||||
| prop = RNA_def_property(srna, "show_sliders", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_sliders", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", SACTION_SLIDERS); | RNA_def_property_boolean_sdna(prop, NULL, "flag", SACTION_SLIDERS); | ||||
| RNA_def_property_ui_text(prop, "Show Sliders", "Show sliders beside F-Curve channels"); | RNA_def_property_ui_text(prop, "Show Sliders", "Show sliders beside F-Curve channels"); | ||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_DOPESHEET, NULL); | RNA_def_property_update(prop, NC_SPACE | ND_SPACE_DOPESHEET, NULL); | ||||
| prop = RNA_def_property(srna, "show_pose_markers", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_pose_markers", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", SACTION_POSEMARKERS_SHOW); | RNA_def_property_boolean_sdna(prop, NULL, "flag", SACTION_POSEMARKERS_SHOW); | ||||
| RNA_def_property_ui_text(prop, | RNA_def_property_ui_text(prop, | ||||
| "Show Pose Markers", | "Toggle Pose Markers", | ||||
| "Show markers belonging to the active action instead of Scene markers " | "Show markers belonging to the active action instead of Scene markers " | ||||
| "(Action and Shape Key Editors only)"); | "(Action and Shape Key Editors only)"); | ||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_DOPESHEET, NULL); | RNA_def_property_update(prop, NC_SPACE | ND_SPACE_DOPESHEET, NULL); | ||||
| prop = RNA_def_property(srna, "show_group_colors", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_group_colors", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SACTION_NODRAWGCOLORS); | RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SACTION_NODRAWGCOLORS); | ||||
| RNA_def_property_ui_text( | RNA_def_property_ui_text( | ||||
| prop, | prop, | ||||
| Show All 12 Lines | |||||
| prop = RNA_def_property(srna, "show_extremes", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_extremes", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", SACTION_SHOW_EXTREMES); | RNA_def_property_boolean_sdna(prop, NULL, "flag", SACTION_SHOW_EXTREMES); | ||||
| RNA_def_property_ui_text(prop, | RNA_def_property_ui_text(prop, | ||||
| "Show Curve Extremes", | "Show Curve Extremes", | ||||
| "Mark keyframes where the key value flow changes direction, based on " | "Mark keyframes where the key value flow changes direction, based on " | ||||
| "comparison with adjacent keys"); | "comparison with adjacent keys"); | ||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_DOPESHEET, NULL); | RNA_def_property_update(prop, NC_SPACE | ND_SPACE_DOPESHEET, NULL); | ||||
| prop = RNA_def_property(srna, "show_marker_lines", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_markers", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", SACTION_SHOW_MARKER_LINES); | RNA_def_property_boolean_sdna(prop, NULL, "flag", SACTION_SHOW_MARKERS); | ||||
| RNA_def_property_ui_text(prop, "Show Marker Lines", "Show a vertical line for every marker"); | RNA_def_property_ui_text( | ||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_GRAPH, NULL); | prop, | ||||
| "Show Markers", | |||||
| "If any exists, show markers in a separate row at the bottom of the editor"); | |||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_DOPESHEET, NULL); | |||||
| /* editing */ | /* editing */ | ||||
| prop = RNA_def_property(srna, "use_auto_merge_keyframes", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_auto_merge_keyframes", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SACTION_NOTRANSKEYCULL); | RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SACTION_NOTRANSKEYCULL); | ||||
| RNA_def_property_ui_text(prop, "AutoMerge Keyframes", "Automatically merge nearby keyframes"); | RNA_def_property_ui_text(prop, "AutoMerge Keyframes", "Automatically merge nearby keyframes"); | ||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_DOPESHEET, NULL); | RNA_def_property_update(prop, NC_SPACE | ND_SPACE_DOPESHEET, NULL); | ||||
| prop = RNA_def_property(srna, "use_realtime_update", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_realtime_update", PROP_BOOLEAN, PROP_NONE); | ||||
| ▲ Show 20 Lines • Show All 137 Lines • ▼ Show 20 Lines | |||||
| prop = RNA_def_property(srna, "show_group_colors", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_group_colors", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SIPO_NODRAWGCOLORS); | RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SIPO_NODRAWGCOLORS); | ||||
| RNA_def_property_ui_text( | RNA_def_property_ui_text( | ||||
| prop, | prop, | ||||
| "Show Group Colors", | "Show Group Colors", | ||||
| "Display groups and channels with colors matching their corresponding groups"); | "Display groups and channels with colors matching their corresponding groups"); | ||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_GRAPH, NULL); | RNA_def_property_update(prop, NC_SPACE | ND_SPACE_GRAPH, NULL); | ||||
| prop = RNA_def_property(srna, "show_marker_lines", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_markers", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", SIPO_MARKER_LINES); | RNA_def_property_boolean_sdna(prop, NULL, "flag", SIPO_SHOW_MARKERS); | ||||
| RNA_def_property_ui_text(prop, "Show Marker Lines", "Show a vertical line for every marker"); | RNA_def_property_ui_text( | ||||
| prop, | |||||
| "Show Markers", | |||||
| "If any exists, show markers in a separate row at the bottom of the editor"); | |||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_GRAPH, NULL); | RNA_def_property_update(prop, NC_SPACE | ND_SPACE_GRAPH, NULL); | ||||
| /* editing */ | /* editing */ | ||||
| prop = RNA_def_property(srna, "use_auto_merge_keyframes", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_auto_merge_keyframes", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SIPO_NOTRANSKEYCULL); | RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SIPO_NOTRANSKEYCULL); | ||||
| RNA_def_property_ui_text(prop, "AutoMerge Keyframes", "Automatically merge nearby keyframes"); | RNA_def_property_ui_text(prop, "AutoMerge Keyframes", "Automatically merge nearby keyframes"); | ||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_GRAPH, NULL); | RNA_def_property_update(prop, NC_SPACE | ND_SPACE_GRAPH, NULL); | ||||
| ▲ Show 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | |||||
| prop = RNA_def_property(srna, "show_local_markers", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_local_markers", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SNLA_NOLOCALMARKERS); | RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SNLA_NOLOCALMARKERS); | ||||
| RNA_def_property_ui_text( | RNA_def_property_ui_text( | ||||
| prop, | prop, | ||||
| "Show Local Markers", | "Show Local Markers", | ||||
| "Show action-local markers on the strips, useful when synchronizing timing across strips"); | "Show action-local markers on the strips, useful when synchronizing timing across strips"); | ||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_NLA, NULL); | RNA_def_property_update(prop, NC_SPACE | ND_SPACE_NLA, NULL); | ||||
| prop = RNA_def_property(srna, "show_marker_lines", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_markers", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", SNLA_SHOW_MARKER_LINES); | RNA_def_property_boolean_sdna(prop, NULL, "flag", SNLA_SHOW_MARKERS); | ||||
| RNA_def_property_ui_text(prop, "Show Marker Lines", "Show a vertical line for every marker"); | RNA_def_property_ui_text( | ||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_GRAPH, NULL); | prop, | ||||
| "Show Markers", | |||||
| "If any exists, show markers in a separate row at the bottom of the editor"); | |||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_NLA, NULL); | |||||
| /* editing */ | /* editing */ | ||||
| prop = RNA_def_property(srna, "use_realtime_update", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_realtime_update", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SNLA_NOREALTIMEUPDATES); | RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SNLA_NOREALTIMEUPDATES); | ||||
| RNA_def_property_ui_text( | RNA_def_property_ui_text( | ||||
| prop, | prop, | ||||
| "Realtime Updates", | "Realtime Updates", | ||||
| "When transforming strips, changes to the animation data are flushed to other views"); | "When transforming strips, changes to the animation data are flushed to other views"); | ||||
| ▲ Show 20 Lines • Show All 992 Lines • Show Last 20 Lines | |||||