#pragma once #include #include "PluginProcessor.h" //============================================================================== class JUCE_TESTAudioProcessorEditor : public juce::AudioProcessorEditor { public: JUCE_TESTAudioProcessorEditor (JUCE_TESTAudioProcessor&); ~JUCE_TESTAudioProcessorEditor() override; //============================================================================== void paint (juce::Graphics&) override; void resized() override; private: juce::Label set_label; juce::Label get_label; juce::Label samplenum_label; juce::Label constr_label; juce::Label destr_label; juce::Label prepare_label; juce::Label release_label; juce::Label state_label; juce::Label set_called_label; JUCE_TESTAudioProcessor& audioProcessor; JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (JUCE_TESTAudioProcessorEditor) };