Audio plugin host https://kx.studio/carla
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.

79 lines
2.8KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2013 - Raw Material Software Ltd.
  5. Permission is granted to use this software under the terms of either:
  6. a) the GPL v2 (or any later version)
  7. b) the Affero GPL v3
  8. Details of these licenses can be found at: www.gnu.org/licenses
  9. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  12. ------------------------------------------------------------------------------
  13. To release a closed-source product which uses JUCE, commercial licenses are
  14. available: visit www.juce.com for more information.
  15. ==============================================================================
  16. */
  17. #ifndef JUCE_GUI_EXTRA_H_INCLUDED
  18. #define JUCE_GUI_EXTRA_H_INCLUDED
  19. #include "../juce_gui_basics/juce_gui_basics.h"
  20. //=============================================================================
  21. /** Config: JUCE_WEB_BROWSER
  22. This lets you disable the WebBrowserComponent class (Mac and Windows).
  23. If you're not using any embedded web-pages, turning this off may reduce your code size.
  24. */
  25. #ifndef JUCE_WEB_BROWSER
  26. #define JUCE_WEB_BROWSER 1
  27. #endif
  28. /** Config: JUCE_ENABLE_LIVE_CONSTANT_EDITOR
  29. This lets you turn on the JUCE_ENABLE_LIVE_CONSTANT_EDITOR support. See the documentation
  30. for that macro for more details.
  31. */
  32. #ifndef JUCE_ENABLE_LIVE_CONSTANT_EDITOR
  33. #if JUCE_DEBUG
  34. #define JUCE_ENABLE_LIVE_CONSTANT_EDITOR 1
  35. #endif
  36. #endif
  37. //=============================================================================
  38. namespace juce
  39. {
  40. #include "documents/juce_FileBasedDocument.h"
  41. #include "code_editor/juce_CodeDocument.h"
  42. #include "code_editor/juce_CodeEditorComponent.h"
  43. #include "code_editor/juce_CodeTokeniser.h"
  44. #include "code_editor/juce_CPlusPlusCodeTokeniser.h"
  45. #include "code_editor/juce_CPlusPlusCodeTokeniserFunctions.h"
  46. #include "code_editor/juce_XMLCodeTokeniser.h"
  47. #include "code_editor/juce_LuaCodeTokeniser.h"
  48. #include "embedding/juce_ActiveXControlComponent.h"
  49. #include "embedding/juce_NSViewComponent.h"
  50. #include "embedding/juce_UIViewComponent.h"
  51. #include "misc/juce_AppleRemote.h"
  52. #include "misc/juce_BubbleMessageComponent.h"
  53. #include "misc/juce_ColourSelector.h"
  54. #include "misc/juce_KeyMappingEditorComponent.h"
  55. #include "misc/juce_PreferencesPanel.h"
  56. #include "misc/juce_RecentlyOpenedFilesList.h"
  57. #include "misc/juce_SplashScreen.h"
  58. #include "misc/juce_SystemTrayIconComponent.h"
  59. #include "misc/juce_WebBrowserComponent.h"
  60. #include "misc/juce_LiveConstantEditor.h"
  61. }
  62. #endif // JUCE_GUI_EXTRA_H_INCLUDED