Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_context.h
| Show All 34 Lines | |||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| struct ARegion; | struct ARegion; | ||||
| struct bScreen; | struct bScreen; | ||||
| struct CacheFile; | struct CacheFile; | ||||
| struct Collection; | |||||
| struct Depsgraph; | struct Depsgraph; | ||||
| struct LayerCollection; | struct LayerCollection; | ||||
| 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 ViewLayer; | 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; | ||||
| ▲ Show 20 Lines • Show All 191 Lines • ▼ Show 20 Lines | |||||
| #define CTX_DATA_COUNT(C, member) \ | #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 Collection *CTX_data_collection(const bContext *C); | ||||
| struct ViewLayer *CTX_data_view_layer(const bContext *C); | struct ViewLayer *CTX_data_view_layer(const bContext *C); | ||||
| struct RenderEngineType *CTX_data_engine_type(const bContext *C); | struct RenderEngineType *CTX_data_engine_type(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( | int CTX_data_mode_enum_ex( | ||||
| const struct Object *obedit, const struct Object *ob, | const struct Object *obedit, const struct Object *ob, | ||||
| const eObjectMode object_mode); | const eObjectMode object_mode); | ||||
| ▲ Show 20 Lines • Show All 67 Lines • Show Last 20 Lines | |||||