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.

75 lines
2.1KB

  1. /*
  2. ==============================================================================
  3. This is an automatically generated GUI class created by the Projucer!
  4. Be careful when adding custom code to these files, as only the code within
  5. the "//[xyz]" and "//[/xyz]" sections will be retained when the file is loaded
  6. and re-saved.
  7. Created with Projucer version: %%version%%
  8. ------------------------------------------------------------------------------
  9. The Projucer is part of the JUCE library - "Jules' Utility Class Extensions"
  10. Copyright (c) 2015 - ROLI Ltd.
  11. ==============================================================================
  12. */
  13. //[Headers] You can add your own extra header files here...
  14. //[/Headers]
  15. %%includeFilesCPP%%
  16. //[MiscUserDefs] You can add your own user definitions and misc code here...
  17. //[/MiscUserDefs]
  18. //==============================================================================
  19. %%className%%::%%className%% (%%constructorParams%%)
  20. %%initialisers%%{
  21. //[Constructor_pre] You can add your own custom stuff here..
  22. //[/Constructor_pre]
  23. %%constructor%%
  24. //[Constructor] You can add your own custom stuff here..
  25. //[/Constructor]
  26. }
  27. %%className%%::~%%className%%()
  28. {
  29. //[Destructor_pre]. You can add your own custom destruction code here..
  30. //[/Destructor_pre]
  31. %%destructor%%
  32. //[Destructor]. You can add your own custom destruction code here..
  33. //[/Destructor]
  34. }
  35. //==============================================================================
  36. %%methodDefinitions%%
  37. //[MiscUserCode] You can add your own definitions of your custom methods or any other code here...
  38. //[/MiscUserCode]
  39. //==============================================================================
  40. #if 0
  41. /* -- Projucer information section --
  42. This is where the Projucer stores the metadata that describe this GUI layout, so
  43. make changes in here at your peril!
  44. BEGIN_JUCER_METADATA
  45. %%metadata%%
  46. END_JUCER_METADATA
  47. */
  48. #endif
  49. %%staticMemberDefinitions%%
  50. //[EndFile] You can add extra defines here...
  51. //[/EndFile]