n2xPart.h (329B)
1 #pragma once 2 3 #include "jucePluginEditorLib/partbutton.h" 4 5 namespace n2xJucePlugin 6 { 7 class Editor; 8 9 class Part : public jucePluginEditorLib::PartButton<juce::DrawableButton> 10 { 11 public: 12 Part(Editor& _editor, const std::string& _name, ButtonStyle _buttonStyle); 13 14 void onClick() override; 15 private: 16 Editor& m_editor; 17 }; 18 }