Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_object.h
| Show First 20 Lines • Show All 47 Lines • ▼ Show 20 Lines | |||||
| struct bConstraint; | struct bConstraint; | ||||
| struct bContext; | struct bContext; | ||||
| struct bFaceMap; | struct bFaceMap; | ||||
| struct bPoseChannel; | struct bPoseChannel; | ||||
| struct uiLayout; | struct uiLayout; | ||||
| struct wmKeyConfig; | struct wmKeyConfig; | ||||
| struct wmOperator; | struct wmOperator; | ||||
| struct wmOperatorType; | struct wmOperatorType; | ||||
| struct wmEvent; | |||||
jbakker: Remove unused define. | |||||
| /* object_edit.c */ | /* object_edit.c */ | ||||
| /* context.object */ | /* context.object */ | ||||
| struct Object *ED_object_context(const struct bContext *C); | struct Object *ED_object_context(const struct bContext *C); | ||||
| /* context.object or context.active_object */ | /* context.object or context.active_object */ | ||||
| struct Object *ED_object_active_context(const struct bContext *C); | struct Object *ED_object_active_context(const struct bContext *C); | ||||
| void ED_collection_hide_menu_draw(const struct bContext *C, struct uiLayout *layout); | void ED_collection_hide_menu_draw(const struct bContext *C, struct uiLayout *layout); | ||||
| Object **ED_object_array_in_mode_or_selected(struct bContext *C, | Object **ED_object_array_in_mode_or_selected(struct bContext *C, | ||||
| ▲ Show 20 Lines • Show All 129 Lines • ▼ Show 20 Lines | struct Base *ED_object_add_duplicate(struct Main *bmain, | ||||
| struct ViewLayer *view_layer, | struct ViewLayer *view_layer, | ||||
| struct Base *base, | struct Base *base, | ||||
| const eDupli_ID_Flags dupflag); | const eDupli_ID_Flags dupflag); | ||||
| void ED_object_parent(struct Object *ob, | void ED_object_parent(struct Object *ob, | ||||
| struct Object *parent, | struct Object *parent, | ||||
| const int type, | const int type, | ||||
| const char *substr); | const char *substr); | ||||
| char *ED_object_ot_drop_named_material_tooltip(struct bContext *C, | |||||
| struct PointerRNA *properties, | |||||
| const struct wmEvent *event); | |||||
| /* bitflags for enter/exit editmode */ | /* bitflags for enter/exit editmode */ | ||||
| enum { | enum { | ||||
| EM_FREEDATA = (1 << 0), | EM_FREEDATA = (1 << 0), | ||||
| EM_NO_CONTEXT = (1 << 1), | EM_NO_CONTEXT = (1 << 1), | ||||
| }; | }; | ||||
| bool ED_object_editmode_exit_ex(struct Main *bmain, | bool ED_object_editmode_exit_ex(struct Main *bmain, | ||||
| struct Scene *scene, | struct Scene *scene, | ||||
| ▲ Show 20 Lines • Show All 350 Lines • Show Last 20 Lines | |||||
Remove unused define.