Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_context.h
| Show First 20 Lines • Show All 44 Lines • ▼ Show 20 Lines | |||||
| struct ListBase; | struct ListBase; | ||||
| struct Main; | struct Main; | ||||
| struct Object; | struct Object; | ||||
| struct Base; | struct Base; | ||||
| struct PointerRNA; | struct PointerRNA; | ||||
| struct ReportList; | struct ReportList; | ||||
| struct Scene; | struct Scene; | ||||
| struct SceneCollection; | struct SceneCollection; | ||||
| struct SceneLayer; | struct ViewLayer; | ||||
| struct ScrArea; | struct ScrArea; | ||||
| struct SpaceLink; | struct SpaceLink; | ||||
| struct View3D; | struct View3D; | ||||
| struct ViewRender; | struct ViewRender; | ||||
| struct RegionView3D; | struct RegionView3D; | ||||
| struct StructRNA; | struct StructRNA; | ||||
| struct ToolSettings; | struct ToolSettings; | ||||
| struct Image; | struct Image; | ||||
| ▲ Show 20 Lines • Show All 185 Lines • ▼ Show 20 Lines | #define CTX_DATA_COUNT(C, member) \ | ||||
| ctx_data_list_count(C, CTX_data_##member) | ctx_data_list_count(C, CTX_data_##member) | ||||
| /* Data Context Members */ | /* Data Context Members */ | ||||
| struct Main *CTX_data_main(const bContext *C); | struct Main *CTX_data_main(const bContext *C); | ||||
| struct Scene *CTX_data_scene(const bContext *C); | struct Scene *CTX_data_scene(const bContext *C); | ||||
| struct LayerCollection *CTX_data_layer_collection(const bContext *C); | struct LayerCollection *CTX_data_layer_collection(const bContext *C); | ||||
| struct SceneCollection *CTX_data_scene_collection(const bContext *C); | struct SceneCollection *CTX_data_scene_collection(const bContext *C); | ||||
| struct SceneLayer *CTX_data_scene_layer(const bContext *C); | struct ViewLayer *CTX_data_view_layer(const bContext *C); | ||||
| struct ViewRender *CTX_data_view_render(const bContext *C); | struct ViewRender *CTX_data_view_render(const bContext *C); | ||||
| struct RenderEngineType *CTX_data_engine(const bContext *C); | struct RenderEngineType *CTX_data_engine(const bContext *C); | ||||
| struct ToolSettings *CTX_data_tool_settings(const bContext *C); | struct ToolSettings *CTX_data_tool_settings(const bContext *C); | ||||
| const char *CTX_data_mode_string(const bContext *C); | const char *CTX_data_mode_string(const bContext *C); | ||||
| int CTX_data_mode_enum_ex(const struct Object *obedit, const struct Object *ob); | int CTX_data_mode_enum_ex(const struct Object *obedit, const struct Object *ob); | ||||
| int CTX_data_mode_enum(const bContext *C); | int CTX_data_mode_enum(const bContext *C); | ||||
| ▲ Show 20 Lines • Show All 62 Lines • Show Last 20 Lines | |||||