You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.1KB

  1. /*
  2. ==============================================================================
  3. This file was auto-generated!
  4. It contains the basic framework code for a JUCE plugin editor.
  5. ==============================================================================
  6. */
  7. #pragma once
  8. #include "../JuceLibraryCode/JuceHeader.h"
  9. #include "PluginProcessor.h"
  10. //==============================================================================
  11. /**
  12. */
  13. class PaulstretchpluginAudioProcessorEditor : public AudioProcessorEditor
  14. {
  15. public:
  16. PaulstretchpluginAudioProcessorEditor (PaulstretchpluginAudioProcessor&);
  17. ~PaulstretchpluginAudioProcessorEditor();
  18. //==============================================================================
  19. void paint (Graphics&) override;
  20. void resized() override;
  21. private:
  22. // This reference is provided as a quick way for your editor to
  23. // access the processor object that created it.
  24. PaulstretchpluginAudioProcessor& processor;
  25. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (PaulstretchpluginAudioProcessorEditor)
  26. };