The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
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.

35 lines
977B

  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. %%editor_headers%%
  9. //==============================================================================
  10. /**
  11. */
  12. class %%editor_class_name%% : public AudioProcessorEditor
  13. {
  14. public:
  15. %%editor_class_name%% (%%filter_class_name%%&);
  16. ~%%editor_class_name%%();
  17. //==============================================================================
  18. void paint (Graphics&) override;
  19. void resized() override;
  20. private:
  21. // This reference is provided as a quick way for your editor to
  22. // access the processor object that created it.
  23. %%filter_class_name%%& processor;
  24. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%editor_class_name%%)
  25. };