Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_outliner/tree/tree_display.hh
| Show First 20 Lines • Show All 105 Lines • ▼ Show 20 Lines | |||||
| private: | private: | ||||
| TreeElement *add_library_contents(Main &, ListBase &, Library *) const; | TreeElement *add_library_contents(Main &, ListBase &, Library *) const; | ||||
| bool library_id_filter_poll(Library *lib, ID *id) const; | bool library_id_filter_poll(Library *lib, ID *id) const; | ||||
| short id_filter_get() const; | short id_filter_get() const; | ||||
| }; | }; | ||||
| /* -------------------------------------------------------------------- */ | /* -------------------------------------------------------------------- */ | ||||
| /* Library Overrides Tree-Display. */ | |||||
| /** | |||||
| * \brief Tree-Display for the Library Overrides display mode. | |||||
| */ | |||||
| class TreeDisplayOverrideLibrary final : public AbstractTreeDisplay { | |||||
| public: | |||||
| TreeDisplayOverrideLibrary(SpaceOutliner &space_outliner); | |||||
| ListBase buildTree(const TreeSourceData &source_data) override; | |||||
| private: | |||||
| TreeElement *add_library_contents(Main &, ListBase &, Library *) const; | |||||
| bool override_library_id_filter_poll(Library *lib, ID *id) const; | |||||
| short id_filter_get() const; | |||||
| }; | |||||
| /* -------------------------------------------------------------------- */ | |||||
| /* Video Sequencer Tree-Display */ | /* Video Sequencer Tree-Display */ | ||||
| enum SequenceAddOp { | enum SequenceAddOp { | ||||
| SEQUENCE_DUPLICATE_NOOP = 0, | SEQUENCE_DUPLICATE_NOOP = 0, | ||||
| SEQUENCE_DUPLICATE_ADD, | SEQUENCE_DUPLICATE_ADD, | ||||
| SEQUENCE_DUPLICATE_NONE | SEQUENCE_DUPLICATE_NONE | ||||
| }; | }; | ||||
| ▲ Show 20 Lines • Show All 58 Lines • Show Last 20 Lines | |||||