The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
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.

124 lines
4.6KB

  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.3
  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: 17
  32. dependencies: juce_gui_basics
  33. OSXFrameworks: WebKit
  34. iOSFrameworks: WebKit
  35. WeakiOSFrameworks: UserNotifications
  36. WeakMacOSFrameworks: UserNotifications
  37. END_JUCE_MODULE_DECLARATION
  38. *******************************************************************************/
  39. #pragma once
  40. #define JUCE_GUI_EXTRA_H_INCLUDED
  41. #include <juce_gui_basics/juce_gui_basics.h>
  42. //==============================================================================
  43. /** Config: JUCE_WEB_BROWSER
  44. This lets you disable the WebBrowserComponent class.
  45. If you're not using any embedded web-pages, turning this off may reduce your code size.
  46. */
  47. #ifndef JUCE_WEB_BROWSER
  48. #define JUCE_WEB_BROWSER 1
  49. #endif
  50. /** Config: JUCE_USE_WIN_WEBVIEW2
  51. Enables the use of the Microsoft Edge (Chromium) WebView2 browser on Windows,
  52. currently in developer preview.
  53. If using the Projucer, the Microsoft.Web.WebView2 package will be added to the
  54. project solution if this flag is enabled. If you are building using CMake you
  55. will need to manually add the package via the Visual Studio package manager.
  56. In addition to enabling this macro, you will need to use the
  57. WindowsWebView2WebBrowserComponent wrapper - see the documentation of that
  58. class for more details.
  59. */
  60. #ifndef JUCE_USE_WIN_WEBVIEW2
  61. #define JUCE_USE_WIN_WEBVIEW2 0
  62. #endif
  63. /** Config: JUCE_ENABLE_LIVE_CONSTANT_EDITOR
  64. This lets you turn on the JUCE_ENABLE_LIVE_CONSTANT_EDITOR support (desktop only). By default
  65. this will be enabled for debug builds and disabled for release builds. See the documentation
  66. for that macro for more details.
  67. */
  68. #ifndef JUCE_ENABLE_LIVE_CONSTANT_EDITOR
  69. #if JUCE_DEBUG && ! (JUCE_IOS || JUCE_ANDROID)
  70. #define JUCE_ENABLE_LIVE_CONSTANT_EDITOR 1
  71. #endif
  72. #endif
  73. //==============================================================================
  74. #include "documents/juce_FileBasedDocument.h"
  75. #include "code_editor/juce_CodeDocument.h"
  76. #include "code_editor/juce_CodeEditorComponent.h"
  77. #include "code_editor/juce_CodeTokeniser.h"
  78. #include "code_editor/juce_CPlusPlusCodeTokeniser.h"
  79. #include "code_editor/juce_CPlusPlusCodeTokeniserFunctions.h"
  80. #include "code_editor/juce_XMLCodeTokeniser.h"
  81. #include "code_editor/juce_LuaCodeTokeniser.h"
  82. #include "embedding/juce_ActiveXControlComponent.h"
  83. #include "embedding/juce_AndroidViewComponent.h"
  84. #include "embedding/juce_NSViewComponent.h"
  85. #include "embedding/juce_UIViewComponent.h"
  86. #include "embedding/juce_XEmbedComponent.h"
  87. #include "embedding/juce_HWNDComponent.h"
  88. #include "misc/juce_AppleRemote.h"
  89. #include "misc/juce_BubbleMessageComponent.h"
  90. #include "misc/juce_ColourSelector.h"
  91. #include "misc/juce_KeyMappingEditorComponent.h"
  92. #include "misc/juce_PreferencesPanel.h"
  93. #include "misc/juce_PushNotifications.h"
  94. #include "misc/juce_RecentlyOpenedFilesList.h"
  95. #include "misc/juce_SplashScreen.h"
  96. #include "misc/juce_SystemTrayIconComponent.h"
  97. #include "misc/juce_WebBrowserComponent.h"
  98. #include "misc/juce_LiveConstantEditor.h"
  99. #include "misc/juce_AnimatedAppComponent.h"