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.

36 lines
1008B

  1. /*
  2. ==============================================================================
  3. This file was auto-generated by the Introjucer!
  4. It contains the basic startup code for a Juce application.
  5. ==============================================================================
  6. */
  7. EDITORCPPHEADERS
  8. //==============================================================================
  9. EDITORCLASSNAME::EDITORCLASSNAME (FILTERCLASSNAME* ownerFilter)
  10. : AudioProcessorEditor (ownerFilter)
  11. {
  12. // This is where our plugin's editor size is set.
  13. setSize (400, 300);
  14. }
  15. EDITORCLASSNAME::~EDITORCLASSNAME()
  16. {
  17. }
  18. //==============================================================================
  19. void EDITORCLASSNAME::paint (Graphics& g)
  20. {
  21. g.fillAll (Colours::white);
  22. g.setColour (Colours::black);
  23. g.setFont (15.0f);
  24. g.drawFittedText ("Hello World!",
  25. 0, 0, getWidth(), getHeight(),
  26. Justification::centred, 1);
  27. }