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.

91 lines
2.9KB

  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. The code included in this file is provided under the terms of the ISC license
  8. http://www.isc.org/downloads/software-support-policy/isc-license. Permission
  9. To use, copy, modify, and/or distribute this software for any purpose with or
  10. without fee is hereby granted provided that the above copyright notice and
  11. this permission notice appear in all copies.
  12. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  13. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  14. DISCLAIMED.
  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_blocks_basics
  24. vendor: juce
  25. version: 5.3.2
  26. name: Provides low-level control over ROLI BLOCKS devices
  27. description: JUCE wrapper for low-level control over ROLI BLOCKS devices.
  28. website: http://developer.roli.com
  29. license: ISC
  30. dependencies: juce_events juce_audio_devices
  31. END_JUCE_MODULE_DECLARATION
  32. *******************************************************************************/
  33. #pragma once
  34. //==============================================================================
  35. #include <juce_events/juce_events.h>
  36. #include <juce_audio_devices/juce_audio_devices.h>
  37. #if ! JUCE_HAS_CONSTEXPR
  38. #ifndef JUCE_DEMO_RUNNER
  39. #error "The juce_blocks_basics module requires a compiler that supports constexpr"
  40. #endif
  41. #else
  42. namespace juce
  43. {
  44. class TouchSurface;
  45. class LEDGrid;
  46. class LEDRow;
  47. class StatusLight;
  48. class LightRing;
  49. class ControlButton;
  50. }
  51. #include "blocks/juce_Block.h"
  52. #include "blocks/juce_TouchSurface.h"
  53. #include "blocks/juce_LEDGrid.h"
  54. #include "blocks/juce_LEDRow.h"
  55. #include "blocks/juce_ControlButton.h"
  56. #include "blocks/juce_TouchList.h"
  57. #include "blocks/juce_StatusLight.h"
  58. #include "topology/juce_Topology.h"
  59. #include "topology/juce_TopologySource.h"
  60. #include "topology/juce_PhysicalTopologySource.h"
  61. #include "topology/juce_RuleBasedTopologySource.h"
  62. #include "visualisers/juce_DrumPadLEDProgram.h"
  63. #include "visualisers/juce_BitmapLEDProgram.h"
  64. namespace juce
  65. {
  66. #include "littlefoot/juce_LittleFootRunner.h"
  67. #include "littlefoot/juce_LittleFootCompiler.h"
  68. #include "littlefoot/juce_LittleFootRemoteHeap.h"
  69. }
  70. #endif