gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

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 }