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.

37 lines
886B

  1. /*
  2. ==============================================================================
  3. This file was auto-generated!
  4. ==============================================================================
  5. */
  6. INCLUDE_CORRESPONDING_HEADER
  7. //==============================================================================
  8. CONTENTCOMPCLASS::CONTENTCOMPCLASS()
  9. {
  10. setSize (500, 400);
  11. }
  12. CONTENTCOMPCLASS::~CONTENTCOMPCLASS()
  13. {
  14. }
  15. void CONTENTCOMPCLASS::paint (Graphics& g)
  16. {
  17. g.fillAll (Colour (0xffeeddff));
  18. g.setFont (Font (16.0f));
  19. g.setColour (Colours::black);
  20. g.drawText ("Hello World!", getLocalBounds(), Justification::centred, true);
  21. }
  22. void CONTENTCOMPCLASS::resized()
  23. {
  24. // This is called when the CONTENTCOMPCLASS is resized.
  25. // If you add any child components, this is where you should
  26. // update their positions.
  27. }