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.

115 lines
4.3KB

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