Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_userdef.c
| Show First 20 Lines • Show All 3,329 Lines • ▼ Show 20 Lines | static void rna_def_userdef_view(BlenderRNA *brna) | ||||
| RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", USER_TOOLTIPS_PYTHON); | RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", USER_TOOLTIPS_PYTHON); | ||||
| RNA_def_property_ui_text(prop, "Python Tooltips", "Show Python references in tooltips"); | RNA_def_property_ui_text(prop, "Python Tooltips", "Show Python references in tooltips"); | ||||
| prop = RNA_def_property(srna, "show_object_info", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_object_info", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_DRAWVIEWINFO); | RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_DRAWVIEWINFO); | ||||
| RNA_def_property_ui_text(prop, "Display Object Info", "Display objects name and frame number in 3D view"); | RNA_def_property_ui_text(prop, "Display Object Info", "Display objects name and frame number in 3D view"); | ||||
| RNA_def_property_update(prop, 0, "rna_userdef_update"); | RNA_def_property_update(prop, 0, "rna_userdef_update"); | ||||
| prop = RNA_def_property(srna, "use_global_scene", PROP_BOOLEAN, PROP_NONE); | |||||
| RNA_def_property_boolean_sdna(prop, NULL, "flag", USER_SCENEGLOBAL); | |||||
| RNA_def_property_ui_text(prop, "Global Scene", "Force the current Scene to be displayed in all Screens"); | |||||
| RNA_def_property_update(prop, 0, "rna_userdef_update"); | |||||
| prop = RNA_def_property(srna, "show_large_cursors", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_large_cursors", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "curssize", 0); | RNA_def_property_boolean_sdna(prop, NULL, "curssize", 0); | ||||
| RNA_def_property_ui_text(prop, "Large Cursors", "Use large mouse cursors when available"); | RNA_def_property_ui_text(prop, "Large Cursors", "Use large mouse cursors when available"); | ||||
| RNA_def_property_update(prop, 0, "rna_userdef_update"); | RNA_def_property_update(prop, 0, "rna_userdef_update"); | ||||
| prop = RNA_def_property(srna, "show_view_name", PROP_BOOLEAN, PROP_NONE); | prop = RNA_def_property(srna, "show_view_name", PROP_BOOLEAN, PROP_NONE); | ||||
| RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_SHOW_VIEWPORTNAME); | RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_SHOW_VIEWPORTNAME); | ||||
| RNA_def_property_ui_text(prop, "Show View Name", "Show the name of the view's direction in each 3D View"); | RNA_def_property_ui_text(prop, "Show View Name", "Show the name of the view's direction in each 3D View"); | ||||
| ▲ Show 20 Lines • Show All 1,387 Lines • Show Last 20 Lines | |||||