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.

92 lines
3.2KB

  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_audio_utils
  25. vendor: juce
  26. version: 7.0.9
  27. name: JUCE extra audio utility classes
  28. description: Classes for audio-related GUI and miscellaneous tasks.
  29. website: http://www.juce.com/juce
  30. license: GPL/Commercial
  31. minimumCppStandard: 17
  32. dependencies: 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_KeyboardComponentBase.h"
  63. #include "gui/juce_MidiKeyboardComponent.h"
  64. #include "gui/juce_MPEKeyboardComponent.h"
  65. #include "gui/juce_AudioAppComponent.h"
  66. #include "gui/juce_BluetoothMidiDevicePairingDialogue.h"
  67. #include "players/juce_SoundPlayer.h"
  68. #include "players/juce_AudioProcessorPlayer.h"
  69. #include "audio_cd/juce_AudioCDBurner.h"
  70. #include "audio_cd/juce_AudioCDReader.h"