Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_outliner/outliner_intern.h
| Show First 20 Lines • Show All 270 Lines • ▼ Show 20 Lines | eOLDrawState tree_element_type_active(struct bContext *C, | ||||
| bool recursive); | bool recursive); | ||||
| eOLDrawState tree_element_active(struct bContext *C, | eOLDrawState tree_element_active(struct bContext *C, | ||||
| const TreeViewContext *tvc, | const TreeViewContext *tvc, | ||||
| SpaceOutliner *space_outliner, | SpaceOutliner *space_outliner, | ||||
| TreeElement *te, | TreeElement *te, | ||||
| const eOLSetState set, | const eOLSetState set, | ||||
| const bool handle_all_types); | const bool handle_all_types); | ||||
| struct bPoseChannel *outliner_find_parent_bone(TreeElement *te, TreeElement **r_bone_te); | |||||
| void outliner_item_select(struct bContext *C, | void outliner_item_select(struct bContext *C, | ||||
| struct SpaceOutliner *space_outliner, | struct SpaceOutliner *space_outliner, | ||||
| struct TreeElement *te, | struct TreeElement *te, | ||||
| const short select_flag); | const short select_flag); | ||||
| bool outliner_item_is_co_over_name_icons(const TreeElement *te, float view_co_x); | bool outliner_item_is_co_over_name_icons(const TreeElement *te, float view_co_x); | ||||
| bool outliner_item_is_co_within_close_toggle(const TreeElement *te, float view_co_x); | bool outliner_item_is_co_within_close_toggle(const TreeElement *te, float view_co_x); | ||||
| bool outliner_is_co_within_mode_column(SpaceOutliner *space_outliner, const float view_mval[2]); | bool outliner_is_co_within_mode_column(SpaceOutliner *space_outliner, const float view_mval[2]); | ||||
| ▲ Show 20 Lines • Show All 95 Lines • ▼ Show 20 Lines | |||||
| /* outliner_dragdrop.c */ | /* outliner_dragdrop.c */ | ||||
| void outliner_dropboxes(void); | void outliner_dropboxes(void); | ||||
| void OUTLINER_OT_item_drag_drop(struct wmOperatorType *ot); | void OUTLINER_OT_item_drag_drop(struct wmOperatorType *ot); | ||||
| void OUTLINER_OT_parent_drop(struct wmOperatorType *ot); | void OUTLINER_OT_parent_drop(struct wmOperatorType *ot); | ||||
| void OUTLINER_OT_parent_clear(struct wmOperatorType *ot); | void OUTLINER_OT_parent_clear(struct wmOperatorType *ot); | ||||
| void OUTLINER_OT_scene_drop(struct wmOperatorType *ot); | void OUTLINER_OT_scene_drop(struct wmOperatorType *ot); | ||||
| void OUTLINER_OT_material_drop(struct wmOperatorType *ot); | void OUTLINER_OT_material_drop(struct wmOperatorType *ot); | ||||
| void OUTLINER_OT_datastack_drop(struct wmOperatorType *ot); | |||||
| void OUTLINER_OT_collection_drop(struct wmOperatorType *ot); | void OUTLINER_OT_collection_drop(struct wmOperatorType *ot); | ||||
| /* ...................................................... */ | /* ...................................................... */ | ||||
| void OUTLINER_OT_highlight_update(struct wmOperatorType *ot); | void OUTLINER_OT_highlight_update(struct wmOperatorType *ot); | ||||
| void OUTLINER_OT_item_activate(struct wmOperatorType *ot); | void OUTLINER_OT_item_activate(struct wmOperatorType *ot); | ||||
| void OUTLINER_OT_item_openclose(struct wmOperatorType *ot); | void OUTLINER_OT_item_openclose(struct wmOperatorType *ot); | ||||
| ▲ Show 20 Lines • Show All 129 Lines • Show Last 20 Lines | |||||