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.

104 lines
3.6KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2015 - ROLI Ltd.
  5. Permission is granted to use this software under the terms of either:
  6. a) the GPL v2 (or any later version)
  7. b) the Affero GPL v3
  8. Details of these licenses can be found at: www.gnu.org/licenses
  9. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  12. ------------------------------------------------------------------------------
  13. To release a closed-source product which uses JUCE, commercial licenses are
  14. available: visit www.juce.com for more information.
  15. ==============================================================================
  16. */
  17. /*******************************************************************************
  18. The block below describes the properties of this module, and is read by
  19. the Projucer to automatically generate project code that uses it.
  20. For details about the syntax and how to create or use a module, see the
  21. JUCE Module Format.txt file.
  22. BEGIN_JUCE_MODULE_DECLARATION
  23. ID: juce_gui_extra
  24. vendor: juce
  25. version: 4.3.0
  26. name: JUCE extended GUI classes
  27. description: Miscellaneous GUI classes for specialised tasks.
  28. website: http://www.juce.com/juce
  29. license: GPL/Commercial
  30. dependencies: juce_gui_basics
  31. OSXFrameworks: WebKit
  32. END_JUCE_MODULE_DECLARATION
  33. *******************************************************************************/
  34. #ifndef JUCE_GUI_EXTRA_H_INCLUDED
  35. #define JUCE_GUI_EXTRA_H_INCLUDED
  36. #include <juce_gui_basics/juce_gui_basics.h>
  37. //==============================================================================
  38. /** Config: JUCE_WEB_BROWSER
  39. This lets you disable the WebBrowserComponent class (Mac and Windows).
  40. If you're not using any embedded web-pages, turning this off may reduce your code size.
  41. */
  42. #ifndef JUCE_WEB_BROWSER
  43. #define JUCE_WEB_BROWSER 1
  44. #endif
  45. /** Config: JUCE_ENABLE_LIVE_CONSTANT_EDITOR
  46. This lets you turn on the JUCE_ENABLE_LIVE_CONSTANT_EDITOR support. See the documentation
  47. for that macro for more details.
  48. */
  49. #ifndef JUCE_ENABLE_LIVE_CONSTANT_EDITOR
  50. #if JUCE_DEBUG
  51. #define JUCE_ENABLE_LIVE_CONSTANT_EDITOR 1
  52. #endif
  53. #endif
  54. //==============================================================================
  55. namespace juce
  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 "misc/juce_AppleRemote.h"
  69. #include "misc/juce_BubbleMessageComponent.h"
  70. #include "misc/juce_ColourSelector.h"
  71. #include "misc/juce_KeyMappingEditorComponent.h"
  72. #include "misc/juce_PreferencesPanel.h"
  73. #include "misc/juce_RecentlyOpenedFilesList.h"
  74. #include "misc/juce_SplashScreen.h"
  75. #include "misc/juce_SystemTrayIconComponent.h"
  76. #include "misc/juce_WebBrowserComponent.h"
  77. #include "misc/juce_LiveConstantEditor.h"
  78. #include "misc/juce_AnimatedAppComponent.h"
  79. }
  80. #endif // JUCE_GUI_EXTRA_H_INCLUDED