Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_context.c
| Show First 20 Lines • Show All 107 Lines • ▼ Show 20 Lines | |||||
| } | } | ||||
| static PointerRNA rna_Context_scene_layer_get(PointerRNA *ptr) | static PointerRNA rna_Context_scene_layer_get(PointerRNA *ptr) | ||||
| { | { | ||||
| bContext *C = (bContext *)ptr->data; | bContext *C = (bContext *)ptr->data; | ||||
| return rna_pointer_inherit_refine(ptr, &RNA_SceneLayer, CTX_data_scene_layer(C)); | return rna_pointer_inherit_refine(ptr, &RNA_SceneLayer, CTX_data_scene_layer(C)); | ||||
| } | } | ||||
| static PointerRNA rna_Context_scene_collection_get(PointerRNA *ptr) | |||||
| { | |||||
| bContext *C = (bContext *)ptr->data; | |||||
| ptr->id.data = CTX_data_scene(C); | |||||
| return rna_pointer_inherit_refine(ptr, &RNA_SceneCollection, CTX_data_scene_collection(C)); | |||||
| } | |||||
| static PointerRNA rna_Context_tool_settings_get(PointerRNA *ptr) | static PointerRNA rna_Context_tool_settings_get(PointerRNA *ptr) | ||||
| { | { | ||||
| bContext *C = (bContext *)ptr->data; | bContext *C = (bContext *)ptr->data; | ||||
| ptr->id.data = CTX_data_scene(C); | ptr->id.data = CTX_data_scene(C); | ||||
| return rna_pointer_inherit_refine(ptr, &RNA_ToolSettings, CTX_data_tool_settings(C)); | return rna_pointer_inherit_refine(ptr, &RNA_ToolSettings, CTX_data_tool_settings(C)); | ||||
| } | } | ||||
| static PointerRNA rna_Context_user_preferences_get(PointerRNA *UNUSED(ptr)) | static PointerRNA rna_Context_user_preferences_get(PointerRNA *UNUSED(ptr)) | ||||
| ▲ Show 20 Lines • Show All 85 Lines • ▼ Show 20 Lines | void RNA_def_context(BlenderRNA *brna) | ||||
| RNA_def_property_struct_type(prop, "Scene"); | RNA_def_property_struct_type(prop, "Scene"); | ||||
| RNA_def_property_pointer_funcs(prop, "rna_Context_scene_get", NULL, NULL, NULL); | RNA_def_property_pointer_funcs(prop, "rna_Context_scene_get", NULL, NULL, NULL); | ||||
| prop = RNA_def_property(srna, "render_layer", PROP_POINTER, PROP_NONE); | prop = RNA_def_property(srna, "render_layer", PROP_POINTER, PROP_NONE); | ||||
| RNA_def_property_clear_flag(prop, PROP_EDITABLE); | RNA_def_property_clear_flag(prop, PROP_EDITABLE); | ||||
| RNA_def_property_struct_type(prop, "SceneLayer"); | RNA_def_property_struct_type(prop, "SceneLayer"); | ||||
| RNA_def_property_pointer_funcs(prop, "rna_Context_scene_layer_get", NULL, NULL, NULL); | RNA_def_property_pointer_funcs(prop, "rna_Context_scene_layer_get", NULL, NULL, NULL); | ||||
| prop = RNA_def_property(srna, "scene_collection", PROP_POINTER, PROP_NONE); | |||||
| RNA_def_property_clear_flag(prop, PROP_EDITABLE); | |||||
| RNA_def_property_struct_type(prop, "SceneCollection"); | |||||
| RNA_def_property_pointer_funcs(prop, "rna_Context_scene_collection_get", NULL, NULL, NULL); | |||||
| prop = RNA_def_property(srna, "tool_settings", PROP_POINTER, PROP_NONE); | prop = RNA_def_property(srna, "tool_settings", PROP_POINTER, PROP_NONE); | ||||
| RNA_def_property_clear_flag(prop, PROP_EDITABLE); | RNA_def_property_clear_flag(prop, PROP_EDITABLE); | ||||
| RNA_def_property_struct_type(prop, "ToolSettings"); | RNA_def_property_struct_type(prop, "ToolSettings"); | ||||
| RNA_def_property_pointer_funcs(prop, "rna_Context_tool_settings_get", NULL, NULL, NULL); | RNA_def_property_pointer_funcs(prop, "rna_Context_tool_settings_get", NULL, NULL, NULL); | ||||
| prop = RNA_def_property(srna, "user_preferences", PROP_POINTER, PROP_NONE); | prop = RNA_def_property(srna, "user_preferences", PROP_POINTER, PROP_NONE); | ||||
| RNA_def_property_clear_flag(prop, PROP_EDITABLE); | RNA_def_property_clear_flag(prop, PROP_EDITABLE); | ||||
| RNA_def_property_struct_type(prop, "UserPreferences"); | RNA_def_property_struct_type(prop, "UserPreferences"); | ||||
| Show All 10 Lines | |||||