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.

42 lines
1.2KB

  1. /*
  2. ==============================================================================
  3. This file was auto-generated by the Jucer!
  4. It contains the basic outline for a simple desktop window.
  5. ==============================================================================
  6. */
  7. #ifndef HEADERGUARD
  8. #define HEADERGUARD
  9. INCLUDES
  10. //==============================================================================
  11. class WINDOWCLASS : public DocumentWindow
  12. {
  13. public:
  14. //==============================================================================
  15. WINDOWCLASS();
  16. ~WINDOWCLASS();
  17. void closeButtonPressed();
  18. /* Note: Be careful when overriding DocumentWindow methods - the base class
  19. uses a lot of them, so by overriding you might break its functionality.
  20. It's best to do all your work in you content component instead, but if
  21. you really have to override any DocumentWindow methods, make sure your
  22. implementation calls the superclass's method.
  23. */
  24. private:
  25. //==============================================================================
  26. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (WINDOWCLASS)
  27. };
  28. #endif // HEADERGUARD