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.

100 lines
3.6KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2017 - ROLI Ltd.
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. By using JUCE, you agree to the terms of both the JUCE 5 End-User License
  8. Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
  9. 27th April 2017).
  10. End User License Agreement: www.juce.com/juce-5-licence
  11. Privacy Policy: www.juce.com/juce-5-privacy-policy
  12. Or: You may also use this code under the terms of the GPL v3 (see
  13. www.gnu.org/licenses).
  14. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  15. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  16. DISCLAIMED.
  17. ==============================================================================
  18. */
  19. /*******************************************************************************
  20. The block below describes the properties of this module, and is read by
  21. the Projucer to automatically generate project code that uses it.
  22. For details about the syntax and how to create or use a module, see the
  23. JUCE Module Format.txt file.
  24. BEGIN_JUCE_MODULE_DECLARATION
  25. ID: juce_gui_extra
  26. vendor: juce
  27. version: 5.1.2
  28. name: JUCE extended GUI classes
  29. description: Miscellaneous GUI classes for specialised tasks.
  30. website: http://www.juce.com/juce
  31. license: GPL/Commercial
  32. dependencies: juce_gui_basics
  33. OSXFrameworks: WebKit
  34. END_JUCE_MODULE_DECLARATION
  35. *******************************************************************************/
  36. #pragma once
  37. #define JUCE_GUI_EXTRA_H_INCLUDED
  38. #include <juce_gui_basics/juce_gui_basics.h>
  39. //==============================================================================
  40. /** Config: JUCE_WEB_BROWSER
  41. This lets you disable the WebBrowserComponent class (Mac and Windows).
  42. If you're not using any embedded web-pages, turning this off may reduce your code size.
  43. */
  44. #ifndef JUCE_WEB_BROWSER
  45. #define JUCE_WEB_BROWSER 1
  46. #endif
  47. /** Config: JUCE_ENABLE_LIVE_CONSTANT_EDITOR
  48. This lets you turn on the JUCE_ENABLE_LIVE_CONSTANT_EDITOR support. See the documentation
  49. for that macro for more details.
  50. */
  51. #ifndef JUCE_ENABLE_LIVE_CONSTANT_EDITOR
  52. #if JUCE_DEBUG
  53. #define JUCE_ENABLE_LIVE_CONSTANT_EDITOR 1
  54. #endif
  55. #endif
  56. //==============================================================================
  57. #include "documents/juce_FileBasedDocument.h"
  58. #include "code_editor/juce_CodeDocument.h"
  59. #include "code_editor/juce_CodeEditorComponent.h"
  60. #include "code_editor/juce_CodeTokeniser.h"
  61. #include "code_editor/juce_CPlusPlusCodeTokeniser.h"
  62. #include "code_editor/juce_CPlusPlusCodeTokeniserFunctions.h"
  63. #include "code_editor/juce_XMLCodeTokeniser.h"
  64. #include "code_editor/juce_LuaCodeTokeniser.h"
  65. #include "embedding/juce_ActiveXControlComponent.h"
  66. #include "embedding/juce_NSViewComponent.h"
  67. #include "embedding/juce_UIViewComponent.h"
  68. #include "embedding/juce_XEmbedComponent.h"
  69. #include "misc/juce_AppleRemote.h"
  70. #include "misc/juce_BubbleMessageComponent.h"
  71. #include "misc/juce_ColourSelector.h"
  72. #include "misc/juce_KeyMappingEditorComponent.h"
  73. #include "misc/juce_PreferencesPanel.h"
  74. #include "misc/juce_RecentlyOpenedFilesList.h"
  75. #include "misc/juce_SplashScreen.h"
  76. #include "misc/juce_SystemTrayIconComponent.h"
  77. #include "misc/juce_WebBrowserComponent.h"
  78. #include "misc/juce_LiveConstantEditor.h"
  79. #include "misc/juce_AnimatedAppComponent.h"