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

searchtree.cpp (242B)


      1 #include "searchtree.h"
      2 
      3 #include "tree.h"
      4 
      5 namespace jucePluginEditorLib::patchManager
      6 {
      7 	SearchTree::SearchTree(Tree& _tree): m_tree(_tree)
      8 	{
      9 	}
     10 
     11 	void SearchTree::onTextChanged(const std::string& _text)
     12 	{
     13 		m_tree.setFilter(_text);
     14 	}
     15 }