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.

89 lines
3.1KB

  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_utils
  26. vendor: juce
  27. version: 5.4.3
  28. name: JUCE extra audio utility classes
  29. description: Classes for audio-related GUI and miscellaneous tasks.
  30. website: http://www.juce.com/juce
  31. license: GPL/Commercial
  32. dependencies: juce_gui_extra, juce_audio_processors, juce_audio_formats, juce_audio_devices
  33. OSXFrameworks: CoreAudioKit DiscRecording
  34. iOSFrameworks: CoreAudioKit
  35. END_JUCE_MODULE_DECLARATION
  36. *******************************************************************************/
  37. #pragma once
  38. #define JUCE_AUDIO_UTILS_H_INCLUDED
  39. #include <juce_gui_basics/juce_gui_basics.h>
  40. #include <juce_audio_devices/juce_audio_devices.h>
  41. #include <juce_audio_formats/juce_audio_formats.h>
  42. #include <juce_audio_processors/juce_audio_processors.h>
  43. //==============================================================================
  44. /** Config: JUCE_USE_CDREADER
  45. Enables the AudioCDReader class (on supported platforms).
  46. */
  47. #ifndef JUCE_USE_CDREADER
  48. #define JUCE_USE_CDREADER 0
  49. #endif
  50. /** Config: JUCE_USE_CDBURNER
  51. Enables the AudioCDBurner class (on supported platforms).
  52. */
  53. #ifndef JUCE_USE_CDBURNER
  54. #define JUCE_USE_CDBURNER 0
  55. #endif
  56. //==============================================================================
  57. #include "gui/juce_AudioDeviceSelectorComponent.h"
  58. #include "gui/juce_AudioThumbnailBase.h"
  59. #include "gui/juce_AudioThumbnail.h"
  60. #include "gui/juce_AudioThumbnailCache.h"
  61. #include "gui/juce_AudioVisualiserComponent.h"
  62. #include "gui/juce_MidiKeyboardComponent.h"
  63. #include "gui/juce_AudioAppComponent.h"
  64. #include "gui/juce_BluetoothMidiDevicePairingDialogue.h"
  65. #include "players/juce_SoundPlayer.h"
  66. #include "players/juce_AudioProcessorPlayer.h"
  67. #include "audio_cd/juce_AudioCDBurner.h"
  68. #include "audio_cd/juce_AudioCDReader.h"