Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_outliner/tree/tree_display.hh
| Show First 20 Lines • Show All 80 Lines • ▼ Show 20 Lines | class TreeDisplayViewLayer final : public AbstractTreeDisplay { | ||||
| bool show_objects_ = true; | bool show_objects_ = true; | ||||
| public: | public: | ||||
| TreeDisplayViewLayer(SpaceOutliner &space_outliner); | TreeDisplayViewLayer(SpaceOutliner &space_outliner); | ||||
| ListBase buildTree(const TreeSourceData &source_data) override; | ListBase buildTree(const TreeSourceData &source_data) override; | ||||
| private: | private: | ||||
| void add_view_layer(ListBase &, TreeElement &); | void add_view_layer(Scene *, ListBase *, TreeElement *); | ||||
| void add_view_layer_content(ListBase &, TreeElement &); | |||||
| void add_layer_collections_recursive(ListBase &, ListBase &, TreeElement &); | void add_layer_collections_recursive(ListBase &, ListBase &, TreeElement &); | ||||
| void add_layer_collection_objects(ListBase &, LayerCollection &, TreeElement &); | void add_layer_collection_objects(ListBase &, LayerCollection &, TreeElement &); | ||||
| void add_layer_collection_objects_children(TreeElement &); | void add_layer_collection_objects_children(TreeElement &); | ||||
| }; | }; | ||||
| /* -------------------------------------------------------------------- */ | /* -------------------------------------------------------------------- */ | ||||
| /* Library Tree-Display */ | /* Library Tree-Display */ | ||||
| ▲ Show 20 Lines • Show All 100 Lines • Show Last 20 Lines | |||||