Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_outliner/outliner_intern.h
| Show First 20 Lines • Show All 197 Lines • ▼ Show 20 Lines | |||||
| void outliner_item_do_activate_from_tree_element( | void outliner_item_do_activate_from_tree_element( | ||||
| struct bContext *C, TreeElement *te, TreeStoreElem *tselem, | struct bContext *C, TreeElement *te, TreeStoreElem *tselem, | ||||
| bool extend, bool recursive); | bool extend, bool recursive); | ||||
| int outliner_item_do_activate_from_cursor( | int outliner_item_do_activate_from_cursor( | ||||
| struct bContext *C, const int mval[2], | struct bContext *C, const int mval[2], | ||||
| bool extend, bool recursive); | bool extend, bool recursive); | ||||
| void outliner_item_select(SpaceOops *soops, const TreeElement *te, const bool extend, const bool toggle); | |||||
dfelinto: Use struct for SpaceOops and TreeElement to avoid warnings like: "struct declared inside… | |||||
| /* outliner_edit.c ---------------------------------------------- */ | /* outliner_edit.c ---------------------------------------------- */ | ||||
| typedef void (*outliner_operation_cb)( | typedef void (*outliner_operation_cb)( | ||||
| struct bContext *C, struct ReportList *, struct Scene *scene, | struct bContext *C, struct ReportList *, struct Scene *scene, | ||||
| struct TreeElement *, struct TreeStoreElem *, TreeStoreElem *, void *); | struct TreeElement *, struct TreeStoreElem *, TreeStoreElem *, void *); | ||||
| void outliner_do_object_operation_ex( | void outliner_do_object_operation_ex( | ||||
| struct bContext *C, struct ReportList *reports, struct Scene *scene, struct SpaceOops *soops, | struct bContext *C, struct ReportList *reports, struct Scene *scene, struct SpaceOops *soops, | ||||
| struct ListBase *lb, outliner_operation_cb operation_cb, bool recurse_selected); | struct ListBase *lb, outliner_operation_cb operation_cb, bool recurse_selected); | ||||
| ▲ Show 20 Lines • Show All 138 Lines • Show Last 20 Lines | |||||
Use struct for SpaceOops and TreeElement to avoid warnings like: "struct declared inside parameter list"