Background.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. ==============================================================================
  3. This is an automatically generated GUI class created by the Introjucer!
  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 Introjucer version: 3.1.0
  8. ------------------------------------------------------------------------------
  9. The Introjucer is part of the JUCE library - "Jules' Utility Class Extensions"
  10. Copyright 2004-13 by Raw Material Software Ltd.
  11. ==============================================================================
  12. */
  13. #ifndef _BACKGROUND_H_
  14. #define _BACKGROUND_H_
  15. //[Headers] -- You can add your own extra header files here --
  16. #include "JuceHeader.h"
  17. //[/Headers]
  18. //==============================================================================
  19. /**
  20. //[Comments]
  21. Background is simply the backdrop for other "screens"
  22. although it may eventually sport a logo or spinner
  23. //[/Comments]
  24. */
  25. class Background : public Component
  26. {
  27. public:
  28. //==============================================================================
  29. Background ();
  30. ~Background();
  31. //==============================================================================
  32. //[UserMethods] -- You can add your own custom methods in this section.
  33. //[/UserMethods]
  34. void paint (Graphics& g);
  35. void resized();
  36. private:
  37. //[UserVariables] -- You can add your own custom variables in this section.
  38. //[/UserVariables]
  39. //==============================================================================
  40. //==============================================================================
  41. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (Background)
  42. };
  43. //[EndFile] You can add extra defines here...
  44. //[/EndFile]
  45. #endif // _BACKGROUND_H_