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.

134 lines
5.2KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2017 - ROLI Ltd.
  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 5 End-User License
  8. Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
  9. 27th April 2017).
  10. End User License Agreement: www.juce.com/juce-5-licence
  11. Privacy Policy: www.juce.com/juce-5-privacy-policy
  12. Or: You may also use this code under the terms of the GPL v3 (see
  13. www.gnu.org/licenses).
  14. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  15. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  16. DISCLAIMED.
  17. ==============================================================================
  18. */
  19. /*******************************************************************************
  20. The block below describes the properties of this module, and is read by
  21. the Projucer to automatically generate project code that uses it.
  22. For details about the syntax and how to create or use a module, see the
  23. JUCE Module Format.txt file.
  24. BEGIN_JUCE_MODULE_DECLARATION
  25. ID: juce_audio_processors
  26. vendor: juce
  27. version: 5.3.2
  28. name: JUCE audio processor classes
  29. description: Classes for loading and playing VST, AU, LADSPA, or internally-generated audio processors.
  30. website: http://www.juce.com/juce
  31. license: GPL/Commercial
  32. dependencies: juce_gui_extra, juce_audio_basics
  33. OSXFrameworks: CoreAudio CoreMIDI AudioToolbox
  34. iOSFrameworks: AudioToolbox
  35. END_JUCE_MODULE_DECLARATION
  36. *******************************************************************************/
  37. #pragma once
  38. #define JUCE_AUDIO_PROCESSORS_H_INCLUDED
  39. #include <juce_gui_basics/juce_gui_basics.h>
  40. #include <juce_audio_basics/juce_audio_basics.h>
  41. //==============================================================================
  42. /** Config: JUCE_PLUGINHOST_VST
  43. Enables the VST audio plugin hosting classes.
  44. @see VSTPluginFormat, VST3PluginFormat, AudioPluginFormat, AudioPluginFormatManager, JUCE_PLUGINHOST_AU, JUCE_PLUGINHOST_VST3, JUCE_PLUGINHOST_LADSPA
  45. */
  46. #ifndef JUCE_PLUGINHOST_VST
  47. #define JUCE_PLUGINHOST_VST 0
  48. #endif
  49. /** Config: JUCE_PLUGINHOST_VST3
  50. Enables the VST3 audio plugin hosting classes. This requires the Steinberg VST3 SDK to be
  51. installed on your machine.
  52. @see VSTPluginFormat, VST3PluginFormat, AudioPluginFormat, AudioPluginFormatManager, JUCE_PLUGINHOST_VST, JUCE_PLUGINHOST_AU, JUCE_PLUGINHOST_LADSPA
  53. */
  54. #ifndef JUCE_PLUGINHOST_VST3
  55. #define JUCE_PLUGINHOST_VST3 0
  56. #endif
  57. /** Config: JUCE_PLUGINHOST_AU
  58. Enables the AudioUnit plugin hosting classes. This is Mac-only, of course.
  59. @see AudioUnitPluginFormat, AudioPluginFormat, AudioPluginFormatManager, JUCE_PLUGINHOST_VST, JUCE_PLUGINHOST_VST3, JUCE_PLUGINHOST_LADSPA
  60. */
  61. #ifndef JUCE_PLUGINHOST_AU
  62. #define JUCE_PLUGINHOST_AU 0
  63. #endif
  64. /** Config: JUCE_PLUGINHOST_LADSPA
  65. Enables the LADSPA plugin hosting classes. This is Linux-only, of course.
  66. @see LADSPAPluginFormat, AudioPluginFormat, AudioPluginFormatManager, JUCE_PLUGINHOST_VST, JUCE_PLUGINHOST_VST3, JUCE_PLUGINHOST_AU
  67. */
  68. #ifndef JUCE_PLUGINHOST_LADSPA
  69. #define JUCE_PLUGINHOST_LADSPA 0
  70. #endif
  71. #if ! (JUCE_PLUGINHOST_AU || JUCE_PLUGINHOST_VST || JUCE_PLUGINHOST_VST3 || JUCE_PLUGINHOST_LADSPA)
  72. // #error "You need to set either the JUCE_PLUGINHOST_AU and/or JUCE_PLUGINHOST_VST and/or JUCE_PLUGINHOST_VST3 and/or JUCE_PLUGINHOST_LADSPA flags if you're using this module!"
  73. #endif
  74. #if ! (defined (JUCE_SUPPORT_CARBON) || JUCE_64BIT || JUCE_IOS)
  75. #define JUCE_SUPPORT_CARBON 1
  76. #endif
  77. #ifndef JUCE_SUPPORT_LEGACY_AUDIOPROCESSOR
  78. #define JUCE_SUPPORT_LEGACY_AUDIOPROCESSOR 1
  79. #endif
  80. //==============================================================================
  81. #include "processors/juce_AudioProcessorEditor.h"
  82. #include "processors/juce_AudioProcessorListener.h"
  83. #include "processors/juce_AudioProcessorParameter.h"
  84. #include "processors/juce_AudioProcessor.h"
  85. #include "processors/juce_PluginDescription.h"
  86. #include "processors/juce_AudioPluginInstance.h"
  87. #include "processors/juce_AudioProcessorGraph.h"
  88. #include "processors/juce_GenericAudioProcessorEditor.h"
  89. #include "format/juce_AudioPluginFormat.h"
  90. #include "format/juce_AudioPluginFormatManager.h"
  91. #include "scanning/juce_KnownPluginList.h"
  92. #include "format_types/juce_AudioUnitPluginFormat.h"
  93. #include "format_types/juce_LADSPAPluginFormat.h"
  94. #include "format_types/juce_VSTMidiEventList.h"
  95. #include "format_types/juce_VSTPluginFormat.h"
  96. #include "format_types/juce_VST3PluginFormat.h"
  97. #include "scanning/juce_PluginDirectoryScanner.h"
  98. #include "scanning/juce_PluginListComponent.h"
  99. #include "utilities/juce_AudioProcessorParameterWithID.h"
  100. #include "utilities/juce_AudioParameterFloat.h"
  101. #include "utilities/juce_AudioParameterInt.h"
  102. #include "utilities/juce_AudioParameterBool.h"
  103. #include "utilities/juce_AudioParameterChoice.h"
  104. #include "utilities/juce_AudioProcessorValueTreeState.h"