Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_space.c
| Show First 20 Lines • Show All 3,524 Lines • ▼ Show 20 Lines | static void rna_def_space_graph(BlenderRNA *brna) | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", SIPO_SLIDERS); | RNA_def_property_boolean_sdna(prop, NULL, "flag", SIPO_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_GRAPH, NULL); | RNA_def_property_update(prop, NC_SPACE | ND_SPACE_GRAPH, NULL); | ||||
| prop = RNA_def_property(srna, "show_handles", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_handles", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SIPO_NOHANDLES); | RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SIPO_NOHANDLES); | ||||
| RNA_def_property_ui_text(prop, "Show Handles", "Show handles of Bezier control points"); | RNA_def_property_ui_text(prop, "Show Handles", "Show handles of Bezier control points"); | ||||
| 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, "auto_deselect_keys", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", SIPO_AUTODESELECT_KEYS); | |||||
| RNA_def_property_ui_text(prop, "Auto Deselect Keyframes", "When a new object is selected keyframes are unselected"); | |||||
| RNA_def_property_update(prop, NC_SPACE | ND_SPACE_GRAPH, NULL); | |||||
| prop = RNA_def_property(srna, "use_only_selected_curves_handles", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_only_selected_curves_handles", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", SIPO_SELCUVERTSONLY); | RNA_def_property_boolean_sdna(prop, NULL, "flag", SIPO_SELCUVERTSONLY); | ||||
| RNA_def_property_ui_text(prop, "Only Selected Curve Keyframes", | RNA_def_property_ui_text(prop, "Only Selected Curve Keyframes", | ||||
| "Only keyframes of selected F-Curves are visible and editable"); | "Only keyframes of selected F-Curves are visible and editable"); | ||||
| 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, "use_only_selected_keyframe_handles", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "use_only_selected_keyframe_handles", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", SIPO_SELVHANDLESONLY); | RNA_def_property_boolean_sdna(prop, NULL, "flag", SIPO_SELVHANDLESONLY); | ||||
| ▲ Show 20 Lines • Show All 1,259 Lines • Show Last 20 Lines | |||||