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.

122 lines
4.5KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2022 - Raw Material Software Limited
  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 7 End-User License
  8. Agreement and JUCE Privacy Policy.
  9. End User License Agreement: www.juce.com/juce-7-licence
  10. Privacy Policy: www.juce.com/juce-privacy-policy
  11. Or: You may also use this code under the terms of the GPL v3 (see
  12. www.gnu.org/licenses).
  13. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  14. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  15. DISCLAIMED.
  16. ==============================================================================
  17. */
  18. /*******************************************************************************
  19. The block below describes the properties of this module, and is read by
  20. the Projucer to automatically generate project code that uses it.
  21. For details about the syntax and how to create or use a module, see the
  22. JUCE Module Format.md file.
  23. BEGIN_JUCE_MODULE_DECLARATION
  24. ID: juce_gui_extra
  25. vendor: juce
  26. version: 7.0.1
  27. name: JUCE extended GUI classes
  28. description: Miscellaneous GUI classes for specialised tasks.
  29. website: http://www.juce.com/juce
  30. license: GPL/Commercial
  31. minimumCppStandard: 14
  32. dependencies: juce_gui_basics
  33. OSXFrameworks: WebKit
  34. iOSFrameworks: WebKit
  35. END_JUCE_MODULE_DECLARATION
  36. *******************************************************************************/
  37. #pragma once
  38. #define JUCE_GUI_EXTRA_H_INCLUDED
  39. #include <juce_gui_basics/juce_gui_basics.h>
  40. //==============================================================================
  41. /** Config: JUCE_WEB_BROWSER
  42. This lets you disable the WebBrowserComponent class.
  43. If you're not using any embedded web-pages, turning this off may reduce your code size.
  44. */
  45. #ifndef JUCE_WEB_BROWSER
  46. #define JUCE_WEB_BROWSER 1
  47. #endif
  48. /** Config: JUCE_USE_WIN_WEBVIEW2
  49. Enables the use of the Microsoft Edge (Chromium) WebView2 browser on Windows,
  50. currently in developer preview.
  51. If using the Projucer, the Microsoft.Web.WebView2 package will be added to the
  52. project solution if this flag is enabled. If you are building using CMake you
  53. will need to manually add the package via the Visual Studio package manager.
  54. In addition to enabling this macro, you will need to use the
  55. WindowsWebView2WebBrowserComponent wrapper - see the documentation of that
  56. class for more details.
  57. */
  58. #ifndef JUCE_USE_WIN_WEBVIEW2
  59. #define JUCE_USE_WIN_WEBVIEW2 0
  60. #endif
  61. /** Config: JUCE_ENABLE_LIVE_CONSTANT_EDITOR
  62. This lets you turn on the JUCE_ENABLE_LIVE_CONSTANT_EDITOR support (desktop only). By default
  63. this will be enabled for debug builds and disabled for release builds. See the documentation
  64. for that macro for more details.
  65. */
  66. #ifndef JUCE_ENABLE_LIVE_CONSTANT_EDITOR
  67. #if JUCE_DEBUG && ! (JUCE_IOS || JUCE_ANDROID)
  68. #define JUCE_ENABLE_LIVE_CONSTANT_EDITOR 1
  69. #endif
  70. #endif
  71. //==============================================================================
  72. #include "documents/juce_FileBasedDocument.h"
  73. #include "code_editor/juce_CodeDocument.h"
  74. #include "code_editor/juce_CodeEditorComponent.h"
  75. #include "code_editor/juce_CodeTokeniser.h"
  76. #include "code_editor/juce_CPlusPlusCodeTokeniser.h"
  77. #include "code_editor/juce_CPlusPlusCodeTokeniserFunctions.h"
  78. #include "code_editor/juce_XMLCodeTokeniser.h"
  79. #include "code_editor/juce_LuaCodeTokeniser.h"
  80. #include "embedding/juce_ActiveXControlComponent.h"
  81. #include "embedding/juce_AndroidViewComponent.h"
  82. #include "embedding/juce_NSViewComponent.h"
  83. #include "embedding/juce_UIViewComponent.h"
  84. #include "embedding/juce_XEmbedComponent.h"
  85. #include "embedding/juce_HWNDComponent.h"
  86. #include "misc/juce_AppleRemote.h"
  87. #include "misc/juce_BubbleMessageComponent.h"
  88. #include "misc/juce_ColourSelector.h"
  89. #include "misc/juce_KeyMappingEditorComponent.h"
  90. #include "misc/juce_PreferencesPanel.h"
  91. #include "misc/juce_PushNotifications.h"
  92. #include "misc/juce_RecentlyOpenedFilesList.h"
  93. #include "misc/juce_SplashScreen.h"
  94. #include "misc/juce_SystemTrayIconComponent.h"
  95. #include "misc/juce_WebBrowserComponent.h"
  96. #include "misc/juce_LiveConstantEditor.h"
  97. #include "misc/juce_AnimatedAppComponent.h"