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.

114 lines
4.3KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE 6 technical preview.
  4. Copyright (c) 2020 - 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 this technical preview, this file is not subject to commercial licensing.
  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.txt file.
  18. BEGIN_JUCE_MODULE_DECLARATION
  19. ID: juce_gui_extra
  20. vendor: juce
  21. version: 6.0.0
  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. dependencies: juce_gui_basics
  27. OSXFrameworks: WebKit
  28. iOSFrameworks: WebKit
  29. END_JUCE_MODULE_DECLARATION
  30. *******************************************************************************/
  31. #pragma once
  32. #define JUCE_GUI_EXTRA_H_INCLUDED
  33. #include <juce_gui_basics/juce_gui_basics.h>
  34. //==============================================================================
  35. /** Config: JUCE_WEB_BROWSER
  36. This lets you disable the WebBrowserComponent class.
  37. If you're not using any embedded web-pages, turning this off may reduce your code size.
  38. */
  39. #ifndef JUCE_WEB_BROWSER
  40. #define JUCE_WEB_BROWSER 1
  41. #endif
  42. /** Config: JUCE_USE_WINRT_WEBVIEW
  43. Enables the use of the EdgeHTML browser engine on Windows. This will use
  44. the Windows Runtime API on Windows 10 version 1809 (October 2018 Update)
  45. and later. If you enable this flag then older versions of Windows will
  46. automatically fall back to using the regualar Win32 web view.
  47. You will need version 10.0.14393.0 of the Windows Standalone SDK to compile
  48. and you may need to add the path to the WinRT headers. The path to the
  49. headers will be something similar to
  50. "C:\Program Files (x86)\Windows Kits\10\Include\10.0.14393.0\winrt".
  51. */
  52. #ifndef JUCE_USE_WINRT_WEBVIEW
  53. #define JUCE_USE_WINRT_WEBVIEW 0
  54. #endif
  55. /** Config: JUCE_ENABLE_LIVE_CONSTANT_EDITOR
  56. This lets you turn on the JUCE_ENABLE_LIVE_CONSTANT_EDITOR support (desktop only). By default
  57. this will be enabled for debug builds and disabled for release builds. See the documentation
  58. for that macro for more details.
  59. */
  60. #ifndef JUCE_ENABLE_LIVE_CONSTANT_EDITOR
  61. #if JUCE_DEBUG && ! (JUCE_IOS || JUCE_ANDROID)
  62. #define JUCE_ENABLE_LIVE_CONSTANT_EDITOR 1
  63. #endif
  64. #endif
  65. //==============================================================================
  66. #include "documents/juce_FileBasedDocument.h"
  67. #include "code_editor/juce_CodeDocument.h"
  68. #include "code_editor/juce_CodeEditorComponent.h"
  69. #include "code_editor/juce_CodeTokeniser.h"
  70. #include "code_editor/juce_CPlusPlusCodeTokeniser.h"
  71. #include "code_editor/juce_CPlusPlusCodeTokeniserFunctions.h"
  72. #include "code_editor/juce_XMLCodeTokeniser.h"
  73. #include "code_editor/juce_LuaCodeTokeniser.h"
  74. #include "embedding/juce_ActiveXControlComponent.h"
  75. #include "embedding/juce_AndroidViewComponent.h"
  76. #include "embedding/juce_NSViewComponent.h"
  77. #include "embedding/juce_UIViewComponent.h"
  78. #include "embedding/juce_XEmbedComponent.h"
  79. #include "embedding/juce_ScopedDPIAwarenessDisabler.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"