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.

85 lines
2.9KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE 7 technical preview.
  4. Copyright (c) 2022 - Raw Material Software Limited
  5. You may use this code under the terms of the GPL v3
  6. (see www.gnu.org/licenses).
  7. For the technical preview this file cannot be licensed commercially.
  8. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  9. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  10. DISCLAIMED.
  11. ==============================================================================
  12. */
  13. /*******************************************************************************
  14. The block below describes the properties of this module, and is read by
  15. the Projucer to automatically generate project code that uses it.
  16. For details about the syntax and how to create or use a module, see the
  17. JUCE Module Format.md file.
  18. BEGIN_JUCE_MODULE_DECLARATION
  19. ID: juce_audio_utils
  20. vendor: juce
  21. version: 6.1.6
  22. name: JUCE extra audio utility classes
  23. description: Classes for audio-related GUI and miscellaneous tasks.
  24. website: http://www.juce.com/juce
  25. license: GPL/Commercial
  26. minimumCppStandard: 14
  27. dependencies: juce_audio_processors, juce_audio_formats, juce_audio_devices
  28. OSXFrameworks: CoreAudioKit DiscRecording
  29. iOSFrameworks: CoreAudioKit
  30. END_JUCE_MODULE_DECLARATION
  31. *******************************************************************************/
  32. #pragma once
  33. #define JUCE_AUDIO_UTILS_H_INCLUDED
  34. #include <juce_gui_basics/juce_gui_basics.h>
  35. #include <juce_audio_devices/juce_audio_devices.h>
  36. #include <juce_audio_formats/juce_audio_formats.h>
  37. #include <juce_audio_processors/juce_audio_processors.h>
  38. //==============================================================================
  39. /** Config: JUCE_USE_CDREADER
  40. Enables the AudioCDReader class (on supported platforms).
  41. */
  42. #ifndef JUCE_USE_CDREADER
  43. #define JUCE_USE_CDREADER 0
  44. #endif
  45. /** Config: JUCE_USE_CDBURNER
  46. Enables the AudioCDBurner class (on supported platforms).
  47. */
  48. #ifndef JUCE_USE_CDBURNER
  49. #define JUCE_USE_CDBURNER 0
  50. #endif
  51. //==============================================================================
  52. #include "gui/juce_AudioDeviceSelectorComponent.h"
  53. #include "gui/juce_AudioThumbnailBase.h"
  54. #include "gui/juce_AudioThumbnail.h"
  55. #include "gui/juce_AudioThumbnailCache.h"
  56. #include "gui/juce_AudioVisualiserComponent.h"
  57. #include "gui/juce_KeyboardComponentBase.h"
  58. #include "gui/juce_MidiKeyboardComponent.h"
  59. #include "gui/juce_MPEKeyboardComponent.h"
  60. #include "gui/juce_AudioAppComponent.h"
  61. #include "gui/juce_BluetoothMidiDevicePairingDialogue.h"
  62. #include "players/juce_SoundPlayer.h"
  63. #include "players/juce_AudioProcessorPlayer.h"
  64. #include "audio_cd/juce_AudioCDBurner.h"
  65. #include "audio_cd/juce_AudioCDReader.h"