notagtreeitem.h (449B)
1 #pragma once 2 #include "treeitem.h" 3 4 namespace jucePluginEditorLib::patchManager 5 { 6 class NoTagTreeItem : public TreeItem 7 { 8 public: 9 NoTagTreeItem(PatchManager& _pm, pluginLib::patchDB::TagType _type, const std::string& _title); 10 11 void onParentSearchChanged(const pluginLib::patchDB::SearchRequest& _parentSearchRequest) override; 12 bool mightContainSubItems() override { return false; } 13 14 private: 15 pluginLib::patchDB::TagType m_tagType; 16 }; 17 }