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.

104 lines
3.7KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library - "Jules' Utility Class Extensions"
  4. Copyright 2004-11 by Raw Material Software Ltd.
  5. ------------------------------------------------------------------------------
  6. JUCE can be redistributed and/or modified under the terms of the GNU General
  7. Public License (Version 2), as published by the Free Software Foundation.
  8. A copy of the license is included in the JUCE distribution, or can be found
  9. online at www.gnu.org/licenses.
  10. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  11. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  13. ------------------------------------------------------------------------------
  14. To release a closed-source product which uses JUCE, commercial licenses are
  15. available: visit www.rawmaterialsoftware.com/juce for more information.
  16. ==============================================================================
  17. */
  18. #ifndef __JUCE_GUI_EXTRA_JUCEHEADER__
  19. #define __JUCE_GUI_EXTRA_JUCEHEADER__
  20. #include "../juce_gui_basics/juce_gui_basics.h"
  21. //=============================================================================
  22. /** Config: JUCE_WEB_BROWSER
  23. This lets you disable the WebBrowserComponent class (Mac and Windows).
  24. If you're not using any embedded web-pages, turning this off may reduce your code size.
  25. */
  26. #ifndef JUCE_WEB_BROWSER
  27. #define JUCE_WEB_BROWSER 1
  28. #endif
  29. //=============================================================================
  30. BEGIN_JUCE_NAMESPACE
  31. // START_AUTOINCLUDE documents, code_editor, embedding, lookandfeel, misc
  32. #ifndef __JUCE_FILEBASEDDOCUMENT_JUCEHEADER__
  33. #include "documents/juce_FileBasedDocument.h"
  34. #endif
  35. #ifndef __JUCE_CODEDOCUMENT_JUCEHEADER__
  36. #include "code_editor/juce_CodeDocument.h"
  37. #endif
  38. #ifndef __JUCE_CODEEDITORCOMPONENT_JUCEHEADER__
  39. #include "code_editor/juce_CodeEditorComponent.h"
  40. #endif
  41. #ifndef __JUCE_CODETOKENISER_JUCEHEADER__
  42. #include "code_editor/juce_CodeTokeniser.h"
  43. #endif
  44. #ifndef __JUCE_CPLUSPLUSCODETOKENISER_JUCEHEADER__
  45. #include "code_editor/juce_CPlusPlusCodeTokeniser.h"
  46. #endif
  47. #ifndef __JUCE_ACTIVEXCONTROLCOMPONENT_JUCEHEADER__
  48. #include "embedding/juce_ActiveXControlComponent.h"
  49. #endif
  50. #ifndef __JUCE_NSVIEWCOMPONENT_JUCEHEADER__
  51. #include "embedding/juce_NSViewComponent.h"
  52. #endif
  53. #ifndef __JUCE_UIVIEWCOMPONENT_JUCEHEADER__
  54. #include "embedding/juce_UIViewComponent.h"
  55. #endif
  56. #ifndef __JUCE_OLDSCHOOLLOOKANDFEEL_JUCEHEADER__
  57. #include "lookandfeel/juce_OldSchoolLookAndFeel.h"
  58. #endif
  59. #ifndef __JUCE_APPLEREMOTE_JUCEHEADER__
  60. #include "misc/juce_AppleRemote.h"
  61. #endif
  62. #ifndef __JUCE_BUBBLEMESSAGECOMPONENT_JUCEHEADER__
  63. #include "misc/juce_BubbleMessageComponent.h"
  64. #endif
  65. #ifndef __JUCE_COLOURSELECTOR_JUCEHEADER__
  66. #include "misc/juce_ColourSelector.h"
  67. #endif
  68. #ifndef __JUCE_KEYMAPPINGEDITORCOMPONENT_JUCEHEADER__
  69. #include "misc/juce_KeyMappingEditorComponent.h"
  70. #endif
  71. #ifndef __JUCE_PREFERENCESPANEL_JUCEHEADER__
  72. #include "misc/juce_PreferencesPanel.h"
  73. #endif
  74. #ifndef __JUCE_RECENTLYOPENEDFILESLIST_JUCEHEADER__
  75. #include "misc/juce_RecentlyOpenedFilesList.h"
  76. #endif
  77. #ifndef __JUCE_SPLASHSCREEN_JUCEHEADER__
  78. #include "misc/juce_SplashScreen.h"
  79. #endif
  80. #ifndef __JUCE_SYSTEMTRAYICONCOMPONENT_JUCEHEADER__
  81. #include "misc/juce_SystemTrayIconComponent.h"
  82. #endif
  83. #ifndef __JUCE_WEBBROWSERCOMPONENT_JUCEHEADER__
  84. #include "misc/juce_WebBrowserComponent.h"
  85. #endif
  86. // END_AUTOINCLUDE
  87. END_JUCE_NAMESPACE
  88. #endif // __JUCE_GUI_EXTRA_JUCEHEADER__