├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── Dockerfile ├── JUCE ├── BREAKING-CHANGES.txt ├── CMakeLists.txt ├── ChangeList.txt ├── LICENSE.md ├── README.md ├── docs │ ├── CMake API.md │ ├── JUCE Module Format.md │ ├── Linux Dependencies.md │ ├── README.md │ └── doxygen │ │ ├── Doxyfile │ │ ├── Makefile │ │ ├── make.bat │ │ └── process_source_files.py ├── examples │ ├── Assets │ │ ├── AudioLiveScrollingDisplay.h │ │ ├── Box2DTests │ │ │ ├── AddPair.h │ │ │ ├── ApplyForce.h │ │ │ ├── BodyTypes.h │ │ │ ├── Breakable.h │ │ │ ├── Bridge.h │ │ │ ├── BulletTest.h │ │ │ ├── Cantilever.h │ │ │ ├── Car.h │ │ │ ├── Chain.h │ │ │ ├── CharacterCollision.h │ │ │ ├── CollisionFiltering.h │ │ │ ├── CollisionProcessing.h │ │ │ ├── CompoundShapes.h │ │ │ ├── Confined.h │ │ │ ├── ContinuousTest.h │ │ │ ├── DistanceTest.h │ │ │ ├── Dominos.h │ │ │ ├── DumpShell.h │ │ │ ├── DynamicTreeTest.h │ │ │ ├── EdgeShapes.h │ │ │ ├── EdgeTest.h │ │ │ ├── Gears.h │ │ │ ├── OneSidedPlatform.h │ │ │ ├── Pinball.h │ │ │ ├── PolyCollision.h │ │ │ ├── PolyShapes.h │ │ │ ├── Prismatic.h │ │ │ ├── Pulleys.h │ │ │ ├── Pyramid.h │ │ │ ├── RayCast.h │ │ │ ├── Revolute.h │ │ │ ├── Rope.h │ │ │ ├── RopeJoint.h │ │ │ ├── SensorTest.h │ │ │ ├── ShapeEditing.h │ │ │ ├── SliderCrank.h │ │ │ ├── SphereStack.h │ │ │ ├── TestEntries.cpp │ │ │ ├── TheoJansen.h │ │ │ ├── Tiles.h │ │ │ ├── TimeOfImpact.h │ │ │ ├── Tumbler.h │ │ │ ├── VaryingFriction.h │ │ │ ├── VaryingRestitution.h │ │ │ ├── VerticalStack.h │ │ │ └── Web.h │ │ ├── DSPDemos_Common.h │ │ ├── DemoUtilities.h │ │ ├── Notifications │ │ │ ├── images │ │ │ │ ├── ic_stat_name.png │ │ │ │ ├── ic_stat_name10.png │ │ │ │ ├── ic_stat_name2.png │ │ │ │ ├── ic_stat_name3.png │ │ │ │ ├── ic_stat_name4.png │ │ │ │ ├── ic_stat_name5.png │ │ │ │ ├── ic_stat_name6.png │ │ │ │ ├── ic_stat_name7.png │ │ │ │ ├── ic_stat_name8.png │ │ │ │ └── ic_stat_name9.png │ │ │ └── sounds │ │ │ │ ├── demonstrative.caf │ │ │ │ ├── demonstrative.mp3 │ │ │ │ ├── isntit.caf │ │ │ │ ├── isntit.mp3 │ │ │ │ ├── jinglebellssms.caf │ │ │ │ ├── jinglebellssms.mp3 │ │ │ │ ├── served.caf │ │ │ │ ├── served.mp3 │ │ │ │ ├── solemn.caf │ │ │ │ └── solemn.mp3 │ │ ├── Purchases │ │ │ ├── Ed.png │ │ │ ├── Ed0.ogg │ │ │ ├── Ed1.ogg │ │ │ ├── Ed2.ogg │ │ │ ├── Fabian.png │ │ │ ├── Fabian0.ogg │ │ │ ├── Fabian1.ogg │ │ │ ├── Fabian2.ogg │ │ │ ├── JB.png │ │ │ ├── JB0.ogg │ │ │ ├── JB1.ogg │ │ │ ├── JB2.ogg │ │ │ ├── Jules.png │ │ │ ├── Jules0.ogg │ │ │ ├── Jules1.ogg │ │ │ ├── Jules2.ogg │ │ │ ├── Lukasz.png │ │ │ ├── Lukasz0.ogg │ │ │ ├── Lukasz1.ogg │ │ │ ├── Lukasz2.ogg │ │ │ ├── Robot.png │ │ │ ├── Robot0.ogg │ │ │ ├── Robot1.ogg │ │ │ ├── Robot2.ogg │ │ │ └── icon.png │ │ ├── Signing │ │ │ ├── InAppPurchase.keystore │ │ │ └── README.txt │ │ ├── WavefrontObjParser.h │ │ ├── cassette_recorder.wav │ │ ├── cello.wav │ │ ├── demo table data.xml │ │ ├── google-services.json │ │ ├── guitar_amp.wav │ │ ├── icons.zip │ │ ├── juce_icon.png │ │ ├── juce_icon_template.png │ │ ├── juce_module_info │ │ ├── portmeirion.jpg │ │ ├── power.png │ │ ├── proaudio.path │ │ ├── reverb_ir.wav │ │ ├── singing.ogg │ │ ├── tile_background.png │ │ └── treedemo.xml │ ├── Audio │ │ ├── AudioAppDemo.h │ │ ├── AudioLatencyDemo.h │ │ ├── AudioPlaybackDemo.h │ │ ├── AudioRecordingDemo.h │ │ ├── AudioSettingsDemo.h │ │ ├── AudioSynthesiserDemo.h │ │ ├── CMakeLists.txt │ │ ├── MPEDemo.h │ │ ├── MidiDemo.h │ │ ├── PluckedStringsDemo.h │ │ └── SimpleFFTDemo.h │ ├── BLOCKS │ │ ├── BlocksDrawingDemo.h │ │ ├── BlocksMonitorDemo.h │ │ ├── BlocksSynthDemo.h │ │ └── CMakeLists.txt │ ├── CMake │ │ ├── AudioPlugin │ │ │ ├── CMakeLists.txt │ │ │ ├── PluginEditor.cpp │ │ │ ├── PluginEditor.h │ │ │ ├── PluginProcessor.cpp │ │ │ └── PluginProcessor.h │ │ ├── CMakeLists.txt │ │ ├── ConsoleApp │ │ │ ├── CMakeLists.txt │ │ │ └── Main.cpp │ │ └── GuiApp │ │ │ ├── CMakeLists.txt │ │ │ ├── Main.cpp │ │ │ ├── MainComponent.cpp │ │ │ └── MainComponent.h │ ├── CMakeLists.txt │ ├── DSP │ │ ├── CMakeLists.txt │ │ ├── ConvolutionDemo.h │ │ ├── FIRFilterDemo.h │ │ ├── GainDemo.h │ │ ├── IIRFilterDemo.h │ │ ├── OscillatorDemo.h │ │ ├── OverdriveDemo.h │ │ ├── SIMDRegisterDemo.h │ │ ├── StateVariableFilterDemo.h │ │ └── WaveShaperTanhDemo.h │ ├── DemoRunner │ │ ├── Builds │ │ │ ├── Android │ │ │ │ ├── app │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── build.gradle │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── AudioLiveScrollingDisplay.h │ │ │ │ │ │ ├── Box2DTests │ │ │ │ │ │ │ ├── AddPair.h │ │ │ │ │ │ │ ├── ApplyForce.h │ │ │ │ │ │ │ ├── BodyTypes.h │ │ │ │ │ │ │ ├── Breakable.h │ │ │ │ │ │ │ ├── Bridge.h │ │ │ │ │ │ │ ├── BulletTest.h │ │ │ │ │ │ │ ├── Cantilever.h │ │ │ │ │ │ │ ├── Car.h │ │ │ │ │ │ │ ├── Chain.h │ │ │ │ │ │ │ ├── CharacterCollision.h │ │ │ │ │ │ │ ├── CollisionFiltering.h │ │ │ │ │ │ │ ├── CollisionProcessing.h │ │ │ │ │ │ │ ├── CompoundShapes.h │ │ │ │ │ │ │ ├── Confined.h │ │ │ │ │ │ │ ├── ContinuousTest.h │ │ │ │ │ │ │ ├── DistanceTest.h │ │ │ │ │ │ │ ├── Dominos.h │ │ │ │ │ │ │ ├── DumpShell.h │ │ │ │ │ │ │ ├── DynamicTreeTest.h │ │ │ │ │ │ │ ├── EdgeShapes.h │ │ │ │ │ │ │ ├── EdgeTest.h │ │ │ │ │ │ │ ├── Gears.h │ │ │ │ │ │ │ ├── OneSidedPlatform.h │ │ │ │ │ │ │ ├── Pinball.h │ │ │ │ │ │ │ ├── PolyCollision.h │ │ │ │ │ │ │ ├── PolyShapes.h │ │ │ │ │ │ │ ├── Prismatic.h │ │ │ │ │ │ │ ├── Pulleys.h │ │ │ │ │ │ │ ├── Pyramid.h │ │ │ │ │ │ │ ├── RayCast.h │ │ │ │ │ │ │ ├── Revolute.h │ │ │ │ │ │ │ ├── Rope.h │ │ │ │ │ │ │ ├── RopeJoint.h │ │ │ │ │ │ │ ├── SensorTest.h │ │ │ │ │ │ │ ├── ShapeEditing.h │ │ │ │ │ │ │ ├── SliderCrank.h │ │ │ │ │ │ │ ├── SphereStack.h │ │ │ │ │ │ │ ├── TestEntries.cpp │ │ │ │ │ │ │ ├── TheoJansen.h │ │ │ │ │ │ │ ├── Tiles.h │ │ │ │ │ │ │ ├── TimeOfImpact.h │ │ │ │ │ │ │ ├── Tumbler.h │ │ │ │ │ │ │ ├── VaryingFriction.h │ │ │ │ │ │ │ ├── VaryingRestitution.h │ │ │ │ │ │ │ ├── VerticalStack.h │ │ │ │ │ │ │ └── Web.h │ │ │ │ │ │ ├── DSPDemos_Common.h │ │ │ │ │ │ ├── DemoUtilities.h │ │ │ │ │ │ ├── Notifications │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── ic_stat_name.png │ │ │ │ │ │ │ │ ├── ic_stat_name10.png │ │ │ │ │ │ │ │ ├── ic_stat_name2.png │ │ │ │ │ │ │ │ ├── ic_stat_name3.png │ │ │ │ │ │ │ │ ├── ic_stat_name4.png │ │ │ │ │ │ │ │ ├── ic_stat_name5.png │ │ │ │ │ │ │ │ ├── ic_stat_name6.png │ │ │ │ │ │ │ │ ├── ic_stat_name7.png │ │ │ │ │ │ │ │ ├── ic_stat_name8.png │ │ │ │ │ │ │ │ └── ic_stat_name9.png │ │ │ │ │ │ │ └── sounds │ │ │ │ │ │ │ │ ├── demonstrative.caf │ │ │ │ │ │ │ │ ├── demonstrative.mp3 │ │ │ │ │ │ │ │ ├── isntit.caf │ │ │ │ │ │ │ │ ├── isntit.mp3 │ │ │ │ │ │ │ │ ├── jinglebellssms.caf │ │ │ │ │ │ │ │ ├── jinglebellssms.mp3 │ │ │ │ │ │ │ │ ├── served.caf │ │ │ │ │ │ │ │ ├── served.mp3 │ │ │ │ │ │ │ │ ├── solemn.caf │ │ │ │ │ │ │ │ └── solemn.mp3 │ │ │ │ │ │ ├── Purchases │ │ │ │ │ │ │ ├── Ed.png │ │ │ │ │ │ │ ├── Ed0.ogg │ │ │ │ │ │ │ ├── Ed1.ogg │ │ │ │ │ │ │ ├── Ed2.ogg │ │ │ │ │ │ │ ├── Fabian.png │ │ │ │ │ │ │ ├── Fabian0.ogg │ │ │ │ │ │ │ ├── Fabian1.ogg │ │ │ │ │ │ │ ├── Fabian2.ogg │ │ │ │ │ │ │ ├── JB.png │ │ │ │ │ │ │ ├── JB0.ogg │ │ │ │ │ │ │ ├── JB1.ogg │ │ │ │ │ │ │ ├── JB2.ogg │ │ │ │ │ │ │ ├── Jules.png │ │ │ │ │ │ │ ├── Jules0.ogg │ │ │ │ │ │ │ ├── Jules1.ogg │ │ │ │ │ │ │ ├── Jules2.ogg │ │ │ │ │ │ │ ├── Lukasz.png │ │ │ │ │ │ │ ├── Lukasz0.ogg │ │ │ │ │ │ │ ├── Lukasz1.ogg │ │ │ │ │ │ │ ├── Lukasz2.ogg │ │ │ │ │ │ │ ├── Robot.png │ │ │ │ │ │ │ ├── Robot0.ogg │ │ │ │ │ │ │ ├── Robot1.ogg │ │ │ │ │ │ │ ├── Robot2.ogg │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── Signing │ │ │ │ │ │ │ ├── InAppPurchase.keystore │ │ │ │ │ │ │ └── README.txt │ │ │ │ │ │ ├── WavefrontObjParser.h │ │ │ │ │ │ ├── cassette_recorder.wav │ │ │ │ │ │ ├── cello.wav │ │ │ │ │ │ ├── demo table data.xml │ │ │ │ │ │ ├── google-services.json │ │ │ │ │ │ ├── guitar_amp.wav │ │ │ │ │ │ ├── icons.zip │ │ │ │ │ │ ├── juce_icon.png │ │ │ │ │ │ ├── juce_icon_template.png │ │ │ │ │ │ ├── juce_module_info │ │ │ │ │ │ ├── portmeirion.jpg │ │ │ │ │ │ ├── power.png │ │ │ │ │ │ ├── proaudio.path │ │ │ │ │ │ ├── reverb_ir.wav │ │ │ │ │ │ ├── singing.ogg │ │ │ │ │ │ ├── tile_background.png │ │ │ │ │ │ └── treedemo.xml │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ └── drawable-xhdpi │ │ │ │ │ │ └── icon.png │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── LICENSE-for-gradlewrapper.txt │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ │ ├── LinuxMakefile │ │ │ │ └── Makefile │ │ │ ├── MacOSX │ │ │ │ ├── DemoRunner.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── Icon.icns │ │ │ │ ├── Info-App.plist │ │ │ │ └── RecentFilesMenuTemplate.nib │ │ │ ├── VisualStudio2015 │ │ │ │ ├── DemoRunner.sln │ │ │ │ ├── DemoRunner_App.vcxproj │ │ │ │ ├── DemoRunner_App.vcxproj.filters │ │ │ │ ├── icon.ico │ │ │ │ └── resources.rc │ │ │ ├── VisualStudio2017 │ │ │ │ ├── DemoRunner.sln │ │ │ │ ├── DemoRunner_App.vcxproj │ │ │ │ ├── DemoRunner_App.vcxproj.filters │ │ │ │ ├── icon.ico │ │ │ │ └── resources.rc │ │ │ ├── VisualStudio2019 │ │ │ │ ├── DemoRunner.sln │ │ │ │ ├── DemoRunner_App.vcxproj │ │ │ │ ├── DemoRunner_App.vcxproj.filters │ │ │ │ ├── icon.ico │ │ │ │ └── resources.rc │ │ │ └── iOS │ │ │ │ ├── App.entitlements │ │ │ │ ├── DemoRunner.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── DemoRunner │ │ │ │ └── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-29.png │ │ │ │ │ ├── Icon-29@2x.png │ │ │ │ │ ├── Icon-29@3x.png │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ ├── Icon-72.png │ │ │ │ │ ├── Icon-72@2x.png │ │ │ │ │ ├── Icon-76.png │ │ │ │ │ ├── Icon-76@2x.png │ │ │ │ │ ├── Icon-83.5@2x.png │ │ │ │ │ ├── Icon-@3x.png │ │ │ │ │ ├── Icon-AppStore-1024.png │ │ │ │ │ ├── Icon-Notification-20@2x.png │ │ │ │ │ ├── Icon-Notification-20@3x.png │ │ │ │ │ ├── Icon-Notifications-20.png │ │ │ │ │ ├── Icon-Notifications-20@2x.png │ │ │ │ │ ├── Icon-Small-1.png │ │ │ │ │ ├── Icon-Small-50.png │ │ │ │ │ ├── Icon-Small-50@2x.png │ │ │ │ │ ├── Icon-Small@2x-1.png │ │ │ │ │ ├── Icon-Spotlight-40.png │ │ │ │ │ ├── Icon-Spotlight-40@2x-1.png │ │ │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ │ │ ├── Icon-Spotlight-40@3x.png │ │ │ │ │ ├── Icon.png │ │ │ │ │ └── Icon@2x.png │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage-ipad-landscape-1x.png │ │ │ │ │ ├── LaunchImage-ipad-landscape-2x.png │ │ │ │ │ ├── LaunchImage-ipad-portrait-1x.png │ │ │ │ │ ├── LaunchImage-ipad-portrait-2x.png │ │ │ │ │ ├── LaunchImage-iphone-2x.png │ │ │ │ │ └── LaunchImage-iphone-retina4.png │ │ │ │ ├── Icon.icns │ │ │ │ ├── Info-App.plist │ │ │ │ └── LaunchScreen.storyboard │ │ ├── CMakeLists.txt │ │ ├── DemoRunner.jucer │ │ ├── JuceLibraryCode │ │ │ ├── JuceHeader.h │ │ │ ├── ReadMe.txt │ │ │ ├── include_juce_analytics.cpp │ │ │ ├── include_juce_audio_basics.cpp │ │ │ ├── include_juce_audio_basics.mm │ │ │ ├── include_juce_audio_devices.cpp │ │ │ ├── include_juce_audio_devices.mm │ │ │ ├── include_juce_audio_formats.cpp │ │ │ ├── include_juce_audio_formats.mm │ │ │ ├── include_juce_audio_processors.cpp │ │ │ ├── include_juce_audio_processors.mm │ │ │ ├── include_juce_audio_utils.cpp │ │ │ ├── include_juce_audio_utils.mm │ │ │ ├── include_juce_blocks_basics.cpp │ │ │ ├── include_juce_box2d.cpp │ │ │ ├── include_juce_core.cpp │ │ │ ├── include_juce_core.mm │ │ │ ├── include_juce_cryptography.cpp │ │ │ ├── include_juce_cryptography.mm │ │ │ ├── include_juce_data_structures.cpp │ │ │ ├── include_juce_data_structures.mm │ │ │ ├── include_juce_dsp.cpp │ │ │ ├── include_juce_dsp.mm │ │ │ ├── include_juce_events.cpp │ │ │ ├── include_juce_events.mm │ │ │ ├── include_juce_graphics.cpp │ │ │ ├── include_juce_graphics.mm │ │ │ ├── include_juce_gui_basics.cpp │ │ │ ├── include_juce_gui_basics.mm │ │ │ ├── include_juce_gui_extra.cpp │ │ │ ├── include_juce_gui_extra.mm │ │ │ ├── include_juce_opengl.cpp │ │ │ ├── include_juce_opengl.mm │ │ │ ├── include_juce_osc.cpp │ │ │ ├── include_juce_product_unlocking.cpp │ │ │ ├── include_juce_product_unlocking.mm │ │ │ ├── include_juce_video.cpp │ │ │ └── include_juce_video.mm │ │ └── Source │ │ │ ├── Demos │ │ │ ├── DemoPIPs1.cpp │ │ │ ├── DemoPIPs2.cpp │ │ │ ├── IntroScreen.h │ │ │ ├── JUCEDemos.cpp │ │ │ └── JUCEDemos.h │ │ │ ├── JUCEAppIcon.png │ │ │ ├── Main.cpp │ │ │ └── UI │ │ │ ├── DemoContentComponent.cpp │ │ │ ├── DemoContentComponent.h │ │ │ ├── MainComponent.cpp │ │ │ ├── MainComponent.h │ │ │ └── SettingsContent.h │ ├── GUI │ │ ├── AnimationAppDemo.h │ │ ├── AnimationDemo.h │ │ ├── BouncingBallWavetableDemo.h │ │ ├── CMakeLists.txt │ │ ├── CameraDemo.h │ │ ├── CodeEditorDemo.h │ │ ├── ComponentDemo.h │ │ ├── ComponentTransformsDemo.h │ │ ├── DialogsDemo.h │ │ ├── FlexBoxDemo.h │ │ ├── FontsDemo.h │ │ ├── GraphicsDemo.h │ │ ├── GridDemo.h │ │ ├── HelloWorldDemo.h │ │ ├── ImagesDemo.h │ │ ├── KeyMappingsDemo.h │ │ ├── LookAndFeelDemo.h │ │ ├── MDIDemo.h │ │ ├── MenusDemo.h │ │ ├── MultiTouchDemo.h │ │ ├── OpenGLAppDemo.h │ │ ├── OpenGLDemo.h │ │ ├── OpenGLDemo2D.h │ │ ├── PropertiesDemo.h │ │ ├── VideoDemo.h │ │ ├── WebBrowserDemo.h │ │ ├── WidgetsDemo.h │ │ └── WindowsDemo.h │ ├── Plugins │ │ ├── AUv3SynthPluginDemo.h │ │ ├── ArpeggiatorPluginDemo.h │ │ ├── AudioPluginDemo.h │ │ ├── CMakeLists.txt │ │ ├── DSPModulePluginDemo.h │ │ ├── GainPluginDemo.h │ │ ├── InterAppAudioEffectPluginDemo.h │ │ ├── MidiLoggerPluginDemo.h │ │ ├── MultiOutSynthPluginDemo.h │ │ ├── NoiseGatePluginDemo.h │ │ ├── SamplerPluginDemo.h │ │ └── SurroundPluginDemo.h │ └── Utilities │ │ ├── AnalyticsCollectionDemo.h │ │ ├── Box2DDemo.h │ │ ├── CMakeLists.txt │ │ ├── ChildProcessDemo.h │ │ ├── CryptographyDemo.h │ │ ├── InAppPurchasesDemo.h │ │ ├── JavaScriptDemo.h │ │ ├── LiveConstantDemo.h │ │ ├── MultithreadingDemo.h │ │ ├── NetworkingDemo.h │ │ ├── OSCDemo.h │ │ ├── PushNotificationsDemo.h │ │ ├── SystemInfoDemo.h │ │ ├── TimersAndEventsDemo.h │ │ ├── UnitTestsDemo.h │ │ ├── ValueTreesDemo.h │ │ └── XMLandJSONDemo.h ├── extras │ ├── AudioPerformanceTest │ │ ├── AudioPerformanceTest.jucer │ │ ├── Builds │ │ │ ├── Android │ │ │ │ ├── app │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── build.gradle │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── LICENSE-for-gradlewrapper.txt │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ │ ├── LinuxMakefile │ │ │ │ └── Makefile │ │ │ ├── MacOSX │ │ │ │ ├── AudioPerformanceTest.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── Info-App.plist │ │ │ │ └── RecentFilesMenuTemplate.nib │ │ │ ├── VisualStudio2019 │ │ │ │ ├── AudioPerformanceTest.sln │ │ │ │ ├── AudioPerformanceTest_App.vcxproj │ │ │ │ ├── AudioPerformanceTest_App.vcxproj.filters │ │ │ │ └── resources.rc │ │ │ └── iOS │ │ │ │ ├── AudioPerformanceTest.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── AudioPerformanceTest │ │ │ │ └── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage-ipad-landscape-1x.png │ │ │ │ │ ├── LaunchImage-ipad-landscape-2x.png │ │ │ │ │ ├── LaunchImage-ipad-portrait-1x.png │ │ │ │ │ ├── LaunchImage-ipad-portrait-2x.png │ │ │ │ │ ├── LaunchImage-iphone-2x.png │ │ │ │ │ └── LaunchImage-iphone-retina4.png │ │ │ │ ├── Info-App.plist │ │ │ │ └── LaunchScreen.storyboard │ │ ├── CMakeLists.txt │ │ ├── JuceLibraryCode │ │ │ ├── JuceHeader.h │ │ │ ├── ReadMe.txt │ │ │ ├── include_juce_audio_basics.cpp │ │ │ ├── include_juce_audio_basics.mm │ │ │ ├── include_juce_audio_devices.cpp │ │ │ ├── include_juce_audio_devices.mm │ │ │ ├── include_juce_audio_formats.cpp │ │ │ ├── include_juce_audio_formats.mm │ │ │ ├── include_juce_audio_processors.cpp │ │ │ ├── include_juce_audio_processors.mm │ │ │ ├── include_juce_audio_utils.cpp │ │ │ ├── include_juce_audio_utils.mm │ │ │ ├── include_juce_core.cpp │ │ │ ├── include_juce_core.mm │ │ │ ├── include_juce_data_structures.cpp │ │ │ ├── include_juce_data_structures.mm │ │ │ ├── include_juce_events.cpp │ │ │ ├── include_juce_events.mm │ │ │ ├── include_juce_graphics.cpp │ │ │ ├── include_juce_graphics.mm │ │ │ ├── include_juce_gui_basics.cpp │ │ │ ├── include_juce_gui_basics.mm │ │ │ ├── include_juce_gui_extra.cpp │ │ │ └── include_juce_gui_extra.mm │ │ └── Source │ │ │ ├── Main.cpp │ │ │ └── MainComponent.h │ ├── AudioPluginHost │ │ ├── AudioPluginHost.jucer │ │ ├── Builds │ │ │ ├── Android │ │ │ │ ├── app │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── build.gradle │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ └── drawable-xhdpi │ │ │ │ │ │ └── icon.png │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── LICENSE-for-gradlewrapper.txt │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ │ ├── LinuxMakefile │ │ │ │ └── Makefile │ │ │ ├── MacOSX │ │ │ │ ├── AudioPluginHost.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── Icon.icns │ │ │ │ ├── Info-App.plist │ │ │ │ └── RecentFilesMenuTemplate.nib │ │ │ ├── VisualStudio2015 │ │ │ │ ├── AudioPluginHost.sln │ │ │ │ ├── AudioPluginHost_App.vcxproj │ │ │ │ ├── AudioPluginHost_App.vcxproj.filters │ │ │ │ ├── icon.ico │ │ │ │ └── resources.rc │ │ │ ├── VisualStudio2017 │ │ │ │ ├── AudioPluginHost.sln │ │ │ │ ├── AudioPluginHost_App.vcxproj │ │ │ │ ├── AudioPluginHost_App.vcxproj.filters │ │ │ │ ├── icon.ico │ │ │ │ └── resources.rc │ │ │ ├── VisualStudio2019 │ │ │ │ ├── AudioPluginHost.sln │ │ │ │ ├── AudioPluginHost_App.vcxproj │ │ │ │ ├── AudioPluginHost_App.vcxproj.filters │ │ │ │ ├── icon.ico │ │ │ │ └── resources.rc │ │ │ └── iOS │ │ │ │ ├── AudioPluginHost.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── AudioPluginHost │ │ │ │ └── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-29.png │ │ │ │ │ ├── Icon-29@2x.png │ │ │ │ │ ├── Icon-29@3x.png │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ ├── Icon-72.png │ │ │ │ │ ├── Icon-72@2x.png │ │ │ │ │ ├── Icon-76.png │ │ │ │ │ ├── Icon-76@2x.png │ │ │ │ │ ├── Icon-83.5@2x.png │ │ │ │ │ ├── Icon-@3x.png │ │ │ │ │ ├── Icon-AppStore-1024.png │ │ │ │ │ ├── Icon-Notification-20@2x.png │ │ │ │ │ ├── Icon-Notification-20@3x.png │ │ │ │ │ ├── Icon-Notifications-20.png │ │ │ │ │ ├── Icon-Notifications-20@2x.png │ │ │ │ │ ├── Icon-Small-1.png │ │ │ │ │ ├── Icon-Small-50.png │ │ │ │ │ ├── Icon-Small-50@2x.png │ │ │ │ │ ├── Icon-Small@2x-1.png │ │ │ │ │ ├── Icon-Spotlight-40.png │ │ │ │ │ ├── Icon-Spotlight-40@2x-1.png │ │ │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ │ │ ├── Icon-Spotlight-40@3x.png │ │ │ │ │ ├── Icon.png │ │ │ │ │ └── Icon@2x.png │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage-ipad-landscape-1x.png │ │ │ │ │ ├── LaunchImage-ipad-landscape-2x.png │ │ │ │ │ ├── LaunchImage-ipad-portrait-1x.png │ │ │ │ │ ├── LaunchImage-ipad-portrait-2x.png │ │ │ │ │ ├── LaunchImage-iphone-2x.png │ │ │ │ │ └── LaunchImage-iphone-retina4.png │ │ │ │ ├── Icon.icns │ │ │ │ ├── Info-App.plist │ │ │ │ └── LaunchScreen.storyboard │ │ ├── CMakeLists.txt │ │ ├── JuceLibraryCode │ │ │ ├── BinaryData.cpp │ │ │ ├── BinaryData.h │ │ │ ├── JuceHeader.h │ │ │ ├── ReadMe.txt │ │ │ ├── include_juce_audio_basics.cpp │ │ │ ├── include_juce_audio_basics.mm │ │ │ ├── include_juce_audio_devices.cpp │ │ │ ├── include_juce_audio_devices.mm │ │ │ ├── include_juce_audio_formats.cpp │ │ │ ├── include_juce_audio_formats.mm │ │ │ ├── include_juce_audio_processors.cpp │ │ │ ├── include_juce_audio_processors.mm │ │ │ ├── include_juce_audio_utils.cpp │ │ │ ├── include_juce_audio_utils.mm │ │ │ ├── include_juce_core.cpp │ │ │ ├── include_juce_core.mm │ │ │ ├── include_juce_cryptography.cpp │ │ │ ├── include_juce_cryptography.mm │ │ │ ├── include_juce_data_structures.cpp │ │ │ ├── include_juce_data_structures.mm │ │ │ ├── include_juce_dsp.cpp │ │ │ ├── include_juce_dsp.mm │ │ │ ├── include_juce_events.cpp │ │ │ ├── include_juce_events.mm │ │ │ ├── include_juce_graphics.cpp │ │ │ ├── include_juce_graphics.mm │ │ │ ├── include_juce_gui_basics.cpp │ │ │ ├── include_juce_gui_basics.mm │ │ │ ├── include_juce_gui_extra.cpp │ │ │ ├── include_juce_gui_extra.mm │ │ │ ├── include_juce_opengl.cpp │ │ │ └── include_juce_opengl.mm │ │ └── Source │ │ │ ├── HostStartup.cpp │ │ │ ├── JUCEAppIcon.png │ │ │ ├── Plugins │ │ │ ├── IOConfigurationWindow.cpp │ │ │ ├── IOConfigurationWindow.h │ │ │ ├── InternalPlugins.cpp │ │ │ ├── InternalPlugins.h │ │ │ ├── PluginGraph.cpp │ │ │ └── PluginGraph.h │ │ │ └── UI │ │ │ ├── GraphEditorPanel.cpp │ │ │ ├── GraphEditorPanel.h │ │ │ ├── MainHostWindow.cpp │ │ │ ├── MainHostWindow.h │ │ │ └── PluginWindow.h │ ├── BLOCKS │ │ ├── Makefile │ │ └── standalone_sdk │ │ │ ├── README.md │ │ │ ├── SDK │ │ │ └── BlocksHeader.h │ │ │ └── examples │ │ │ └── BlockFinder │ │ │ ├── BlockFinder.cpp │ │ │ ├── BlockFinder.h │ │ │ ├── Linux │ │ │ ├── Makefile │ │ │ └── main.cpp │ │ │ ├── MacOS │ │ │ ├── BlockFinder.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── Makefile │ │ │ └── main.mm │ │ │ └── Windows │ │ │ ├── BlockFinder.sln │ │ │ ├── BlockFinder.vcxproj │ │ │ └── main.cpp │ ├── BinaryBuilder │ │ ├── BinaryBuilder.jucer │ │ ├── Builds │ │ │ ├── LinuxMakefile │ │ │ │ └── Makefile │ │ │ ├── MacOSX │ │ │ │ ├── BinaryBuilder.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── RecentFilesMenuTemplate.nib │ │ │ └── VisualStudio2019 │ │ │ │ ├── BinaryBuilder.sln │ │ │ │ ├── BinaryBuilder_ConsoleApp.vcxproj │ │ │ │ ├── BinaryBuilder_ConsoleApp.vcxproj.filters │ │ │ │ └── resources.rc │ │ ├── CMakeLists.txt │ │ ├── JuceLibraryCode │ │ │ ├── JuceHeader.h │ │ │ ├── ReadMe.txt │ │ │ ├── include_juce_core.cpp │ │ │ └── include_juce_core.mm │ │ └── Source │ │ │ └── Main.cpp │ ├── Build │ │ ├── CMake │ │ │ ├── JUCECheckAtomic.cmake │ │ │ ├── JUCEConfig.cmake.in │ │ │ ├── JUCEHelperTargets.cmake │ │ │ ├── JUCEUtils.cmake │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── PIPAudioProcessor.cpp.in │ │ │ ├── PIPComponent.cpp.in │ │ │ ├── PIPConsole.cpp.in │ │ │ ├── RecentFilesMenuTemplate.nib │ │ │ ├── UnityPluginGUIScript.cs.in │ │ │ ├── copyDir.cmake │ │ │ └── juce_runtime_arch_detection.cpp │ │ ├── CMakeLists.txt │ │ ├── juce_build_tools │ │ │ ├── juce_build_tools.cpp │ │ │ ├── juce_build_tools.h │ │ │ └── utils │ │ │ │ ├── juce_BinaryResourceFile.cpp │ │ │ │ ├── juce_BinaryResourceFile.h │ │ │ │ ├── juce_BuildHelperFunctions.cpp │ │ │ │ ├── juce_BuildHelperFunctions.h │ │ │ │ ├── juce_CppTokeniserFunctions.cpp │ │ │ │ ├── juce_Entitlements.cpp │ │ │ │ ├── juce_Entitlements.h │ │ │ │ ├── juce_Icons.cpp │ │ │ │ ├── juce_Icons.h │ │ │ │ ├── juce_PlistOptions.cpp │ │ │ │ ├── juce_PlistOptions.h │ │ │ │ ├── juce_ProjectType.h │ │ │ │ ├── juce_RelativePath.h │ │ │ │ ├── juce_ResourceFileHelpers.cpp │ │ │ │ ├── juce_ResourceFileHelpers.h │ │ │ │ ├── juce_ResourceRc.cpp │ │ │ │ ├── juce_ResourceRc.h │ │ │ │ ├── juce_VersionNumbers.cpp │ │ │ │ └── juce_VersionNumbers.h │ │ └── juceaide │ │ │ ├── CMakeLists.txt │ │ │ └── Main.cpp │ ├── CMakeLists.txt │ ├── NetworkGraphicsDemo │ │ ├── Builds │ │ │ ├── Android │ │ │ │ ├── app │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── build.gradle │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-mdpi │ │ │ │ │ │ └── icon.png │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── LICENSE-for-gradlewrapper.txt │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ │ ├── LinuxMakefile │ │ │ │ └── Makefile │ │ │ ├── MacOSX │ │ │ │ ├── Icon.icns │ │ │ │ ├── Info-App.plist │ │ │ │ ├── NetworkGraphicsDemo.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── RecentFilesMenuTemplate.nib │ │ │ ├── VisualStudio2019 │ │ │ │ ├── NetworkGraphicsDemo.sln │ │ │ │ ├── NetworkGraphicsDemo_App.vcxproj │ │ │ │ ├── NetworkGraphicsDemo_App.vcxproj.filters │ │ │ │ └── resources.rc │ │ │ └── iOS │ │ │ │ ├── Icon.icns │ │ │ │ ├── Info-App.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ ├── NetworkGraphicsDemo.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ └── NetworkGraphicsDemo │ │ │ │ └── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-29.png │ │ │ │ ├── Icon-29@2x.png │ │ │ │ ├── Icon-29@3x.png │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-72.png │ │ │ │ ├── Icon-72@2x.png │ │ │ │ ├── Icon-76.png │ │ │ │ ├── Icon-76@2x.png │ │ │ │ ├── Icon-83.5@2x.png │ │ │ │ ├── Icon-@3x.png │ │ │ │ ├── Icon-AppStore-1024.png │ │ │ │ ├── Icon-Notification-20@2x.png │ │ │ │ ├── Icon-Notification-20@3x.png │ │ │ │ ├── Icon-Notifications-20.png │ │ │ │ ├── Icon-Notifications-20@2x.png │ │ │ │ ├── Icon-Small-1.png │ │ │ │ ├── Icon-Small-50.png │ │ │ │ ├── Icon-Small-50@2x.png │ │ │ │ ├── Icon-Small@2x-1.png │ │ │ │ ├── Icon-Spotlight-40.png │ │ │ │ ├── Icon-Spotlight-40@2x-1.png │ │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ │ ├── Icon-Spotlight-40@3x.png │ │ │ │ ├── Icon.png │ │ │ │ └── Icon@2x.png │ │ │ │ └── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage-ipad-landscape-1x.png │ │ │ │ ├── LaunchImage-ipad-landscape-2x.png │ │ │ │ ├── LaunchImage-ipad-portrait-1x.png │ │ │ │ ├── LaunchImage-ipad-portrait-2x.png │ │ │ │ ├── LaunchImage-iphone-2x.png │ │ │ │ └── LaunchImage-iphone-retina4.png │ │ ├── CMakeLists.txt │ │ ├── JuceLibraryCode │ │ │ ├── BinaryData.cpp │ │ │ ├── BinaryData.h │ │ │ ├── JuceHeader.h │ │ │ ├── ReadMe.txt │ │ │ ├── include_juce_audio_basics.cpp │ │ │ ├── include_juce_audio_basics.mm │ │ │ ├── include_juce_audio_devices.cpp │ │ │ ├── include_juce_audio_devices.mm │ │ │ ├── include_juce_audio_formats.cpp │ │ │ ├── include_juce_audio_formats.mm │ │ │ ├── include_juce_audio_processors.cpp │ │ │ ├── include_juce_audio_processors.mm │ │ │ ├── include_juce_audio_utils.cpp │ │ │ ├── include_juce_audio_utils.mm │ │ │ ├── include_juce_core.cpp │ │ │ ├── include_juce_core.mm │ │ │ ├── include_juce_cryptography.cpp │ │ │ ├── include_juce_cryptography.mm │ │ │ ├── include_juce_data_structures.cpp │ │ │ ├── include_juce_data_structures.mm │ │ │ ├── include_juce_events.cpp │ │ │ ├── include_juce_events.mm │ │ │ ├── include_juce_graphics.cpp │ │ │ ├── include_juce_graphics.mm │ │ │ ├── include_juce_gui_basics.cpp │ │ │ ├── include_juce_gui_basics.mm │ │ │ ├── include_juce_gui_extra.cpp │ │ │ ├── include_juce_gui_extra.mm │ │ │ ├── include_juce_opengl.cpp │ │ │ ├── include_juce_opengl.mm │ │ │ └── include_juce_osc.cpp │ │ ├── NetworkGraphicsDemo.jucer │ │ ├── README.txt │ │ └── Source │ │ │ ├── Demos.h │ │ │ ├── Main.cpp │ │ │ ├── MasterComponent.h │ │ │ ├── SharedCanvas.h │ │ │ ├── SlaveComponent.h │ │ │ └── juce_icon.png │ ├── Projucer │ │ ├── Builds │ │ │ ├── LinuxMakefile │ │ │ │ └── Makefile │ │ │ ├── MacOSX │ │ │ │ ├── Icon.icns │ │ │ │ ├── Info-App.plist │ │ │ │ ├── Projucer.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── RecentFilesMenuTemplate.nib │ │ │ ├── VisualStudio2015 │ │ │ │ ├── Projucer.sln │ │ │ │ ├── Projucer_App.vcxproj │ │ │ │ ├── Projucer_App.vcxproj.filters │ │ │ │ ├── icon.ico │ │ │ │ └── resources.rc │ │ │ ├── VisualStudio2017 │ │ │ │ ├── Projucer.sln │ │ │ │ ├── Projucer_App.vcxproj │ │ │ │ ├── Projucer_App.vcxproj.filters │ │ │ │ ├── icon.ico │ │ │ │ └── resources.rc │ │ │ └── VisualStudio2019 │ │ │ │ ├── Projucer.sln │ │ │ │ ├── Projucer_App.vcxproj │ │ │ │ ├── Projucer_App.vcxproj.filters │ │ │ │ ├── icon.ico │ │ │ │ └── resources.rc │ │ ├── CMakeLists.txt │ │ ├── JuceLibraryCode │ │ │ ├── BinaryData.cpp │ │ │ ├── BinaryData.h │ │ │ ├── JuceHeader.h │ │ │ ├── ReadMe.txt │ │ │ ├── include_juce_build_tools.cpp │ │ │ ├── include_juce_core.cpp │ │ │ ├── include_juce_core.mm │ │ │ ├── include_juce_cryptography.cpp │ │ │ ├── include_juce_cryptography.mm │ │ │ ├── include_juce_data_structures.cpp │ │ │ ├── include_juce_data_structures.mm │ │ │ ├── include_juce_events.cpp │ │ │ ├── include_juce_events.mm │ │ │ ├── include_juce_graphics.cpp │ │ │ ├── include_juce_graphics.mm │ │ │ ├── include_juce_gui_basics.cpp │ │ │ ├── include_juce_gui_basics.mm │ │ │ ├── include_juce_gui_extra.cpp │ │ │ └── include_juce_gui_extra.mm │ │ ├── Projucer.jucer │ │ └── Source │ │ │ ├── Application │ │ │ ├── StartPage │ │ │ │ ├── jucer_ContentComponents.h │ │ │ │ ├── jucer_NewProjectTemplates.h │ │ │ │ ├── jucer_NewProjectWizard.cpp │ │ │ │ ├── jucer_NewProjectWizard.h │ │ │ │ ├── jucer_StartPageComponent.cpp │ │ │ │ ├── jucer_StartPageComponent.h │ │ │ │ └── jucer_StartPageTreeHolder.h │ │ │ ├── UserAccount │ │ │ │ ├── jucer_LicenseController.h │ │ │ │ ├── jucer_LicenseQueryThread.h │ │ │ │ ├── jucer_LicenseState.h │ │ │ │ └── jucer_LoginFormComponent.h │ │ │ ├── Windows │ │ │ │ ├── jucer_AboutWindowComponent.h │ │ │ │ ├── jucer_EditorColourSchemeWindowComponent.h │ │ │ │ ├── jucer_FloatingToolWindow.h │ │ │ │ ├── jucer_GlobalPathsWindowComponent.h │ │ │ │ ├── jucer_PIPCreatorWindowComponent.h │ │ │ │ ├── jucer_SVGPathDataWindowComponent.h │ │ │ │ ├── jucer_TranslationToolWindowComponent.h │ │ │ │ └── jucer_UTF8WindowComponent.h │ │ │ ├── jucer_Application.cpp │ │ │ ├── jucer_Application.h │ │ │ ├── jucer_AutoUpdater.cpp │ │ │ ├── jucer_AutoUpdater.h │ │ │ ├── jucer_CommandIDs.h │ │ │ ├── jucer_CommandLine.cpp │ │ │ ├── jucer_CommandLine.h │ │ │ ├── jucer_CommonHeaders.h │ │ │ ├── jucer_Headers.h │ │ │ ├── jucer_Main.cpp │ │ │ ├── jucer_MainWindow.cpp │ │ │ └── jucer_MainWindow.h │ │ │ ├── BinaryData │ │ │ ├── Icons │ │ │ │ ├── background_logo.svg │ │ │ │ ├── export_android.svg │ │ │ │ ├── export_clion.svg │ │ │ │ ├── export_codeBlocks.svg │ │ │ │ ├── export_linux.svg │ │ │ │ ├── export_visualStudio.svg │ │ │ │ ├── export_xcode.svg │ │ │ │ ├── gpl_logo.svg │ │ │ │ ├── juce-logo-with-text.svg │ │ │ │ ├── juce_icon.png │ │ │ │ ├── wizard_AnimatedApp.svg │ │ │ │ ├── wizard_AudioApp.svg │ │ │ │ ├── wizard_AudioPlugin.svg │ │ │ │ ├── wizard_ConsoleApp.svg │ │ │ │ ├── wizard_DLL.svg │ │ │ │ ├── wizard_GUI.svg │ │ │ │ ├── wizard_Highlight.svg │ │ │ │ ├── wizard_OpenGL.svg │ │ │ │ ├── wizard_Openfile.svg │ │ │ │ └── wizard_StaticLibrary.svg │ │ │ ├── Templates │ │ │ │ ├── jucer_AnimatedComponentSimpleTemplate.h │ │ │ │ ├── jucer_AnimatedComponentTemplate.cpp │ │ │ │ ├── jucer_AnimatedComponentTemplate.h │ │ │ │ ├── jucer_AudioComponentSimpleTemplate.h │ │ │ │ ├── jucer_AudioComponentTemplate.cpp │ │ │ │ ├── jucer_AudioComponentTemplate.h │ │ │ │ ├── jucer_AudioPluginEditorTemplate.cpp │ │ │ │ ├── jucer_AudioPluginEditorTemplate.h │ │ │ │ ├── jucer_AudioPluginFilterTemplate.cpp │ │ │ │ ├── jucer_AudioPluginFilterTemplate.h │ │ │ │ ├── jucer_ComponentTemplate.cpp │ │ │ │ ├── jucer_ComponentTemplate.h │ │ │ │ ├── jucer_ContentCompSimpleTemplate.h │ │ │ │ ├── jucer_ContentCompTemplate.cpp │ │ │ │ ├── jucer_ContentCompTemplate.h │ │ │ │ ├── jucer_InlineComponentTemplate.h │ │ │ │ ├── jucer_MainConsoleAppTemplate.cpp │ │ │ │ ├── jucer_MainTemplate_NoWindow.cpp │ │ │ │ ├── jucer_MainTemplate_Window.cpp │ │ │ │ ├── jucer_NewComponentTemplate.cpp │ │ │ │ ├── jucer_NewComponentTemplate.h │ │ │ │ ├── jucer_NewCppFileTemplate.cpp │ │ │ │ ├── jucer_NewCppFileTemplate.h │ │ │ │ ├── jucer_NewInlineComponentTemplate.h │ │ │ │ ├── jucer_OpenGLComponentSimpleTemplate.h │ │ │ │ ├── jucer_OpenGLComponentTemplate.cpp │ │ │ │ ├── jucer_OpenGLComponentTemplate.h │ │ │ │ ├── jucer_PIPAudioProcessorTemplate.h │ │ │ │ └── jucer_PIPTemplate.h │ │ │ ├── colourscheme_dark.xml │ │ │ ├── colourscheme_light.xml │ │ │ └── gradle │ │ │ │ ├── LICENSE │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ ├── gradlew │ │ │ │ └── gradlew.bat │ │ │ ├── CodeEditor │ │ │ ├── jucer_DocumentEditorComponent.cpp │ │ │ ├── jucer_DocumentEditorComponent.h │ │ │ ├── jucer_ItemPreviewComponent.h │ │ │ ├── jucer_LiveBuildCodeEditor.h │ │ │ ├── jucer_OpenDocumentManager.cpp │ │ │ ├── jucer_OpenDocumentManager.h │ │ │ ├── jucer_SourceCodeEditor.cpp │ │ │ └── jucer_SourceCodeEditor.h │ │ │ ├── ComponentEditor │ │ │ ├── Components │ │ │ │ ├── jucer_ButtonHandler.h │ │ │ │ ├── jucer_ComboBoxHandler.h │ │ │ │ ├── jucer_ComponentNameProperty.h │ │ │ │ ├── jucer_ComponentTypeHandler.cpp │ │ │ │ ├── jucer_ComponentTypeHandler.h │ │ │ │ ├── jucer_ComponentUndoableAction.h │ │ │ │ ├── jucer_GenericComponentHandler.h │ │ │ │ ├── jucer_GroupComponentHandler.h │ │ │ │ ├── jucer_HyperlinkButtonHandler.h │ │ │ │ ├── jucer_ImageButtonHandler.h │ │ │ │ ├── jucer_JucerComponentHandler.h │ │ │ │ ├── jucer_LabelHandler.h │ │ │ │ ├── jucer_SliderHandler.h │ │ │ │ ├── jucer_TabbedComponentHandler.h │ │ │ │ ├── jucer_TextButtonHandler.h │ │ │ │ ├── jucer_TextEditorHandler.h │ │ │ │ ├── jucer_ToggleButtonHandler.h │ │ │ │ ├── jucer_TreeViewHandler.h │ │ │ │ └── jucer_ViewportHandler.h │ │ │ ├── Documents │ │ │ │ ├── jucer_ButtonDocument.cpp │ │ │ │ ├── jucer_ButtonDocument.h │ │ │ │ ├── jucer_ComponentDocument.cpp │ │ │ │ └── jucer_ComponentDocument.h │ │ │ ├── PaintElements │ │ │ │ ├── jucer_ColouredElement.cpp │ │ │ │ ├── jucer_ColouredElement.h │ │ │ │ ├── jucer_ElementSiblingComponent.h │ │ │ │ ├── jucer_FillType.h │ │ │ │ ├── jucer_GradientPointComponent.h │ │ │ │ ├── jucer_ImageResourceProperty.h │ │ │ │ ├── jucer_PaintElement.cpp │ │ │ │ ├── jucer_PaintElement.h │ │ │ │ ├── jucer_PaintElementEllipse.h │ │ │ │ ├── jucer_PaintElementGroup.cpp │ │ │ │ ├── jucer_PaintElementGroup.h │ │ │ │ ├── jucer_PaintElementImage.cpp │ │ │ │ ├── jucer_PaintElementImage.h │ │ │ │ ├── jucer_PaintElementPath.cpp │ │ │ │ ├── jucer_PaintElementPath.h │ │ │ │ ├── jucer_PaintElementRectangle.h │ │ │ │ ├── jucer_PaintElementRoundedRectangle.h │ │ │ │ ├── jucer_PaintElementText.h │ │ │ │ ├── jucer_PaintElementUndoableAction.h │ │ │ │ ├── jucer_PointComponent.h │ │ │ │ └── jucer_StrokeType.h │ │ │ ├── Properties │ │ │ │ ├── jucer_ColourPropertyComponent.h │ │ │ │ ├── jucer_ComponentBooleanProperty.h │ │ │ │ ├── jucer_ComponentChoiceProperty.h │ │ │ │ ├── jucer_ComponentColourProperty.h │ │ │ │ ├── jucer_ComponentTextProperty.h │ │ │ │ ├── jucer_FilePropertyComponent.h │ │ │ │ ├── jucer_FontPropertyComponent.h │ │ │ │ ├── jucer_JustificationProperty.h │ │ │ │ └── jucer_PositionPropertyBase.h │ │ │ ├── UI │ │ │ │ ├── jucer_ComponentLayoutEditor.cpp │ │ │ │ ├── jucer_ComponentLayoutEditor.h │ │ │ │ ├── jucer_ComponentLayoutPanel.h │ │ │ │ ├── jucer_ComponentOverlayComponent.cpp │ │ │ │ ├── jucer_ComponentOverlayComponent.h │ │ │ │ ├── jucer_EditingPanelBase.cpp │ │ │ │ ├── jucer_EditingPanelBase.h │ │ │ │ ├── jucer_JucerCommandIDs.h │ │ │ │ ├── jucer_JucerDocumentEditor.cpp │ │ │ │ ├── jucer_JucerDocumentEditor.h │ │ │ │ ├── jucer_PaintRoutineEditor.cpp │ │ │ │ ├── jucer_PaintRoutineEditor.h │ │ │ │ ├── jucer_PaintRoutinePanel.cpp │ │ │ │ ├── jucer_PaintRoutinePanel.h │ │ │ │ ├── jucer_RelativePositionedRectangle.h │ │ │ │ ├── jucer_ResourceEditorPanel.cpp │ │ │ │ ├── jucer_ResourceEditorPanel.h │ │ │ │ ├── jucer_SnapGridPainter.h │ │ │ │ ├── jucer_TestComponent.cpp │ │ │ │ └── jucer_TestComponent.h │ │ │ ├── jucer_BinaryResources.cpp │ │ │ ├── jucer_BinaryResources.h │ │ │ ├── jucer_ComponentLayout.cpp │ │ │ ├── jucer_ComponentLayout.h │ │ │ ├── jucer_GeneratedCode.cpp │ │ │ ├── jucer_GeneratedCode.h │ │ │ ├── jucer_JucerDocument.cpp │ │ │ ├── jucer_JucerDocument.h │ │ │ ├── jucer_ObjectTypes.cpp │ │ │ ├── jucer_ObjectTypes.h │ │ │ ├── jucer_PaintRoutine.cpp │ │ │ ├── jucer_PaintRoutine.h │ │ │ └── jucer_UtilityFunctions.h │ │ │ ├── Licenses │ │ │ └── jucer_LicenseController.cpp │ │ │ ├── LiveBuildEngine │ │ │ ├── UI │ │ │ │ ├── jucer_ActivityListComponent.h │ │ │ │ ├── jucer_BuildTabStatusComponent.h │ │ │ │ ├── jucer_ComponentListComponent.h │ │ │ │ └── jucer_ErrorListComponent.h │ │ │ ├── jucer_ActivityList.h │ │ │ ├── jucer_ClassDatabase.h │ │ │ ├── jucer_ClientServerMessages.h │ │ │ ├── jucer_CompileEngineClient.cpp │ │ │ ├── jucer_CompileEngineClient.h │ │ │ ├── jucer_CompileEngineDLL.h │ │ │ ├── jucer_CompileEngineServer.cpp │ │ │ ├── jucer_CompileEngineServer.h │ │ │ ├── jucer_CompileEngineSettings.h │ │ │ ├── jucer_CppHelpers.h │ │ │ ├── jucer_DiagnosticMessage.h │ │ │ ├── jucer_DownloadCompileEngineThread.cpp │ │ │ ├── jucer_DownloadCompileEngineThread.h │ │ │ ├── jucer_ErrorList.h │ │ │ ├── jucer_LiveCodeBuilderDLL.h │ │ │ ├── jucer_MessageIDs.h │ │ │ ├── jucer_ProjectBuildInfo.h │ │ │ └── jucer_SourceCodeRange.h │ │ │ ├── Project │ │ │ ├── Modules │ │ │ │ ├── jucer_AvailableModulesList.h │ │ │ │ ├── jucer_ModuleDescription.h │ │ │ │ ├── jucer_Modules.cpp │ │ │ │ └── jucer_Modules.h │ │ │ ├── UI │ │ │ │ ├── Sidebar │ │ │ │ │ ├── jucer_ExporterTreeItems.h │ │ │ │ │ ├── jucer_FileTreeItems.h │ │ │ │ │ ├── jucer_LiveBuildTab.h │ │ │ │ │ ├── jucer_ModuleTreeItems.h │ │ │ │ │ ├── jucer_ProjectTab.h │ │ │ │ │ ├── jucer_ProjectTreeItemBase.h │ │ │ │ │ ├── jucer_TabComponents.h │ │ │ │ │ └── jucer_TreeItemTypes.h │ │ │ │ ├── jucer_ContentViewComponents.h │ │ │ │ ├── jucer_FileGroupInformationComponent.h │ │ │ │ ├── jucer_HeaderComponent.cpp │ │ │ │ ├── jucer_HeaderComponent.h │ │ │ │ ├── jucer_ModulesInformationComponent.h │ │ │ │ ├── jucer_ProjectContentComponent.cpp │ │ │ │ ├── jucer_ProjectContentComponent.h │ │ │ │ ├── jucer_ProjectMessagesComponent.h │ │ │ │ └── jucer_UserAvatarComponent.h │ │ │ ├── jucer_Project.cpp │ │ │ └── jucer_Project.h │ │ │ ├── ProjectSaving │ │ │ ├── jucer_ProjectExport_Android.h │ │ │ ├── jucer_ProjectExport_CLion.h │ │ │ ├── jucer_ProjectExport_CodeBlocks.h │ │ │ ├── jucer_ProjectExport_MSVC.h │ │ │ ├── jucer_ProjectExport_Make.h │ │ │ ├── jucer_ProjectExport_Xcode.h │ │ │ ├── jucer_ProjectExporter.cpp │ │ │ ├── jucer_ProjectExporter.h │ │ │ ├── jucer_ProjectSaver.cpp │ │ │ ├── jucer_ProjectSaver.h │ │ │ ├── jucer_ResourceFile.cpp │ │ │ ├── jucer_ResourceFile.h │ │ │ └── jucer_XcodeProjectParser.h │ │ │ ├── Settings │ │ │ ├── jucer_AppearanceSettings.cpp │ │ │ ├── jucer_AppearanceSettings.h │ │ │ ├── jucer_StoredSettings.cpp │ │ │ └── jucer_StoredSettings.h │ │ │ └── Utility │ │ │ ├── Helpers │ │ │ ├── jucer_CodeHelpers.cpp │ │ │ ├── jucer_CodeHelpers.h │ │ │ ├── jucer_Colours.h │ │ │ ├── jucer_FileHelpers.cpp │ │ │ ├── jucer_FileHelpers.h │ │ │ ├── jucer_MiscUtilities.cpp │ │ │ ├── jucer_MiscUtilities.h │ │ │ ├── jucer_NewFileWizard.cpp │ │ │ ├── jucer_NewFileWizard.h │ │ │ ├── jucer_PresetIDs.h │ │ │ ├── jucer_TranslationHelpers.h │ │ │ ├── jucer_ValueSourceHelpers.h │ │ │ ├── jucer_ValueWithDefaultWrapper.h │ │ │ ├── jucer_VersionInfo.cpp │ │ │ └── jucer_VersionInfo.h │ │ │ ├── PIPs │ │ │ ├── jucer_PIPGenerator.cpp │ │ │ └── jucer_PIPGenerator.h │ │ │ └── UI │ │ │ ├── PropertyComponents │ │ │ ├── jucer_ColourPropertyComponent.h │ │ │ ├── jucer_FilePathPropertyComponent.h │ │ │ ├── jucer_LabelPropertyComponent.h │ │ │ └── jucer_PropertyComponentsWithEnablement.h │ │ │ ├── jucer_IconButton.h │ │ │ ├── jucer_Icons.cpp │ │ │ ├── jucer_Icons.h │ │ │ ├── jucer_JucerTreeViewBase.cpp │ │ │ ├── jucer_JucerTreeViewBase.h │ │ │ ├── jucer_ProjucerLookAndFeel.cpp │ │ │ ├── jucer_ProjucerLookAndFeel.h │ │ │ ├── jucer_SlidingPanelComponent.cpp │ │ │ └── jucer_SlidingPanelComponent.h │ ├── UnitTestRunner │ │ ├── Builds │ │ │ ├── LinuxMakefile │ │ │ │ └── Makefile │ │ │ ├── MacOSX │ │ │ │ ├── RecentFilesMenuTemplate.nib │ │ │ │ └── UnitTestRunner.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── VisualStudio2017 │ │ │ │ ├── UnitTestRunner.sln │ │ │ │ ├── UnitTestRunner_ConsoleApp.vcxproj │ │ │ │ ├── UnitTestRunner_ConsoleApp.vcxproj.filters │ │ │ │ └── resources.rc │ │ │ └── VisualStudio2019 │ │ │ │ ├── UnitTestRunner.sln │ │ │ │ ├── UnitTestRunner_ConsoleApp.vcxproj │ │ │ │ ├── UnitTestRunner_ConsoleApp.vcxproj.filters │ │ │ │ └── resources.rc │ │ ├── CMakeLists.txt │ │ ├── JuceLibraryCode │ │ │ ├── JuceHeader.h │ │ │ ├── ReadMe.txt │ │ │ ├── include_juce_analytics.cpp │ │ │ ├── include_juce_audio_basics.cpp │ │ │ ├── include_juce_audio_basics.mm │ │ │ ├── include_juce_audio_devices.cpp │ │ │ ├── include_juce_audio_devices.mm │ │ │ ├── include_juce_audio_formats.cpp │ │ │ ├── include_juce_audio_formats.mm │ │ │ ├── include_juce_audio_processors.cpp │ │ │ ├── include_juce_audio_processors.mm │ │ │ ├── include_juce_audio_utils.cpp │ │ │ ├── include_juce_audio_utils.mm │ │ │ ├── include_juce_blocks_basics.cpp │ │ │ ├── include_juce_core.cpp │ │ │ ├── include_juce_core.mm │ │ │ ├── include_juce_cryptography.cpp │ │ │ ├── include_juce_cryptography.mm │ │ │ ├── include_juce_data_structures.cpp │ │ │ ├── include_juce_data_structures.mm │ │ │ ├── include_juce_dsp.cpp │ │ │ ├── include_juce_dsp.mm │ │ │ ├── include_juce_events.cpp │ │ │ ├── include_juce_events.mm │ │ │ ├── include_juce_graphics.cpp │ │ │ ├── include_juce_graphics.mm │ │ │ ├── include_juce_gui_basics.cpp │ │ │ ├── include_juce_gui_basics.mm │ │ │ ├── include_juce_gui_extra.cpp │ │ │ ├── include_juce_gui_extra.mm │ │ │ ├── include_juce_opengl.cpp │ │ │ ├── include_juce_opengl.mm │ │ │ ├── include_juce_osc.cpp │ │ │ ├── include_juce_product_unlocking.cpp │ │ │ ├── include_juce_product_unlocking.mm │ │ │ ├── include_juce_video.cpp │ │ │ └── include_juce_video.mm │ │ ├── Source │ │ │ └── Main.cpp │ │ └── UnitTestRunner.jucer │ └── WindowsDLL │ │ ├── Builds │ │ └── VisualStudio2019 │ │ │ ├── WindowsDLL.sln │ │ │ ├── WindowsDLL_StaticLibrary.vcxproj │ │ │ └── WindowsDLL_StaticLibrary.vcxproj.filters │ │ ├── JuceLibraryCode │ │ ├── JuceHeader.h │ │ ├── ReadMe.txt │ │ ├── include_juce_audio_basics.cpp │ │ ├── include_juce_audio_basics.mm │ │ ├── include_juce_audio_devices.cpp │ │ ├── include_juce_audio_devices.mm │ │ ├── include_juce_audio_formats.cpp │ │ ├── include_juce_audio_formats.mm │ │ ├── include_juce_audio_processors.cpp │ │ ├── include_juce_audio_processors.mm │ │ ├── include_juce_audio_utils.cpp │ │ ├── include_juce_audio_utils.mm │ │ ├── include_juce_core.cpp │ │ ├── include_juce_core.mm │ │ ├── include_juce_cryptography.cpp │ │ ├── include_juce_cryptography.mm │ │ ├── include_juce_data_structures.cpp │ │ ├── include_juce_data_structures.mm │ │ ├── include_juce_events.cpp │ │ ├── include_juce_events.mm │ │ ├── include_juce_graphics.cpp │ │ ├── include_juce_graphics.mm │ │ ├── include_juce_gui_basics.cpp │ │ ├── include_juce_gui_basics.mm │ │ ├── include_juce_gui_extra.cpp │ │ ├── include_juce_gui_extra.mm │ │ ├── include_juce_opengl.cpp │ │ ├── include_juce_opengl.mm │ │ ├── include_juce_video.cpp │ │ └── include_juce_video.mm │ │ └── WindowsDLL.jucer └── modules │ ├── CMakeLists.txt │ ├── juce_analytics │ ├── analytics │ │ ├── juce_Analytics.cpp │ │ ├── juce_Analytics.h │ │ ├── juce_ButtonTracker.cpp │ │ └── juce_ButtonTracker.h │ ├── destinations │ │ ├── juce_AnalyticsDestination.h │ │ ├── juce_ThreadedAnalyticsDestination.cpp │ │ └── juce_ThreadedAnalyticsDestination.h │ ├── juce_analytics.cpp │ └── juce_analytics.h │ ├── juce_audio_basics │ ├── audio_play_head │ │ └── juce_AudioPlayHead.h │ ├── buffers │ │ ├── juce_AudioChannelSet.cpp │ │ ├── juce_AudioChannelSet.h │ │ ├── juce_AudioDataConverters.cpp │ │ ├── juce_AudioDataConverters.h │ │ ├── juce_AudioProcessLoadMeasurer.cpp │ │ ├── juce_AudioProcessLoadMeasurer.h │ │ ├── juce_AudioSampleBuffer.h │ │ ├── juce_FloatVectorOperations.cpp │ │ └── juce_FloatVectorOperations.h │ ├── juce_audio_basics.cpp │ ├── juce_audio_basics.h │ ├── juce_audio_basics.mm │ ├── midi │ │ ├── juce_MidiBuffer.cpp │ │ ├── juce_MidiBuffer.h │ │ ├── juce_MidiFile.cpp │ │ ├── juce_MidiFile.h │ │ ├── juce_MidiKeyboardState.cpp │ │ ├── juce_MidiKeyboardState.h │ │ ├── juce_MidiMessage.cpp │ │ ├── juce_MidiMessage.h │ │ ├── juce_MidiMessageSequence.cpp │ │ ├── juce_MidiMessageSequence.h │ │ ├── juce_MidiRPN.cpp │ │ └── juce_MidiRPN.h │ ├── mpe │ │ ├── juce_MPEInstrument.cpp │ │ ├── juce_MPEInstrument.h │ │ ├── juce_MPEMessages.cpp │ │ ├── juce_MPEMessages.h │ │ ├── juce_MPENote.cpp │ │ ├── juce_MPENote.h │ │ ├── juce_MPESynthesiser.cpp │ │ ├── juce_MPESynthesiser.h │ │ ├── juce_MPESynthesiserBase.cpp │ │ ├── juce_MPESynthesiserBase.h │ │ ├── juce_MPESynthesiserVoice.cpp │ │ ├── juce_MPESynthesiserVoice.h │ │ ├── juce_MPEUtils.cpp │ │ ├── juce_MPEUtils.h │ │ ├── juce_MPEValue.cpp │ │ ├── juce_MPEValue.h │ │ ├── juce_MPEZoneLayout.cpp │ │ └── juce_MPEZoneLayout.h │ ├── native │ │ └── juce_mac_CoreAudioLayouts.h │ ├── sources │ │ ├── juce_AudioSource.h │ │ ├── juce_BufferingAudioSource.cpp │ │ ├── juce_BufferingAudioSource.h │ │ ├── juce_ChannelRemappingAudioSource.cpp │ │ ├── juce_ChannelRemappingAudioSource.h │ │ ├── juce_IIRFilterAudioSource.cpp │ │ ├── juce_IIRFilterAudioSource.h │ │ ├── juce_MemoryAudioSource.cpp │ │ ├── juce_MemoryAudioSource.h │ │ ├── juce_MixerAudioSource.cpp │ │ ├── juce_MixerAudioSource.h │ │ ├── juce_PositionableAudioSource.h │ │ ├── juce_ResamplingAudioSource.cpp │ │ ├── juce_ResamplingAudioSource.h │ │ ├── juce_ReverbAudioSource.cpp │ │ ├── juce_ReverbAudioSource.h │ │ ├── juce_ToneGeneratorAudioSource.cpp │ │ └── juce_ToneGeneratorAudioSource.h │ ├── synthesisers │ │ ├── juce_Synthesiser.cpp │ │ └── juce_Synthesiser.h │ └── utilities │ │ ├── juce_ADSR.h │ │ ├── juce_Decibels.h │ │ ├── juce_GenericInterpolator.h │ │ ├── juce_IIRFilter.cpp │ │ ├── juce_IIRFilter.h │ │ ├── juce_Interpolators.cpp │ │ ├── juce_Interpolators.h │ │ ├── juce_LagrangeInterpolator.cpp │ │ ├── juce_Reverb.h │ │ ├── juce_SmoothedValue.cpp │ │ ├── juce_SmoothedValue.h │ │ └── juce_WindowedSincInterpolator.cpp │ ├── juce_audio_devices │ ├── audio_io │ │ ├── juce_AudioDeviceManager.cpp │ │ ├── juce_AudioDeviceManager.h │ │ ├── juce_AudioIODevice.cpp │ │ ├── juce_AudioIODevice.h │ │ ├── juce_AudioIODeviceType.cpp │ │ ├── juce_AudioIODeviceType.h │ │ └── juce_SystemAudioVolume.h │ ├── juce_audio_devices.cpp │ ├── juce_audio_devices.h │ ├── juce_audio_devices.mm │ ├── midi_io │ │ ├── juce_MidiDevices.cpp │ │ ├── juce_MidiDevices.h │ │ ├── juce_MidiMessageCollector.cpp │ │ ├── juce_MidiMessageCollector.h │ │ └── ump │ │ │ ├── juce_UMPBytestreamInputHandler.h │ │ │ ├── juce_UMPConversion.h │ │ │ ├── juce_UMPConverters.h │ │ │ ├── juce_UMPDispatcher.h │ │ │ ├── juce_UMPFactory.h │ │ │ ├── juce_UMPIterator.h │ │ │ ├── juce_UMPMidi1ToBytestreamTranslator.h │ │ │ ├── juce_UMPMidi1ToMidi2DefaultTranslator.cpp │ │ │ ├── juce_UMPMidi1ToMidi2DefaultTranslator.h │ │ │ ├── juce_UMPProtocols.h │ │ │ ├── juce_UMPReceiver.h │ │ │ ├── juce_UMPSysEx7.cpp │ │ │ ├── juce_UMPSysEx7.h │ │ │ ├── juce_UMPTests.cpp │ │ │ ├── juce_UMPU32InputHandler.h │ │ │ ├── juce_UMPUtils.cpp │ │ │ ├── juce_UMPUtils.h │ │ │ ├── juce_UMPView.cpp │ │ │ ├── juce_UMPView.h │ │ │ ├── juce_UMPacket.h │ │ │ └── juce_UMPackets.h │ ├── native │ │ ├── java │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ └── JuceMidiSupport.java │ │ ├── juce_MidiDataConcatenator.h │ │ ├── juce_android_Audio.cpp │ │ ├── juce_android_HighPerformanceAudioHelpers.h │ │ ├── juce_android_Midi.cpp │ │ ├── juce_android_Oboe.cpp │ │ ├── juce_android_OpenSL.cpp │ │ ├── juce_ios_Audio.cpp │ │ ├── juce_ios_Audio.h │ │ ├── juce_linux_ALSA.cpp │ │ ├── juce_linux_Bela.cpp │ │ ├── juce_linux_JackAudio.cpp │ │ ├── juce_linux_Midi.cpp │ │ ├── juce_mac_CoreAudio.cpp │ │ ├── juce_mac_CoreMidi.mm │ │ ├── juce_win32_ASIO.cpp │ │ ├── juce_win32_DirectSound.cpp │ │ ├── juce_win32_Midi.cpp │ │ ├── juce_win32_WASAPI.cpp │ │ └── oboe │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── include │ │ │ └── oboe │ │ │ │ ├── AudioStream.h │ │ │ │ ├── AudioStreamBase.h │ │ │ │ ├── AudioStreamBuilder.h │ │ │ │ ├── AudioStreamCallback.h │ │ │ │ ├── Definitions.h │ │ │ │ ├── LatencyTuner.h │ │ │ │ ├── Oboe.h │ │ │ │ ├── ResultWithValue.h │ │ │ │ ├── StabilizedCallback.h │ │ │ │ ├── Utilities.h │ │ │ │ └── Version.h │ │ │ ├── readme.md │ │ │ └── src │ │ │ ├── aaudio │ │ │ ├── AAudioLoader.cpp │ │ │ ├── AAudioLoader.h │ │ │ ├── AudioStreamAAudio.cpp │ │ │ └── AudioStreamAAudio.h │ │ │ ├── common │ │ │ ├── AudioClock.h │ │ │ ├── AudioSourceCaller.cpp │ │ │ ├── AudioSourceCaller.h │ │ │ ├── AudioStream.cpp │ │ │ ├── AudioStreamBuilder.cpp │ │ │ ├── DataConversionFlowGraph.cpp │ │ │ ├── DataConversionFlowGraph.h │ │ │ ├── FilterAudioStream.cpp │ │ │ ├── FilterAudioStream.h │ │ │ ├── FixedBlockAdapter.cpp │ │ │ ├── FixedBlockAdapter.h │ │ │ ├── FixedBlockReader.cpp │ │ │ ├── FixedBlockReader.h │ │ │ ├── FixedBlockWriter.cpp │ │ │ ├── FixedBlockWriter.h │ │ │ ├── LatencyTuner.cpp │ │ │ ├── MonotonicCounter.h │ │ │ ├── OboeDebug.h │ │ │ ├── QuirksManager.cpp │ │ │ ├── QuirksManager.h │ │ │ ├── SourceFloatCaller.cpp │ │ │ ├── SourceFloatCaller.h │ │ │ ├── SourceI16Caller.cpp │ │ │ ├── SourceI16Caller.h │ │ │ ├── StabilizedCallback.cpp │ │ │ ├── Trace.cpp │ │ │ ├── Trace.h │ │ │ ├── Utilities.cpp │ │ │ └── Version.cpp │ │ │ ├── fifo │ │ │ ├── FifoBuffer.cpp │ │ │ ├── FifoBuffer.h │ │ │ ├── FifoController.cpp │ │ │ ├── FifoController.h │ │ │ ├── FifoControllerBase.cpp │ │ │ ├── FifoControllerBase.h │ │ │ ├── FifoControllerIndirect.cpp │ │ │ └── FifoControllerIndirect.h │ │ │ ├── flowgraph │ │ │ ├── ChannelCountConverter.cpp │ │ │ ├── ChannelCountConverter.h │ │ │ ├── ClipToRange.cpp │ │ │ ├── ClipToRange.h │ │ │ ├── FlowGraphNode.cpp │ │ │ ├── FlowGraphNode.h │ │ │ ├── ManyToMultiConverter.cpp │ │ │ ├── ManyToMultiConverter.h │ │ │ ├── MonoToMultiConverter.cpp │ │ │ ├── MonoToMultiConverter.h │ │ │ ├── MultiToMonoConverter.cpp │ │ │ ├── MultiToMonoConverter.h │ │ │ ├── RampLinear.cpp │ │ │ ├── RampLinear.h │ │ │ ├── SampleRateConverter.cpp │ │ │ ├── SampleRateConverter.h │ │ │ ├── SinkFloat.cpp │ │ │ ├── SinkFloat.h │ │ │ ├── SinkI16.cpp │ │ │ ├── SinkI16.h │ │ │ ├── SinkI24.cpp │ │ │ ├── SinkI24.h │ │ │ ├── SourceFloat.cpp │ │ │ ├── SourceFloat.h │ │ │ ├── SourceI16.cpp │ │ │ ├── SourceI16.h │ │ │ ├── SourceI24.cpp │ │ │ ├── SourceI24.h │ │ │ └── resampler │ │ │ │ ├── HyperbolicCosineWindow.h │ │ │ │ ├── IntegerRatio.cpp │ │ │ │ ├── IntegerRatio.h │ │ │ │ ├── KaiserWindow.h │ │ │ │ ├── LinearResampler.cpp │ │ │ │ ├── LinearResampler.h │ │ │ │ ├── MultiChannelResampler.cpp │ │ │ │ ├── MultiChannelResampler.h │ │ │ │ ├── PolyphaseResampler.cpp │ │ │ │ ├── PolyphaseResampler.h │ │ │ │ ├── PolyphaseResamplerMono.cpp │ │ │ │ ├── PolyphaseResamplerMono.h │ │ │ │ ├── PolyphaseResamplerStereo.cpp │ │ │ │ ├── PolyphaseResamplerStereo.h │ │ │ │ ├── SincResampler.cpp │ │ │ │ ├── SincResampler.h │ │ │ │ ├── SincResamplerStereo.cpp │ │ │ │ └── SincResamplerStereo.h │ │ │ └── opensles │ │ │ ├── AudioInputStreamOpenSLES.cpp │ │ │ ├── AudioInputStreamOpenSLES.h │ │ │ ├── AudioOutputStreamOpenSLES.cpp │ │ │ ├── AudioOutputStreamOpenSLES.h │ │ │ ├── AudioStreamBuffered.cpp │ │ │ ├── AudioStreamBuffered.h │ │ │ ├── AudioStreamOpenSLES.cpp │ │ │ ├── AudioStreamOpenSLES.h │ │ │ ├── EngineOpenSLES.cpp │ │ │ ├── EngineOpenSLES.h │ │ │ ├── OpenSLESUtilities.cpp │ │ │ ├── OpenSLESUtilities.h │ │ │ ├── OutputMixerOpenSLES.cpp │ │ │ └── OutputMixerOpenSLES.h │ └── sources │ │ ├── juce_AudioSourcePlayer.cpp │ │ ├── juce_AudioSourcePlayer.h │ │ ├── juce_AudioTransportSource.cpp │ │ └── juce_AudioTransportSource.h │ ├── juce_audio_formats │ ├── codecs │ │ ├── flac │ │ │ ├── Flac Licence.txt │ │ │ ├── all.h │ │ │ ├── alloc.h │ │ │ ├── assert.h │ │ │ ├── callback.h │ │ │ ├── compat.h │ │ │ ├── endswap.h │ │ │ ├── export.h │ │ │ ├── format.h │ │ │ ├── libFLAC │ │ │ │ ├── bitmath.c │ │ │ │ ├── bitreader.c │ │ │ │ ├── bitwriter.c │ │ │ │ ├── cpu.c │ │ │ │ ├── crc.c │ │ │ │ ├── fixed.c │ │ │ │ ├── float.c │ │ │ │ ├── format.c │ │ │ │ ├── include │ │ │ │ │ ├── private │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── bitmath.h │ │ │ │ │ │ ├── bitreader.h │ │ │ │ │ │ ├── bitwriter.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── crc.h │ │ │ │ │ │ ├── fixed.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── lpc.h │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ ├── stream_encoder.h │ │ │ │ │ │ ├── stream_encoder_framing.h │ │ │ │ │ │ └── window.h │ │ │ │ │ └── protected │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ ├── lpc_flac.c │ │ │ │ ├── md5.c │ │ │ │ ├── memory.c │ │ │ │ ├── stream_decoder.c │ │ │ │ ├── stream_encoder.c │ │ │ │ ├── stream_encoder_framing.c │ │ │ │ └── window_flac.c │ │ │ ├── metadata.h │ │ │ ├── ordinals.h │ │ │ ├── stream_decoder.h │ │ │ ├── stream_encoder.h │ │ │ └── win_utf8_io.h │ │ ├── juce_AiffAudioFormat.cpp │ │ ├── juce_AiffAudioFormat.h │ │ ├── juce_CoreAudioFormat.cpp │ │ ├── juce_CoreAudioFormat.h │ │ ├── juce_FlacAudioFormat.cpp │ │ ├── juce_FlacAudioFormat.h │ │ ├── juce_LAMEEncoderAudioFormat.cpp │ │ ├── juce_LAMEEncoderAudioFormat.h │ │ ├── juce_MP3AudioFormat.cpp │ │ ├── juce_MP3AudioFormat.h │ │ ├── juce_OggVorbisAudioFormat.cpp │ │ ├── juce_OggVorbisAudioFormat.h │ │ ├── juce_WavAudioFormat.cpp │ │ ├── juce_WavAudioFormat.h │ │ ├── juce_WindowsMediaAudioFormat.cpp │ │ ├── juce_WindowsMediaAudioFormat.h │ │ └── oggvorbis │ │ │ ├── Ogg Vorbis Licence.txt │ │ │ ├── bitwise.c │ │ │ ├── codec.h │ │ │ ├── config_types.h │ │ │ ├── crctable.h │ │ │ ├── framing.c │ │ │ ├── libvorbis-1.3.7 │ │ │ ├── AUTHORS │ │ │ ├── CHANGES │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ └── lib │ │ │ │ ├── analysis.c │ │ │ │ ├── backends.h │ │ │ │ ├── bitrate.c │ │ │ │ ├── bitrate.h │ │ │ │ ├── block.c │ │ │ │ ├── books │ │ │ │ ├── coupled │ │ │ │ │ ├── res_books_51.h │ │ │ │ │ └── res_books_stereo.h │ │ │ │ ├── floor │ │ │ │ │ └── floor_books.h │ │ │ │ └── uncoupled │ │ │ │ │ └── res_books_uncoupled.h │ │ │ │ ├── codebook.c │ │ │ │ ├── codebook.h │ │ │ │ ├── codec_internal.h │ │ │ │ ├── envelope.c │ │ │ │ ├── envelope.h │ │ │ │ ├── floor0.c │ │ │ │ ├── floor1.c │ │ │ │ ├── highlevel.h │ │ │ │ ├── info.c │ │ │ │ ├── lookup.c │ │ │ │ ├── lookup.h │ │ │ │ ├── lookup_data.h │ │ │ │ ├── lpc.c │ │ │ │ ├── lpc.h │ │ │ │ ├── lsp.c │ │ │ │ ├── lsp.h │ │ │ │ ├── mapping0.c │ │ │ │ ├── masking.h │ │ │ │ ├── mdct.c │ │ │ │ ├── mdct.h │ │ │ │ ├── misc.c │ │ │ │ ├── misc.h │ │ │ │ ├── modes │ │ │ │ ├── floor_all.h │ │ │ │ ├── psych_11.h │ │ │ │ ├── psych_16.h │ │ │ │ ├── psych_44.h │ │ │ │ ├── psych_8.h │ │ │ │ ├── residue_16.h │ │ │ │ ├── residue_44.h │ │ │ │ ├── residue_44p51.h │ │ │ │ ├── residue_44u.h │ │ │ │ ├── residue_8.h │ │ │ │ ├── setup_11.h │ │ │ │ ├── setup_16.h │ │ │ │ ├── setup_22.h │ │ │ │ ├── setup_32.h │ │ │ │ ├── setup_44.h │ │ │ │ ├── setup_44p51.h │ │ │ │ ├── setup_44u.h │ │ │ │ ├── setup_8.h │ │ │ │ └── setup_X.h │ │ │ │ ├── os.h │ │ │ │ ├── psy.c │ │ │ │ ├── psy.h │ │ │ │ ├── registry.c │ │ │ │ ├── registry.h │ │ │ │ ├── res0.c │ │ │ │ ├── scales.h │ │ │ │ ├── sharedbook.c │ │ │ │ ├── smallft.c │ │ │ │ ├── smallft.h │ │ │ │ ├── synthesis.c │ │ │ │ ├── vorbisenc.c │ │ │ │ ├── vorbisfile.c │ │ │ │ ├── window.c │ │ │ │ └── window.h │ │ │ ├── ogg.h │ │ │ ├── os_types.h │ │ │ ├── vorbisenc.h │ │ │ └── vorbisfile.h │ ├── format │ │ ├── juce_AudioFormat.cpp │ │ ├── juce_AudioFormat.h │ │ ├── juce_AudioFormatManager.cpp │ │ ├── juce_AudioFormatManager.h │ │ ├── juce_AudioFormatReader.cpp │ │ ├── juce_AudioFormatReader.h │ │ ├── juce_AudioFormatReaderSource.cpp │ │ ├── juce_AudioFormatReaderSource.h │ │ ├── juce_AudioFormatWriter.cpp │ │ ├── juce_AudioFormatWriter.h │ │ ├── juce_AudioSubsectionReader.cpp │ │ ├── juce_AudioSubsectionReader.h │ │ ├── juce_BufferingAudioFormatReader.cpp │ │ ├── juce_BufferingAudioFormatReader.h │ │ └── juce_MemoryMappedAudioFormatReader.h │ ├── juce_audio_formats.cpp │ ├── juce_audio_formats.h │ ├── juce_audio_formats.mm │ └── sampler │ │ ├── juce_Sampler.cpp │ │ └── juce_Sampler.h │ ├── juce_audio_plugin_client │ ├── AAX │ │ ├── juce_AAX_Modifier_Injector.h │ │ └── juce_AAX_Wrapper.cpp │ ├── AU │ │ ├── AUResources.r │ │ ├── CoreAudioUtilityClasses │ │ │ ├── AUBase.cpp │ │ │ ├── AUBase.h │ │ │ ├── AUBaseHelper.h │ │ │ ├── AUBuffer.cpp │ │ │ ├── AUBuffer.h │ │ │ ├── AUCarbonViewBase.cpp │ │ │ ├── AUCarbonViewBase.h │ │ │ ├── AUCarbonViewControl.cpp │ │ │ ├── AUCarbonViewControl.h │ │ │ ├── AUCarbonViewDispatch.cpp │ │ │ ├── AUDispatch.cpp │ │ │ ├── AUDispatch.h │ │ │ ├── AUInputElement.cpp │ │ │ ├── AUInputElement.h │ │ │ ├── AUInputFormatConverter.h │ │ │ ├── AUMIDIBase.cpp │ │ │ ├── AUMIDIBase.h │ │ │ ├── AUOutputBase.cpp │ │ │ ├── AUOutputBase.h │ │ │ ├── AUOutputElement.cpp │ │ │ ├── AUOutputElement.h │ │ │ ├── AUPlugInDispatch.cpp │ │ │ ├── AUPlugInDispatch.h │ │ │ ├── AUScopeElement.cpp │ │ │ ├── AUScopeElement.h │ │ │ ├── AUSilentTimeout.h │ │ │ ├── AUTimestampGenerator.h │ │ │ ├── AUViewLocalizedStringKeys.h │ │ │ ├── CAAUParameter.cpp │ │ │ ├── CAAUParameter.h │ │ │ ├── CAAtomic.h │ │ │ ├── CAAtomicStack.h │ │ │ ├── CAAudioChannelLayout.cpp │ │ │ ├── CAAudioChannelLayout.h │ │ │ ├── CAAutoDisposer.h │ │ │ ├── CADebugMacros.h │ │ │ ├── CADebugPrintf.h │ │ │ ├── CAException.h │ │ │ ├── CAHostTimeBase.h │ │ │ ├── CAMath.h │ │ │ ├── CAMutex.cpp │ │ │ ├── CAMutex.h │ │ │ ├── CAReferenceCounted.h │ │ │ ├── CAStreamBasicDescription.cpp │ │ │ ├── CAStreamBasicDescription.h │ │ │ ├── CAThreadSafeList.h │ │ │ ├── CAVectorUnit.cpp │ │ │ ├── CAVectorUnit.h │ │ │ ├── CAVectorUnitTypes.h │ │ │ ├── CAXException.h │ │ │ ├── CarbonEventHandler.cpp │ │ │ ├── CarbonEventHandler.h │ │ │ ├── ComponentBase.cpp │ │ │ ├── ComponentBase.h │ │ │ ├── MusicDeviceBase.cpp │ │ │ └── MusicDeviceBase.h │ │ ├── juce_AU_Wrapper.mm │ │ └── juce_AUv3_Wrapper.mm │ ├── AUResources.r │ ├── RTAS │ │ ├── juce_RTAS_DigiCode1.cpp │ │ ├── juce_RTAS_DigiCode2.cpp │ │ ├── juce_RTAS_DigiCode3.cpp │ │ ├── juce_RTAS_DigiCode_Header.h │ │ ├── juce_RTAS_MacUtilities.mm │ │ ├── juce_RTAS_WinExports.def │ │ ├── juce_RTAS_WinResources.rsr │ │ ├── juce_RTAS_WinUtilities.cpp │ │ └── juce_RTAS_Wrapper.cpp │ ├── Standalone │ │ ├── juce_StandaloneFilterApp.cpp │ │ └── juce_StandaloneFilterWindow.h │ ├── Unity │ │ ├── juce_UnityPluginInterface.h │ │ └── juce_Unity_Wrapper.cpp │ ├── VST │ │ ├── juce_VSTCallbackHandler.h │ │ ├── juce_VST_Wrapper.cpp │ │ └── juce_VST_Wrapper.mm │ ├── VST3 │ │ └── juce_VST3_Wrapper.cpp │ ├── juce_audio_plugin_client.h │ ├── juce_audio_plugin_client_AAX.cpp │ ├── juce_audio_plugin_client_AAX.mm │ ├── juce_audio_plugin_client_AU.r │ ├── juce_audio_plugin_client_AU_1.mm │ ├── juce_audio_plugin_client_AU_2.mm │ ├── juce_audio_plugin_client_AUv3.mm │ ├── juce_audio_plugin_client_RTAS.r │ ├── juce_audio_plugin_client_RTAS_1.cpp │ ├── juce_audio_plugin_client_RTAS_2.cpp │ ├── juce_audio_plugin_client_RTAS_3.cpp │ ├── juce_audio_plugin_client_RTAS_4.cpp │ ├── juce_audio_plugin_client_RTAS_utils.cpp │ ├── juce_audio_plugin_client_RTAS_utils.mm │ ├── juce_audio_plugin_client_Standalone.cpp │ ├── juce_audio_plugin_client_Unity.cpp │ ├── juce_audio_plugin_client_VST2.cpp │ ├── juce_audio_plugin_client_VST3.cpp │ ├── juce_audio_plugin_client_VST_utils.mm │ ├── juce_audio_plugin_client_utils.cpp │ └── utility │ │ ├── juce_CarbonVisibility.h │ │ ├── juce_CheckSettingMacros.h │ │ ├── juce_CreatePluginFilter.h │ │ ├── juce_FakeMouseMoveGenerator.h │ │ ├── juce_IncludeModuleHeaders.h │ │ ├── juce_IncludeSystemHeaders.h │ │ ├── juce_PluginHostType.h │ │ ├── juce_PluginUtilities.cpp │ │ └── juce_WindowsHooks.h │ ├── juce_audio_processors │ ├── format │ │ ├── juce_AudioPluginFormat.cpp │ │ ├── juce_AudioPluginFormat.h │ │ ├── juce_AudioPluginFormatManager.cpp │ │ └── juce_AudioPluginFormatManager.h │ ├── format_types │ │ ├── VST3_SDK │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── VST3_License_Agreement.pdf │ │ │ ├── VST3_Usage_Guidelines.pdf │ │ │ ├── base │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── source │ │ │ │ │ ├── baseiids.cpp │ │ │ │ │ ├── classfactoryhelpers.h │ │ │ │ │ ├── fbuffer.cpp │ │ │ │ │ ├── fbuffer.h │ │ │ │ │ ├── fdebug.cpp │ │ │ │ │ ├── fdebug.h │ │ │ │ │ ├── fobject.cpp │ │ │ │ │ ├── fobject.h │ │ │ │ │ ├── fstreamer.cpp │ │ │ │ │ ├── fstreamer.h │ │ │ │ │ ├── fstring.cpp │ │ │ │ │ ├── fstring.h │ │ │ │ │ ├── updatehandler.cpp │ │ │ │ │ └── updatehandler.h │ │ │ │ └── thread │ │ │ │ │ ├── include │ │ │ │ │ └── flock.h │ │ │ │ │ └── source │ │ │ │ │ └── flock.cpp │ │ │ ├── pluginterfaces │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── base │ │ │ │ │ ├── conststringtable.cpp │ │ │ │ │ ├── conststringtable.h │ │ │ │ │ ├── coreiids.cpp │ │ │ │ │ ├── falignpop.h │ │ │ │ │ ├── falignpush.h │ │ │ │ │ ├── fplatform.h │ │ │ │ │ ├── fstrdefs.h │ │ │ │ │ ├── ftypes.h │ │ │ │ │ ├── funknown.cpp │ │ │ │ │ ├── funknown.h │ │ │ │ │ ├── futils.h │ │ │ │ │ ├── fvariant.h │ │ │ │ │ ├── ibstream.h │ │ │ │ │ ├── icloneable.h │ │ │ │ │ ├── ipersistent.h │ │ │ │ │ ├── ipluginbase.h │ │ │ │ │ ├── istringresult.h │ │ │ │ │ ├── iupdatehandler.h │ │ │ │ │ ├── smartpointer.h │ │ │ │ │ ├── typesizecheck.h │ │ │ │ │ ├── ustring.cpp │ │ │ │ │ └── ustring.h │ │ │ │ ├── gui │ │ │ │ │ ├── iplugview.h │ │ │ │ │ └── iplugviewcontentscalesupport.h │ │ │ │ └── vst │ │ │ │ │ ├── ivstattributes.h │ │ │ │ │ ├── ivstaudioprocessor.h │ │ │ │ │ ├── ivstautomationstate.h │ │ │ │ │ ├── ivstchannelcontextinfo.h │ │ │ │ │ ├── ivstcomponent.h │ │ │ │ │ ├── ivstcontextmenu.h │ │ │ │ │ ├── ivsteditcontroller.h │ │ │ │ │ ├── ivstevents.h │ │ │ │ │ ├── ivsthostapplication.h │ │ │ │ │ ├── ivstinterappaudio.h │ │ │ │ │ ├── ivstmessage.h │ │ │ │ │ ├── ivstmidicontrollers.h │ │ │ │ │ ├── ivstmidilearn.h │ │ │ │ │ ├── ivstnoteexpression.h │ │ │ │ │ ├── ivstparameterchanges.h │ │ │ │ │ ├── ivstphysicalui.h │ │ │ │ │ ├── ivstpluginterfacesupport.h │ │ │ │ │ ├── ivstplugview.h │ │ │ │ │ ├── ivstprefetchablesupport.h │ │ │ │ │ ├── ivstprocesscontext.h │ │ │ │ │ ├── ivstrepresentation.h │ │ │ │ │ ├── ivsttestplugprovider.h │ │ │ │ │ ├── ivstunits.h │ │ │ │ │ ├── vstpshpack4.h │ │ │ │ │ ├── vstspeaker.h │ │ │ │ │ └── vsttypes.h │ │ │ └── public.sdk │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ └── source │ │ │ │ ├── common │ │ │ │ ├── memorystream.cpp │ │ │ │ ├── memorystream.h │ │ │ │ ├── pluginview.cpp │ │ │ │ └── pluginview.h │ │ │ │ └── vst │ │ │ │ ├── hosting │ │ │ │ ├── hostclasses.cpp │ │ │ │ ├── hostclasses.h │ │ │ │ ├── pluginterfacesupport.cpp │ │ │ │ └── pluginterfacesupport.h │ │ │ │ ├── vstbus.cpp │ │ │ │ ├── vstbus.h │ │ │ │ ├── vstcomponent.cpp │ │ │ │ ├── vstcomponent.h │ │ │ │ ├── vstcomponentbase.cpp │ │ │ │ ├── vstcomponentbase.h │ │ │ │ ├── vsteditcontroller.cpp │ │ │ │ ├── vsteditcontroller.h │ │ │ │ ├── vstinitiids.cpp │ │ │ │ ├── vstparameters.cpp │ │ │ │ ├── vstparameters.h │ │ │ │ ├── vstpresetfile.cpp │ │ │ │ └── vstpresetfile.h │ │ ├── juce_AU_Shared.h │ │ ├── juce_AudioUnitPluginFormat.h │ │ ├── juce_AudioUnitPluginFormat.mm │ │ ├── juce_LADSPAPluginFormat.cpp │ │ ├── juce_LADSPAPluginFormat.h │ │ ├── juce_LegacyAudioParameter.cpp │ │ ├── juce_VST3Common.h │ │ ├── juce_VST3Headers.h │ │ ├── juce_VST3PluginFormat.cpp │ │ ├── juce_VST3PluginFormat.h │ │ ├── juce_VSTCommon.h │ │ ├── juce_VSTMidiEventList.h │ │ ├── juce_VSTPluginFormat.cpp │ │ └── juce_VSTPluginFormat.h │ ├── juce_audio_processors.cpp │ ├── juce_audio_processors.h │ ├── juce_audio_processors.mm │ ├── processors │ │ ├── juce_AudioPluginInstance.cpp │ │ ├── juce_AudioPluginInstance.h │ │ ├── juce_AudioProcessor.cpp │ │ ├── juce_AudioProcessor.h │ │ ├── juce_AudioProcessorEditor.cpp │ │ ├── juce_AudioProcessorEditor.h │ │ ├── juce_AudioProcessorGraph.cpp │ │ ├── juce_AudioProcessorGraph.h │ │ ├── juce_AudioProcessorListener.h │ │ ├── juce_AudioProcessorParameter.h │ │ ├── juce_AudioProcessorParameterGroup.cpp │ │ ├── juce_AudioProcessorParameterGroup.h │ │ ├── juce_GenericAudioProcessorEditor.cpp │ │ ├── juce_GenericAudioProcessorEditor.h │ │ ├── juce_PluginDescription.cpp │ │ └── juce_PluginDescription.h │ ├── scanning │ │ ├── juce_KnownPluginList.cpp │ │ ├── juce_KnownPluginList.h │ │ ├── juce_PluginDirectoryScanner.cpp │ │ ├── juce_PluginDirectoryScanner.h │ │ ├── juce_PluginListComponent.cpp │ │ └── juce_PluginListComponent.h │ └── utilities │ │ ├── juce_AudioParameterBool.cpp │ │ ├── juce_AudioParameterBool.h │ │ ├── juce_AudioParameterChoice.cpp │ │ ├── juce_AudioParameterChoice.h │ │ ├── juce_AudioParameterFloat.cpp │ │ ├── juce_AudioParameterFloat.h │ │ ├── juce_AudioParameterInt.cpp │ │ ├── juce_AudioParameterInt.h │ │ ├── juce_AudioProcessorParameterWithID.cpp │ │ ├── juce_AudioProcessorParameterWithID.h │ │ ├── juce_AudioProcessorValueTreeState.cpp │ │ ├── juce_AudioProcessorValueTreeState.h │ │ ├── juce_ParameterAttachments.cpp │ │ ├── juce_ParameterAttachments.h │ │ ├── juce_RangedAudioParameter.cpp │ │ └── juce_RangedAudioParameter.h │ ├── juce_audio_utils │ ├── audio_cd │ │ ├── juce_AudioCDBurner.h │ │ ├── juce_AudioCDReader.cpp │ │ └── juce_AudioCDReader.h │ ├── gui │ │ ├── juce_AudioAppComponent.cpp │ │ ├── juce_AudioAppComponent.h │ │ ├── juce_AudioDeviceSelectorComponent.cpp │ │ ├── juce_AudioDeviceSelectorComponent.h │ │ ├── juce_AudioThumbnail.cpp │ │ ├── juce_AudioThumbnail.h │ │ ├── juce_AudioThumbnailBase.h │ │ ├── juce_AudioThumbnailCache.cpp │ │ ├── juce_AudioThumbnailCache.h │ │ ├── juce_AudioVisualiserComponent.cpp │ │ ├── juce_AudioVisualiserComponent.h │ │ ├── juce_BluetoothMidiDevicePairingDialogue.h │ │ ├── juce_MidiKeyboardComponent.cpp │ │ └── juce_MidiKeyboardComponent.h │ ├── juce_audio_utils.cpp │ ├── juce_audio_utils.h │ ├── juce_audio_utils.mm │ ├── native │ │ ├── juce_android_BluetoothMidiDevicePairingDialogue.cpp │ │ ├── juce_ios_BluetoothMidiDevicePairingDialogue.mm │ │ ├── juce_linux_AudioCDReader.cpp │ │ ├── juce_linux_BluetoothMidiDevicePairingDialogue.cpp │ │ ├── juce_mac_AudioCDBurner.mm │ │ ├── juce_mac_AudioCDReader.mm │ │ ├── juce_mac_BluetoothMidiDevicePairingDialogue.mm │ │ ├── juce_win32_AudioCDBurner.cpp │ │ ├── juce_win32_AudioCDReader.cpp │ │ └── juce_win_BluetoothMidiDevicePairingDialogue.cpp │ └── players │ │ ├── juce_AudioProcessorPlayer.cpp │ │ ├── juce_AudioProcessorPlayer.h │ │ ├── juce_SoundPlayer.cpp │ │ └── juce_SoundPlayer.h │ ├── juce_blocks_basics │ ├── README.txt │ ├── blocks │ │ ├── juce_Block.cpp │ │ ├── juce_Block.h │ │ ├── juce_BlockConfigManager.h │ │ ├── juce_BlocksVersion.cpp │ │ ├── juce_BlocksVersion.h │ │ ├── juce_ControlButton.h │ │ ├── juce_LEDGrid.h │ │ ├── juce_LEDRow.h │ │ ├── juce_StatusLight.h │ │ ├── juce_TouchList.h │ │ └── juce_TouchSurface.h │ ├── juce_LittleFootFunctions.dox │ ├── juce_blocks_basics.cpp │ ├── juce_blocks_basics.h │ ├── littlefoot │ │ ├── LittleFoot Language README.txt │ │ ├── juce_LittleFootCompiler.h │ │ ├── juce_LittleFootRemoteHeap.h │ │ └── juce_LittleFootRunner.h │ ├── protocol │ │ ├── Protocol Format.txt │ │ ├── juce_BitPackingUtilities.h │ │ ├── juce_BlockModels.h │ │ ├── juce_BlocksProtocolDefinitions.h │ │ ├── juce_HostPacketBuilder.h │ │ └── juce_HostPacketDecoder.h │ ├── topology │ │ ├── internal │ │ │ ├── juce_BandwidthStatsLogger.cpp │ │ │ ├── juce_BlockImplementation.cpp │ │ │ ├── juce_BlockSerialReader.cpp │ │ │ ├── juce_ConnectedDeviceGroup.cpp │ │ │ ├── juce_DepreciatedVersionReader.cpp │ │ │ ├── juce_Detector.cpp │ │ │ ├── juce_DetectorHolder.cpp │ │ │ ├── juce_DeviceInfo.cpp │ │ │ ├── juce_MIDIDeviceDetector.cpp │ │ │ └── juce_MidiDeviceConnection.cpp │ │ ├── juce_BlockGraph.cpp │ │ ├── juce_BlockGraph.h │ │ ├── juce_PhysicalTopologySource.cpp │ │ ├── juce_PhysicalTopologySource.h │ │ ├── juce_RuleBasedTopologySource.cpp │ │ ├── juce_RuleBasedTopologySource.h │ │ ├── juce_Topology.h │ │ └── juce_TopologySource.h │ └── visualisers │ │ ├── juce_BitmapLEDProgram.cpp │ │ ├── juce_BitmapLEDProgram.h │ │ ├── juce_DrumPadLEDProgram.cpp │ │ └── juce_DrumPadLEDProgram.h │ ├── juce_box2d │ ├── box2d │ │ ├── Box2D.h │ │ ├── Collision │ │ │ ├── Shapes │ │ │ │ ├── b2ChainShape.cpp │ │ │ │ ├── b2ChainShape.h │ │ │ │ ├── b2CircleShape.cpp │ │ │ │ ├── b2CircleShape.h │ │ │ │ ├── b2EdgeShape.cpp │ │ │ │ ├── b2EdgeShape.h │ │ │ │ ├── b2PolygonShape.cpp │ │ │ │ ├── b2PolygonShape.h │ │ │ │ └── b2Shape.h │ │ │ ├── b2BroadPhase.cpp │ │ │ ├── b2BroadPhase.h │ │ │ ├── b2CollideCircle.cpp │ │ │ ├── b2CollideEdge.cpp │ │ │ ├── b2CollidePolygon.cpp │ │ │ ├── b2Collision.cpp │ │ │ ├── b2Collision.h │ │ │ ├── b2Distance.cpp │ │ │ ├── b2Distance.h │ │ │ ├── b2DynamicTree.cpp │ │ │ ├── b2DynamicTree.h │ │ │ ├── b2TimeOfImpact.cpp │ │ │ └── b2TimeOfImpact.h │ │ ├── Common │ │ │ ├── b2BlockAllocator.cpp │ │ │ ├── b2BlockAllocator.h │ │ │ ├── b2Draw.cpp │ │ │ ├── b2Draw.h │ │ │ ├── b2GrowableStack.h │ │ │ ├── b2Math.cpp │ │ │ ├── b2Math.h │ │ │ ├── b2Settings.cpp │ │ │ ├── b2Settings.h │ │ │ ├── b2StackAllocator.cpp │ │ │ ├── b2StackAllocator.h │ │ │ ├── b2Timer.cpp │ │ │ └── b2Timer.h │ │ ├── Dynamics │ │ │ ├── Contacts │ │ │ │ ├── b2ChainAndCircleContact.cpp │ │ │ │ ├── b2ChainAndCircleContact.h │ │ │ │ ├── b2ChainAndPolygonContact.cpp │ │ │ │ ├── b2ChainAndPolygonContact.h │ │ │ │ ├── b2CircleContact.cpp │ │ │ │ ├── b2CircleContact.h │ │ │ │ ├── b2Contact.cpp │ │ │ │ ├── b2Contact.h │ │ │ │ ├── b2ContactSolver.cpp │ │ │ │ ├── b2ContactSolver.h │ │ │ │ ├── b2EdgeAndCircleContact.cpp │ │ │ │ ├── b2EdgeAndCircleContact.h │ │ │ │ ├── b2EdgeAndPolygonContact.cpp │ │ │ │ ├── b2EdgeAndPolygonContact.h │ │ │ │ ├── b2PolygonAndCircleContact.cpp │ │ │ │ ├── b2PolygonAndCircleContact.h │ │ │ │ ├── b2PolygonContact.cpp │ │ │ │ └── b2PolygonContact.h │ │ │ ├── Joints │ │ │ │ ├── b2DistanceJoint.cpp │ │ │ │ ├── b2DistanceJoint.h │ │ │ │ ├── b2FrictionJoint.cpp │ │ │ │ ├── b2FrictionJoint.h │ │ │ │ ├── b2GearJoint.cpp │ │ │ │ ├── b2GearJoint.h │ │ │ │ ├── b2Joint.cpp │ │ │ │ ├── b2Joint.h │ │ │ │ ├── b2MouseJoint.cpp │ │ │ │ ├── b2MouseJoint.h │ │ │ │ ├── b2PrismaticJoint.cpp │ │ │ │ ├── b2PrismaticJoint.h │ │ │ │ ├── b2PulleyJoint.cpp │ │ │ │ ├── b2PulleyJoint.h │ │ │ │ ├── b2RevoluteJoint.cpp │ │ │ │ ├── b2RevoluteJoint.h │ │ │ │ ├── b2RopeJoint.cpp │ │ │ │ ├── b2RopeJoint.h │ │ │ │ ├── b2WeldJoint.cpp │ │ │ │ ├── b2WeldJoint.h │ │ │ │ ├── b2WheelJoint.cpp │ │ │ │ └── b2WheelJoint.h │ │ │ ├── b2Body.cpp │ │ │ ├── b2Body.h │ │ │ ├── b2ContactManager.cpp │ │ │ ├── b2ContactManager.h │ │ │ ├── b2Fixture.cpp │ │ │ ├── b2Fixture.h │ │ │ ├── b2Island.cpp │ │ │ ├── b2Island.h │ │ │ ├── b2TimeStep.h │ │ │ ├── b2World.cpp │ │ │ ├── b2World.h │ │ │ ├── b2WorldCallbacks.cpp │ │ │ └── b2WorldCallbacks.h │ │ ├── README.txt │ │ └── Rope │ │ │ ├── b2Rope.cpp │ │ │ └── b2Rope.h │ ├── juce_box2d.cpp │ ├── juce_box2d.h │ └── utils │ │ ├── juce_Box2DRenderer.cpp │ │ └── juce_Box2DRenderer.h │ ├── juce_core │ ├── containers │ │ ├── juce_AbstractFifo.cpp │ │ ├── juce_AbstractFifo.h │ │ ├── juce_Array.h │ │ ├── juce_ArrayAllocationBase.h │ │ ├── juce_ArrayBase.cpp │ │ ├── juce_ArrayBase.h │ │ ├── juce_DynamicObject.cpp │ │ ├── juce_DynamicObject.h │ │ ├── juce_ElementComparator.h │ │ ├── juce_HashMap.h │ │ ├── juce_HashMap_test.cpp │ │ ├── juce_LinkedListPointer.h │ │ ├── juce_ListenerList.h │ │ ├── juce_NamedValueSet.cpp │ │ ├── juce_NamedValueSet.h │ │ ├── juce_OwnedArray.cpp │ │ ├── juce_OwnedArray.h │ │ ├── juce_PropertySet.cpp │ │ ├── juce_PropertySet.h │ │ ├── juce_ReferenceCountedArray.cpp │ │ ├── juce_ReferenceCountedArray.h │ │ ├── juce_ScopedValueSetter.h │ │ ├── juce_SortedSet.h │ │ ├── juce_SparseSet.cpp │ │ ├── juce_SparseSet.h │ │ ├── juce_Variant.cpp │ │ └── juce_Variant.h │ ├── files │ │ ├── juce_DirectoryIterator.cpp │ │ ├── juce_DirectoryIterator.h │ │ ├── juce_File.cpp │ │ ├── juce_File.h │ │ ├── juce_FileFilter.cpp │ │ ├── juce_FileFilter.h │ │ ├── juce_FileInputStream.cpp │ │ ├── juce_FileInputStream.h │ │ ├── juce_FileOutputStream.cpp │ │ ├── juce_FileOutputStream.h │ │ ├── juce_FileSearchPath.cpp │ │ ├── juce_FileSearchPath.h │ │ ├── juce_MemoryMappedFile.h │ │ ├── juce_RangedDirectoryIterator.cpp │ │ ├── juce_RangedDirectoryIterator.h │ │ ├── juce_TemporaryFile.cpp │ │ ├── juce_TemporaryFile.h │ │ ├── juce_WildcardFileFilter.cpp │ │ └── juce_WildcardFileFilter.h │ ├── javascript │ │ ├── juce_JSON.cpp │ │ ├── juce_JSON.h │ │ ├── juce_Javascript.cpp │ │ └── juce_Javascript.h │ ├── juce_core.cpp │ ├── juce_core.h │ ├── juce_core.mm │ ├── logging │ │ ├── juce_FileLogger.cpp │ │ ├── juce_FileLogger.h │ │ ├── juce_Logger.cpp │ │ └── juce_Logger.h │ ├── maths │ │ ├── juce_BigInteger.cpp │ │ ├── juce_BigInteger.h │ │ ├── juce_Expression.cpp │ │ ├── juce_Expression.h │ │ ├── juce_MathsFunctions.h │ │ ├── juce_NormalisableRange.h │ │ ├── juce_Random.cpp │ │ ├── juce_Random.h │ │ ├── juce_Range.h │ │ └── juce_StatisticsAccumulator.h │ ├── memory │ │ ├── juce_AllocationHooks.cpp │ │ ├── juce_AllocationHooks.h │ │ ├── juce_Atomic.h │ │ ├── juce_ByteOrder.h │ │ ├── juce_ContainerDeletePolicy.h │ │ ├── juce_HeapBlock.h │ │ ├── juce_HeavyweightLeakedObjectDetector.h │ │ ├── juce_LeakedObjectDetector.h │ │ ├── juce_Memory.h │ │ ├── juce_MemoryBlock.cpp │ │ ├── juce_MemoryBlock.h │ │ ├── juce_OptionalScopedPointer.h │ │ ├── juce_ReferenceCountedObject.h │ │ ├── juce_ScopedPointer.h │ │ ├── juce_SharedResourcePointer.h │ │ ├── juce_Singleton.h │ │ └── juce_WeakReference.h │ ├── misc │ │ ├── juce_ConsoleApplication.cpp │ │ ├── juce_ConsoleApplication.h │ │ ├── juce_Result.cpp │ │ ├── juce_Result.h │ │ ├── juce_RuntimePermissions.cpp │ │ ├── juce_RuntimePermissions.h │ │ ├── juce_Uuid.cpp │ │ ├── juce_Uuid.h │ │ └── juce_WindowsRegistry.h │ ├── native │ │ ├── java │ │ │ ├── README.txt │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ ├── FragmentOverlay.java │ │ │ │ ├── JuceHTTPStream.java │ │ │ │ └── JuceInvocationHandler.java │ │ ├── javacore │ │ │ ├── app │ │ │ │ └── com │ │ │ │ │ └── rmsl │ │ │ │ │ └── juce │ │ │ │ │ └── JuceApp.java │ │ │ └── init │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ └── Java.java │ │ ├── juce_BasicNativeHeaders.h │ │ ├── juce_android_Files.cpp │ │ ├── juce_android_JNIHelpers.cpp │ │ ├── juce_android_JNIHelpers.h │ │ ├── juce_android_Misc.cpp │ │ ├── juce_android_Network.cpp │ │ ├── juce_android_RuntimePermissions.cpp │ │ ├── juce_android_SystemStats.cpp │ │ ├── juce_android_Threads.cpp │ │ ├── juce_curl_Network.cpp │ │ ├── juce_linux_CommonFile.cpp │ │ ├── juce_linux_Files.cpp │ │ ├── juce_linux_Network.cpp │ │ ├── juce_linux_SystemStats.cpp │ │ ├── juce_linux_Threads.cpp │ │ ├── juce_mac_ClangBugWorkaround.h │ │ ├── juce_mac_Files.mm │ │ ├── juce_mac_Network.mm │ │ ├── juce_mac_Strings.mm │ │ ├── juce_mac_SystemStats.mm │ │ ├── juce_mac_Threads.mm │ │ ├── juce_osx_ObjCHelpers.h │ │ ├── juce_posix_IPAddress.h │ │ ├── juce_posix_NamedPipe.cpp │ │ ├── juce_posix_SharedCode.h │ │ ├── juce_win32_ComSmartPtr.h │ │ ├── juce_win32_Files.cpp │ │ ├── juce_win32_Network.cpp │ │ ├── juce_win32_Registry.cpp │ │ ├── juce_win32_SystemStats.cpp │ │ └── juce_win32_Threads.cpp │ ├── network │ │ ├── juce_IPAddress.cpp │ │ ├── juce_IPAddress.h │ │ ├── juce_MACAddress.cpp │ │ ├── juce_MACAddress.h │ │ ├── juce_NamedPipe.cpp │ │ ├── juce_NamedPipe.h │ │ ├── juce_Socket.cpp │ │ ├── juce_Socket.h │ │ ├── juce_URL.cpp │ │ ├── juce_URL.h │ │ ├── juce_WebInputStream.cpp │ │ └── juce_WebInputStream.h │ ├── streams │ │ ├── juce_BufferedInputStream.cpp │ │ ├── juce_BufferedInputStream.h │ │ ├── juce_FileInputSource.cpp │ │ ├── juce_FileInputSource.h │ │ ├── juce_InputSource.h │ │ ├── juce_InputStream.cpp │ │ ├── juce_InputStream.h │ │ ├── juce_MemoryInputStream.cpp │ │ ├── juce_MemoryInputStream.h │ │ ├── juce_MemoryOutputStream.cpp │ │ ├── juce_MemoryOutputStream.h │ │ ├── juce_OutputStream.cpp │ │ ├── juce_OutputStream.h │ │ ├── juce_SubregionStream.cpp │ │ ├── juce_SubregionStream.h │ │ ├── juce_URLInputSource.cpp │ │ └── juce_URLInputSource.h │ ├── system │ │ ├── juce_CompilerSupport.h │ │ ├── juce_CompilerWarnings.h │ │ ├── juce_PlatformDefs.h │ │ ├── juce_StandardHeader.h │ │ ├── juce_SystemStats.cpp │ │ ├── juce_SystemStats.h │ │ └── juce_TargetPlatform.h │ ├── text │ │ ├── juce_Base64.cpp │ │ ├── juce_Base64.h │ │ ├── juce_CharPointer_ASCII.h │ │ ├── juce_CharPointer_UTF16.h │ │ ├── juce_CharPointer_UTF32.h │ │ ├── juce_CharPointer_UTF8.h │ │ ├── juce_CharacterFunctions.cpp │ │ ├── juce_CharacterFunctions.h │ │ ├── juce_Identifier.cpp │ │ ├── juce_Identifier.h │ │ ├── juce_LocalisedStrings.cpp │ │ ├── juce_LocalisedStrings.h │ │ ├── juce_NewLine.h │ │ ├── juce_String.cpp │ │ ├── juce_String.h │ │ ├── juce_StringArray.cpp │ │ ├── juce_StringArray.h │ │ ├── juce_StringPairArray.cpp │ │ ├── juce_StringPairArray.h │ │ ├── juce_StringPool.cpp │ │ ├── juce_StringPool.h │ │ ├── juce_StringRef.h │ │ ├── juce_TextDiff.cpp │ │ └── juce_TextDiff.h │ ├── threads │ │ ├── juce_ChildProcess.cpp │ │ ├── juce_ChildProcess.h │ │ ├── juce_CriticalSection.h │ │ ├── juce_DynamicLibrary.h │ │ ├── juce_HighResolutionTimer.cpp │ │ ├── juce_HighResolutionTimer.h │ │ ├── juce_InterProcessLock.h │ │ ├── juce_Process.h │ │ ├── juce_ReadWriteLock.cpp │ │ ├── juce_ReadWriteLock.h │ │ ├── juce_ScopedLock.h │ │ ├── juce_ScopedReadLock.h │ │ ├── juce_ScopedWriteLock.h │ │ ├── juce_SpinLock.h │ │ ├── juce_Thread.cpp │ │ ├── juce_Thread.h │ │ ├── juce_ThreadLocalValue.h │ │ ├── juce_ThreadPool.cpp │ │ ├── juce_ThreadPool.h │ │ ├── juce_TimeSliceThread.cpp │ │ ├── juce_TimeSliceThread.h │ │ ├── juce_WaitableEvent.cpp │ │ └── juce_WaitableEvent.h │ ├── time │ │ ├── juce_PerformanceCounter.cpp │ │ ├── juce_PerformanceCounter.h │ │ ├── juce_RelativeTime.cpp │ │ ├── juce_RelativeTime.h │ │ ├── juce_Time.cpp │ │ └── juce_Time.h │ ├── unit_tests │ │ ├── juce_UnitTest.cpp │ │ ├── juce_UnitTest.h │ │ └── juce_UnitTestCategories.h │ ├── xml │ │ ├── juce_XmlDocument.cpp │ │ ├── juce_XmlDocument.h │ │ ├── juce_XmlElement.cpp │ │ └── juce_XmlElement.h │ └── zip │ │ ├── juce_GZIPCompressorOutputStream.cpp │ │ ├── juce_GZIPCompressorOutputStream.h │ │ ├── juce_GZIPDecompressorInputStream.cpp │ │ ├── juce_GZIPDecompressorInputStream.h │ │ ├── juce_ZipFile.cpp │ │ ├── juce_ZipFile.h │ │ └── zlib │ │ ├── README │ │ ├── adler32.c │ │ ├── compress.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── zconf.h │ │ ├── zconf.in.h │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h │ ├── juce_cryptography │ ├── encryption │ │ ├── juce_BlowFish.cpp │ │ ├── juce_BlowFish.h │ │ ├── juce_Primes.cpp │ │ ├── juce_Primes.h │ │ ├── juce_RSAKey.cpp │ │ └── juce_RSAKey.h │ ├── hashing │ │ ├── juce_MD5.cpp │ │ ├── juce_MD5.h │ │ ├── juce_SHA256.cpp │ │ ├── juce_SHA256.h │ │ ├── juce_Whirlpool.cpp │ │ └── juce_Whirlpool.h │ ├── juce_cryptography.cpp │ ├── juce_cryptography.h │ └── juce_cryptography.mm │ ├── juce_data_structures │ ├── app_properties │ │ ├── juce_ApplicationProperties.cpp │ │ ├── juce_ApplicationProperties.h │ │ ├── juce_PropertiesFile.cpp │ │ └── juce_PropertiesFile.h │ ├── juce_data_structures.cpp │ ├── juce_data_structures.h │ ├── juce_data_structures.mm │ ├── undomanager │ │ ├── juce_UndoManager.cpp │ │ ├── juce_UndoManager.h │ │ └── juce_UndoableAction.h │ └── values │ │ ├── juce_CachedValue.cpp │ │ ├── juce_CachedValue.h │ │ ├── juce_Value.cpp │ │ ├── juce_Value.h │ │ ├── juce_ValueTree.cpp │ │ ├── juce_ValueTree.h │ │ ├── juce_ValueTreeSynchroniser.cpp │ │ ├── juce_ValueTreeSynchroniser.h │ │ ├── juce_ValueWithDefault.cpp │ │ └── juce_ValueWithDefault.h │ ├── juce_dsp │ ├── containers │ │ ├── juce_AudioBlock.h │ │ ├── juce_AudioBlock_test.cpp │ │ ├── juce_FixedSizeFunction.h │ │ ├── juce_FixedSizeFunction_test.cpp │ │ ├── juce_SIMDRegister.h │ │ ├── juce_SIMDRegister_Impl.h │ │ └── juce_SIMDRegister_test.cpp │ ├── filter_design │ │ ├── juce_FilterDesign.cpp │ │ └── juce_FilterDesign.h │ ├── frequency │ │ ├── juce_Convolution.cpp │ │ ├── juce_Convolution.h │ │ ├── juce_Convolution_test.cpp │ │ ├── juce_FFT.cpp │ │ ├── juce_FFT.h │ │ ├── juce_FFT_test.cpp │ │ ├── juce_Windowing.cpp │ │ └── juce_Windowing.h │ ├── juce_dsp.cpp │ ├── juce_dsp.h │ ├── juce_dsp.mm │ ├── maths │ │ ├── juce_FastMathApproximations.h │ │ ├── juce_LogRampedValue.h │ │ ├── juce_LogRampedValue_test.cpp │ │ ├── juce_LookupTable.cpp │ │ ├── juce_LookupTable.h │ │ ├── juce_Matrix.cpp │ │ ├── juce_Matrix.h │ │ ├── juce_Matrix_test.cpp │ │ ├── juce_Phase.h │ │ ├── juce_Polynomial.h │ │ ├── juce_SpecialFunctions.cpp │ │ └── juce_SpecialFunctions.h │ ├── native │ │ ├── juce_avx_SIMDNativeOps.cpp │ │ ├── juce_avx_SIMDNativeOps.h │ │ ├── juce_fallback_SIMDNativeOps.h │ │ ├── juce_neon_SIMDNativeOps.cpp │ │ ├── juce_neon_SIMDNativeOps.h │ │ ├── juce_sse_SIMDNativeOps.cpp │ │ └── juce_sse_SIMDNativeOps.h │ ├── processors │ │ ├── juce_BallisticsFilter.cpp │ │ ├── juce_BallisticsFilter.h │ │ ├── juce_DelayLine.cpp │ │ ├── juce_DelayLine.h │ │ ├── juce_DryWetMixer.cpp │ │ ├── juce_DryWetMixer.h │ │ ├── juce_FIRFilter.cpp │ │ ├── juce_FIRFilter.h │ │ ├── juce_FIRFilter_test.cpp │ │ ├── juce_FirstOrderTPTFilter.cpp │ │ ├── juce_FirstOrderTPTFilter.h │ │ ├── juce_IIRFilter.cpp │ │ ├── juce_IIRFilter.h │ │ ├── juce_IIRFilter_Impl.h │ │ ├── juce_LinkwitzRileyFilter.cpp │ │ ├── juce_LinkwitzRileyFilter.h │ │ ├── juce_Oversampling.cpp │ │ ├── juce_Oversampling.h │ │ ├── juce_Panner.cpp │ │ ├── juce_Panner.h │ │ ├── juce_ProcessContext.h │ │ ├── juce_ProcessorChain.h │ │ ├── juce_ProcessorChain_test.cpp │ │ ├── juce_ProcessorDuplicator.h │ │ ├── juce_ProcessorWrapper.h │ │ ├── juce_StateVariableFilter.h │ │ ├── juce_StateVariableTPTFilter.cpp │ │ └── juce_StateVariableTPTFilter.h │ └── widgets │ │ ├── juce_Bias.h │ │ ├── juce_Chorus.cpp │ │ ├── juce_Chorus.h │ │ ├── juce_Compressor.cpp │ │ ├── juce_Compressor.h │ │ ├── juce_Gain.h │ │ ├── juce_LadderFilter.cpp │ │ ├── juce_LadderFilter.h │ │ ├── juce_Limiter.cpp │ │ ├── juce_Limiter.h │ │ ├── juce_NoiseGate.cpp │ │ ├── juce_NoiseGate.h │ │ ├── juce_Oscillator.h │ │ ├── juce_Phaser.cpp │ │ ├── juce_Phaser.h │ │ ├── juce_Reverb.h │ │ └── juce_WaveShaper.h │ ├── juce_events │ ├── broadcasters │ │ ├── juce_ActionBroadcaster.cpp │ │ ├── juce_ActionBroadcaster.h │ │ ├── juce_ActionListener.h │ │ ├── juce_AsyncUpdater.cpp │ │ ├── juce_AsyncUpdater.h │ │ ├── juce_ChangeBroadcaster.cpp │ │ ├── juce_ChangeBroadcaster.h │ │ └── juce_ChangeListener.h │ ├── interprocess │ │ ├── juce_ConnectedChildProcess.cpp │ │ ├── juce_ConnectedChildProcess.h │ │ ├── juce_InterprocessConnection.cpp │ │ ├── juce_InterprocessConnection.h │ │ ├── juce_InterprocessConnectionServer.cpp │ │ ├── juce_InterprocessConnectionServer.h │ │ ├── juce_NetworkServiceDiscovery.cpp │ │ └── juce_NetworkServiceDiscovery.h │ ├── juce_events.cpp │ ├── juce_events.h │ ├── juce_events.mm │ ├── messages │ │ ├── juce_ApplicationBase.cpp │ │ ├── juce_ApplicationBase.h │ │ ├── juce_CallbackMessage.h │ │ ├── juce_DeletedAtShutdown.cpp │ │ ├── juce_DeletedAtShutdown.h │ │ ├── juce_Initialisation.h │ │ ├── juce_Message.h │ │ ├── juce_MessageListener.cpp │ │ ├── juce_MessageListener.h │ │ ├── juce_MessageManager.cpp │ │ ├── juce_MessageManager.h │ │ ├── juce_MountedVolumeListChangeDetector.h │ │ └── juce_NotificationType.h │ ├── native │ │ ├── juce_android_Messaging.cpp │ │ ├── juce_ios_MessageManager.mm │ │ ├── juce_linux_EventLoop.h │ │ ├── juce_linux_Messaging.cpp │ │ ├── juce_mac_MessageManager.mm │ │ ├── juce_osx_MessageQueue.h │ │ ├── juce_win32_HiddenMessageWindow.h │ │ ├── juce_win32_Messaging.cpp │ │ ├── juce_win32_WinRTWrapper.cpp │ │ └── juce_win32_WinRTWrapper.h │ └── timers │ │ ├── juce_MultiTimer.cpp │ │ ├── juce_MultiTimer.h │ │ ├── juce_Timer.cpp │ │ └── juce_Timer.h │ ├── juce_graphics │ ├── colour │ │ ├── juce_Colour.cpp │ │ ├── juce_Colour.h │ │ ├── juce_ColourGradient.cpp │ │ ├── juce_ColourGradient.h │ │ ├── juce_Colours.cpp │ │ ├── juce_Colours.h │ │ ├── juce_FillType.cpp │ │ ├── juce_FillType.h │ │ └── juce_PixelFormats.h │ ├── contexts │ │ ├── juce_GraphicsContext.cpp │ │ ├── juce_GraphicsContext.h │ │ ├── juce_LowLevelGraphicsContext.h │ │ ├── juce_LowLevelGraphicsPostScriptRenderer.cpp │ │ ├── juce_LowLevelGraphicsPostScriptRenderer.h │ │ ├── juce_LowLevelGraphicsSoftwareRenderer.cpp │ │ └── juce_LowLevelGraphicsSoftwareRenderer.h │ ├── effects │ │ ├── juce_DropShadowEffect.cpp │ │ ├── juce_DropShadowEffect.h │ │ ├── juce_GlowEffect.cpp │ │ ├── juce_GlowEffect.h │ │ └── juce_ImageEffectFilter.h │ ├── fonts │ │ ├── juce_AttributedString.cpp │ │ ├── juce_AttributedString.h │ │ ├── juce_CustomTypeface.cpp │ │ ├── juce_CustomTypeface.h │ │ ├── juce_Font.cpp │ │ ├── juce_Font.h │ │ ├── juce_GlyphArrangement.cpp │ │ ├── juce_GlyphArrangement.h │ │ ├── juce_TextLayout.cpp │ │ ├── juce_TextLayout.h │ │ ├── juce_Typeface.cpp │ │ └── juce_Typeface.h │ ├── geometry │ │ ├── juce_AffineTransform.cpp │ │ ├── juce_AffineTransform.h │ │ ├── juce_BorderSize.h │ │ ├── juce_EdgeTable.cpp │ │ ├── juce_EdgeTable.h │ │ ├── juce_Line.h │ │ ├── juce_Parallelogram.h │ │ ├── juce_Path.cpp │ │ ├── juce_Path.h │ │ ├── juce_PathIterator.cpp │ │ ├── juce_PathIterator.h │ │ ├── juce_PathStrokeType.cpp │ │ ├── juce_PathStrokeType.h │ │ ├── juce_Point.h │ │ ├── juce_Rectangle.h │ │ └── juce_RectangleList.h │ ├── image_formats │ │ ├── jpglib │ │ │ ├── README │ │ │ ├── cderror.h │ │ │ ├── changes to libjpeg for JUCE.txt │ │ │ ├── jcapimin.c │ │ │ ├── jcapistd.c │ │ │ ├── jccoefct.c │ │ │ ├── jccolor.c │ │ │ ├── jcdctmgr.c │ │ │ ├── jchuff.c │ │ │ ├── jchuff.h │ │ │ ├── jcinit.c │ │ │ ├── jcmainct.c │ │ │ ├── jcmarker.c │ │ │ ├── jcmaster.c │ │ │ ├── jcomapi.c │ │ │ ├── jconfig.h │ │ │ ├── jcparam.c │ │ │ ├── jcphuff.c │ │ │ ├── jcprepct.c │ │ │ ├── jcsample.c │ │ │ ├── jctrans.c │ │ │ ├── jdapimin.c │ │ │ ├── jdapistd.c │ │ │ ├── jdatasrc.c │ │ │ ├── jdcoefct.c │ │ │ ├── jdcolor.c │ │ │ ├── jdct.h │ │ │ ├── jddctmgr.c │ │ │ ├── jdhuff.c │ │ │ ├── jdhuff.h │ │ │ ├── jdinput.c │ │ │ ├── jdmainct.c │ │ │ ├── jdmarker.c │ │ │ ├── jdmaster.c │ │ │ ├── jdmerge.c │ │ │ ├── jdphuff.c │ │ │ ├── jdpostct.c │ │ │ ├── jdsample.c │ │ │ ├── jdtrans.c │ │ │ ├── jerror.c │ │ │ ├── jerror.h │ │ │ ├── jfdctflt.c │ │ │ ├── jfdctfst.c │ │ │ ├── jfdctint.c │ │ │ ├── jidctflt.c │ │ │ ├── jidctfst.c │ │ │ ├── jidctint.c │ │ │ ├── jidctred.c │ │ │ ├── jinclude.h │ │ │ ├── jmemmgr.c │ │ │ ├── jmemnobs.c │ │ │ ├── jmemsys.h │ │ │ ├── jmorecfg.h │ │ │ ├── jpegint.h │ │ │ ├── jpeglib.h │ │ │ ├── jquant1.c │ │ │ ├── jquant2.c │ │ │ ├── jutils.c │ │ │ ├── jversion.h │ │ │ ├── transupp.c │ │ │ └── transupp.h │ │ ├── juce_GIFLoader.cpp │ │ ├── juce_JPEGLoader.cpp │ │ ├── juce_PNGLoader.cpp │ │ └── pnglib │ │ │ ├── LICENSE │ │ │ ├── libpng_readme.txt │ │ │ ├── png.c │ │ │ ├── png.h │ │ │ ├── pngconf.h │ │ │ ├── pngdebug.h │ │ │ ├── pngerror.c │ │ │ ├── pngget.c │ │ │ ├── pnginfo.h │ │ │ ├── pngmem.c │ │ │ ├── pngpread.c │ │ │ ├── pngpriv.h │ │ │ ├── pngread.c │ │ │ ├── pngrio.c │ │ │ ├── pngrtran.c │ │ │ ├── pngrutil.c │ │ │ ├── pngset.c │ │ │ ├── pngstruct.h │ │ │ ├── pngtrans.c │ │ │ ├── pngwio.c │ │ │ ├── pngwrite.c │ │ │ ├── pngwtran.c │ │ │ └── pngwutil.c │ ├── images │ │ ├── juce_Image.cpp │ │ ├── juce_Image.h │ │ ├── juce_ImageCache.cpp │ │ ├── juce_ImageCache.h │ │ ├── juce_ImageConvolutionKernel.cpp │ │ ├── juce_ImageConvolutionKernel.h │ │ ├── juce_ImageFileFormat.cpp │ │ └── juce_ImageFileFormat.h │ ├── juce_graphics.cpp │ ├── juce_graphics.h │ ├── juce_graphics.mm │ ├── native │ │ ├── juce_RenderingHelpers.h │ │ ├── juce_android_Fonts.cpp │ │ ├── juce_android_GraphicsContext.cpp │ │ ├── juce_android_IconHelpers.cpp │ │ ├── juce_freetype_Fonts.cpp │ │ ├── juce_linux_Fonts.cpp │ │ ├── juce_linux_IconHelpers.cpp │ │ ├── juce_mac_CoreGraphicsContext.h │ │ ├── juce_mac_CoreGraphicsContext.mm │ │ ├── juce_mac_CoreGraphicsHelpers.h │ │ ├── juce_mac_Fonts.mm │ │ ├── juce_mac_IconHelpers.cpp │ │ ├── juce_win32_Direct2DGraphicsContext.cpp │ │ ├── juce_win32_Direct2DGraphicsContext.h │ │ ├── juce_win32_DirectWriteTypeLayout.cpp │ │ ├── juce_win32_DirectWriteTypeface.cpp │ │ ├── juce_win32_Fonts.cpp │ │ └── juce_win32_IconHelpers.cpp │ └── placement │ │ ├── juce_Justification.h │ │ ├── juce_RectanglePlacement.cpp │ │ └── juce_RectanglePlacement.h │ ├── juce_gui_basics │ ├── application │ │ ├── juce_Application.cpp │ │ └── juce_Application.h │ ├── buttons │ │ ├── juce_ArrowButton.cpp │ │ ├── juce_ArrowButton.h │ │ ├── juce_Button.cpp │ │ ├── juce_Button.h │ │ ├── juce_DrawableButton.cpp │ │ ├── juce_DrawableButton.h │ │ ├── juce_HyperlinkButton.cpp │ │ ├── juce_HyperlinkButton.h │ │ ├── juce_ImageButton.cpp │ │ ├── juce_ImageButton.h │ │ ├── juce_ShapeButton.cpp │ │ ├── juce_ShapeButton.h │ │ ├── juce_TextButton.cpp │ │ ├── juce_TextButton.h │ │ ├── juce_ToggleButton.cpp │ │ ├── juce_ToggleButton.h │ │ ├── juce_ToolbarButton.cpp │ │ └── juce_ToolbarButton.h │ ├── commands │ │ ├── juce_ApplicationCommandID.h │ │ ├── juce_ApplicationCommandInfo.cpp │ │ ├── juce_ApplicationCommandInfo.h │ │ ├── juce_ApplicationCommandManager.cpp │ │ ├── juce_ApplicationCommandManager.h │ │ ├── juce_ApplicationCommandTarget.cpp │ │ ├── juce_ApplicationCommandTarget.h │ │ ├── juce_KeyPressMappingSet.cpp │ │ └── juce_KeyPressMappingSet.h │ ├── components │ │ ├── juce_CachedComponentImage.h │ │ ├── juce_Component.cpp │ │ ├── juce_Component.h │ │ ├── juce_ComponentListener.cpp │ │ ├── juce_ComponentListener.h │ │ ├── juce_ModalComponentManager.cpp │ │ └── juce_ModalComponentManager.h │ ├── desktop │ │ ├── juce_Desktop.cpp │ │ ├── juce_Desktop.h │ │ ├── juce_Displays.cpp │ │ └── juce_Displays.h │ ├── drawables │ │ ├── juce_Drawable.cpp │ │ ├── juce_Drawable.h │ │ ├── juce_DrawableComposite.cpp │ │ ├── juce_DrawableComposite.h │ │ ├── juce_DrawableImage.cpp │ │ ├── juce_DrawableImage.h │ │ ├── juce_DrawablePath.cpp │ │ ├── juce_DrawablePath.h │ │ ├── juce_DrawableRectangle.cpp │ │ ├── juce_DrawableRectangle.h │ │ ├── juce_DrawableShape.cpp │ │ ├── juce_DrawableShape.h │ │ ├── juce_DrawableText.cpp │ │ ├── juce_DrawableText.h │ │ └── juce_SVGParser.cpp │ ├── filebrowser │ │ ├── juce_ContentSharer.cpp │ │ ├── juce_ContentSharer.h │ │ ├── juce_DirectoryContentsDisplayComponent.cpp │ │ ├── juce_DirectoryContentsDisplayComponent.h │ │ ├── juce_DirectoryContentsList.cpp │ │ ├── juce_DirectoryContentsList.h │ │ ├── juce_FileBrowserComponent.cpp │ │ ├── juce_FileBrowserComponent.h │ │ ├── juce_FileBrowserListener.h │ │ ├── juce_FileChooser.cpp │ │ ├── juce_FileChooser.h │ │ ├── juce_FileChooserDialogBox.cpp │ │ ├── juce_FileChooserDialogBox.h │ │ ├── juce_FileListComponent.cpp │ │ ├── juce_FileListComponent.h │ │ ├── juce_FilePreviewComponent.h │ │ ├── juce_FileSearchPathListComponent.cpp │ │ ├── juce_FileSearchPathListComponent.h │ │ ├── juce_FileTreeComponent.cpp │ │ ├── juce_FileTreeComponent.h │ │ ├── juce_FilenameComponent.cpp │ │ ├── juce_FilenameComponent.h │ │ ├── juce_ImagePreviewComponent.cpp │ │ └── juce_ImagePreviewComponent.h │ ├── juce_gui_basics.cpp │ ├── juce_gui_basics.h │ ├── juce_gui_basics.mm │ ├── keyboard │ │ ├── juce_CaretComponent.cpp │ │ ├── juce_CaretComponent.h │ │ ├── juce_KeyListener.cpp │ │ ├── juce_KeyListener.h │ │ ├── juce_KeyPress.cpp │ │ ├── juce_KeyPress.h │ │ ├── juce_KeyboardFocusTraverser.cpp │ │ ├── juce_KeyboardFocusTraverser.h │ │ ├── juce_ModifierKeys.cpp │ │ ├── juce_ModifierKeys.h │ │ ├── juce_SystemClipboard.h │ │ ├── juce_TextEditorKeyMapper.h │ │ └── juce_TextInputTarget.h │ ├── layout │ │ ├── juce_AnimatedPosition.h │ │ ├── juce_AnimatedPositionBehaviours.h │ │ ├── juce_ComponentAnimator.cpp │ │ ├── juce_ComponentAnimator.h │ │ ├── juce_ComponentBoundsConstrainer.cpp │ │ ├── juce_ComponentBoundsConstrainer.h │ │ ├── juce_ComponentBuilder.cpp │ │ ├── juce_ComponentBuilder.h │ │ ├── juce_ComponentMovementWatcher.cpp │ │ ├── juce_ComponentMovementWatcher.h │ │ ├── juce_ConcertinaPanel.cpp │ │ ├── juce_ConcertinaPanel.h │ │ ├── juce_FlexBox.cpp │ │ ├── juce_FlexBox.h │ │ ├── juce_FlexItem.h │ │ ├── juce_Grid.cpp │ │ ├── juce_Grid.h │ │ ├── juce_GridItem.cpp │ │ ├── juce_GridItem.h │ │ ├── juce_GroupComponent.cpp │ │ ├── juce_GroupComponent.h │ │ ├── juce_MultiDocumentPanel.cpp │ │ ├── juce_MultiDocumentPanel.h │ │ ├── juce_ResizableBorderComponent.cpp │ │ ├── juce_ResizableBorderComponent.h │ │ ├── juce_ResizableCornerComponent.cpp │ │ ├── juce_ResizableCornerComponent.h │ │ ├── juce_ResizableEdgeComponent.cpp │ │ ├── juce_ResizableEdgeComponent.h │ │ ├── juce_ScrollBar.cpp │ │ ├── juce_ScrollBar.h │ │ ├── juce_SidePanel.cpp │ │ ├── juce_SidePanel.h │ │ ├── juce_StretchableLayoutManager.cpp │ │ ├── juce_StretchableLayoutManager.h │ │ ├── juce_StretchableLayoutResizerBar.cpp │ │ ├── juce_StretchableLayoutResizerBar.h │ │ ├── juce_StretchableObjectResizer.cpp │ │ ├── juce_StretchableObjectResizer.h │ │ ├── juce_TabbedButtonBar.cpp │ │ ├── juce_TabbedButtonBar.h │ │ ├── juce_TabbedComponent.cpp │ │ ├── juce_TabbedComponent.h │ │ ├── juce_Viewport.cpp │ │ └── juce_Viewport.h │ ├── lookandfeel │ │ ├── juce_LookAndFeel.cpp │ │ ├── juce_LookAndFeel.h │ │ ├── juce_LookAndFeel_V1.cpp │ │ ├── juce_LookAndFeel_V1.h │ │ ├── juce_LookAndFeel_V2.cpp │ │ ├── juce_LookAndFeel_V2.h │ │ ├── juce_LookAndFeel_V3.cpp │ │ ├── juce_LookAndFeel_V3.h │ │ ├── juce_LookAndFeel_V4.cpp │ │ └── juce_LookAndFeel_V4.h │ ├── menus │ │ ├── juce_BurgerMenuComponent.cpp │ │ ├── juce_BurgerMenuComponent.h │ │ ├── juce_MenuBarComponent.cpp │ │ ├── juce_MenuBarComponent.h │ │ ├── juce_MenuBarModel.cpp │ │ ├── juce_MenuBarModel.h │ │ ├── juce_PopupMenu.cpp │ │ └── juce_PopupMenu.h │ ├── misc │ │ ├── juce_BubbleComponent.cpp │ │ ├── juce_BubbleComponent.h │ │ ├── juce_DropShadower.cpp │ │ ├── juce_DropShadower.h │ │ ├── juce_JUCESplashScreen.cpp │ │ └── juce_JUCESplashScreen.h │ ├── mouse │ │ ├── juce_ComponentDragger.cpp │ │ ├── juce_ComponentDragger.h │ │ ├── juce_DragAndDropContainer.cpp │ │ ├── juce_DragAndDropContainer.h │ │ ├── juce_DragAndDropTarget.h │ │ ├── juce_FileDragAndDropTarget.h │ │ ├── juce_LassoComponent.h │ │ ├── juce_MouseCursor.cpp │ │ ├── juce_MouseCursor.h │ │ ├── juce_MouseEvent.cpp │ │ ├── juce_MouseEvent.h │ │ ├── juce_MouseInactivityDetector.cpp │ │ ├── juce_MouseInactivityDetector.h │ │ ├── juce_MouseInputSource.cpp │ │ ├── juce_MouseInputSource.h │ │ ├── juce_MouseListener.cpp │ │ ├── juce_MouseListener.h │ │ ├── juce_SelectedItemSet.h │ │ ├── juce_TextDragAndDropTarget.h │ │ └── juce_TooltipClient.h │ ├── native │ │ ├── java │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ ├── ComponentPeerView.java │ │ │ │ ├── JuceContentProviderCursor.java │ │ │ │ └── JuceContentProviderFileObserver.java │ │ ├── javaopt │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ ├── JuceActivity.java │ │ │ │ └── JuceSharingContentProvider.java │ │ ├── juce_MultiTouchMapper.h │ │ ├── juce_android_ContentSharer.cpp │ │ ├── juce_android_FileChooser.cpp │ │ ├── juce_android_Windowing.cpp │ │ ├── juce_common_MimeTypes.cpp │ │ ├── juce_ios_ContentSharer.cpp │ │ ├── juce_ios_FileChooser.mm │ │ ├── juce_ios_UIViewComponentPeer.mm │ │ ├── juce_ios_Windowing.mm │ │ ├── juce_linux_FileChooser.cpp │ │ ├── juce_linux_Windowing.cpp │ │ ├── juce_mac_FileChooser.mm │ │ ├── juce_mac_MainMenu.mm │ │ ├── juce_mac_MouseCursor.mm │ │ ├── juce_mac_NSViewComponentPeer.mm │ │ ├── juce_mac_Windowing.mm │ │ ├── juce_win32_DragAndDrop.cpp │ │ ├── juce_win32_FileChooser.cpp │ │ ├── juce_win32_Windowing.cpp │ │ └── x11 │ │ │ ├── juce_linux_X11_DragAndDrop.cpp │ │ │ ├── juce_linux_X11_Symbols.cpp │ │ │ ├── juce_linux_X11_Symbols.h │ │ │ ├── juce_linux_XWindowSystem.cpp │ │ │ └── juce_linux_XWindowSystem.h │ ├── positioning │ │ ├── juce_MarkerList.cpp │ │ ├── juce_MarkerList.h │ │ ├── juce_RelativeCoordinate.cpp │ │ ├── juce_RelativeCoordinate.h │ │ ├── juce_RelativeCoordinatePositioner.cpp │ │ ├── juce_RelativeCoordinatePositioner.h │ │ ├── juce_RelativeParallelogram.cpp │ │ ├── juce_RelativeParallelogram.h │ │ ├── juce_RelativePoint.cpp │ │ ├── juce_RelativePoint.h │ │ ├── juce_RelativePointPath.cpp │ │ ├── juce_RelativePointPath.h │ │ ├── juce_RelativeRectangle.cpp │ │ └── juce_RelativeRectangle.h │ ├── properties │ │ ├── juce_BooleanPropertyComponent.cpp │ │ ├── juce_BooleanPropertyComponent.h │ │ ├── juce_ButtonPropertyComponent.cpp │ │ ├── juce_ButtonPropertyComponent.h │ │ ├── juce_ChoicePropertyComponent.cpp │ │ ├── juce_ChoicePropertyComponent.h │ │ ├── juce_MultiChoicePropertyComponent.cpp │ │ ├── juce_MultiChoicePropertyComponent.h │ │ ├── juce_PropertyComponent.cpp │ │ ├── juce_PropertyComponent.h │ │ ├── juce_PropertyPanel.cpp │ │ ├── juce_PropertyPanel.h │ │ ├── juce_SliderPropertyComponent.cpp │ │ ├── juce_SliderPropertyComponent.h │ │ ├── juce_TextPropertyComponent.cpp │ │ └── juce_TextPropertyComponent.h │ ├── widgets │ │ ├── juce_ComboBox.cpp │ │ ├── juce_ComboBox.h │ │ ├── juce_ImageComponent.cpp │ │ ├── juce_ImageComponent.h │ │ ├── juce_Label.cpp │ │ ├── juce_Label.h │ │ ├── juce_ListBox.cpp │ │ ├── juce_ListBox.h │ │ ├── juce_ProgressBar.cpp │ │ ├── juce_ProgressBar.h │ │ ├── juce_Slider.cpp │ │ ├── juce_Slider.h │ │ ├── juce_TableHeaderComponent.cpp │ │ ├── juce_TableHeaderComponent.h │ │ ├── juce_TableListBox.cpp │ │ ├── juce_TableListBox.h │ │ ├── juce_TextEditor.cpp │ │ ├── juce_TextEditor.h │ │ ├── juce_Toolbar.cpp │ │ ├── juce_Toolbar.h │ │ ├── juce_ToolbarItemComponent.cpp │ │ ├── juce_ToolbarItemComponent.h │ │ ├── juce_ToolbarItemFactory.h │ │ ├── juce_ToolbarItemPalette.cpp │ │ ├── juce_ToolbarItemPalette.h │ │ ├── juce_TreeView.cpp │ │ └── juce_TreeView.h │ └── windows │ │ ├── juce_AlertWindow.cpp │ │ ├── juce_AlertWindow.h │ │ ├── juce_CallOutBox.cpp │ │ ├── juce_CallOutBox.h │ │ ├── juce_ComponentPeer.cpp │ │ ├── juce_ComponentPeer.h │ │ ├── juce_DialogWindow.cpp │ │ ├── juce_DialogWindow.h │ │ ├── juce_DocumentWindow.cpp │ │ ├── juce_DocumentWindow.h │ │ ├── juce_NativeMessageBox.h │ │ ├── juce_ResizableWindow.cpp │ │ ├── juce_ResizableWindow.h │ │ ├── juce_ThreadWithProgressWindow.cpp │ │ ├── juce_ThreadWithProgressWindow.h │ │ ├── juce_TooltipWindow.cpp │ │ ├── juce_TooltipWindow.h │ │ ├── juce_TopLevelWindow.cpp │ │ └── juce_TopLevelWindow.h │ ├── juce_gui_extra │ ├── code_editor │ │ ├── juce_CPlusPlusCodeTokeniser.cpp │ │ ├── juce_CPlusPlusCodeTokeniser.h │ │ ├── juce_CPlusPlusCodeTokeniserFunctions.h │ │ ├── juce_CodeDocument.cpp │ │ ├── juce_CodeDocument.h │ │ ├── juce_CodeEditorComponent.cpp │ │ ├── juce_CodeEditorComponent.h │ │ ├── juce_CodeTokeniser.h │ │ ├── juce_LuaCodeTokeniser.cpp │ │ ├── juce_LuaCodeTokeniser.h │ │ ├── juce_XMLCodeTokeniser.cpp │ │ └── juce_XMLCodeTokeniser.h │ ├── documents │ │ ├── juce_FileBasedDocument.cpp │ │ └── juce_FileBasedDocument.h │ ├── embedding │ │ ├── juce_ActiveXControlComponent.h │ │ ├── juce_AndroidViewComponent.h │ │ ├── juce_HWNDComponent.h │ │ ├── juce_NSViewComponent.h │ │ ├── juce_ScopedDPIAwarenessDisabler.h │ │ ├── juce_UIViewComponent.h │ │ └── juce_XEmbedComponent.h │ ├── juce_gui_extra.cpp │ ├── juce_gui_extra.h │ ├── juce_gui_extra.mm │ ├── misc │ │ ├── juce_AnimatedAppComponent.cpp │ │ ├── juce_AnimatedAppComponent.h │ │ ├── juce_AppleRemote.h │ │ ├── juce_BubbleMessageComponent.cpp │ │ ├── juce_BubbleMessageComponent.h │ │ ├── juce_ColourSelector.cpp │ │ ├── juce_ColourSelector.h │ │ ├── juce_KeyMappingEditorComponent.cpp │ │ ├── juce_KeyMappingEditorComponent.h │ │ ├── juce_LiveConstantEditor.cpp │ │ ├── juce_LiveConstantEditor.h │ │ ├── juce_PreferencesPanel.cpp │ │ ├── juce_PreferencesPanel.h │ │ ├── juce_PushNotifications.cpp │ │ ├── juce_PushNotifications.h │ │ ├── juce_RecentlyOpenedFilesList.cpp │ │ ├── juce_RecentlyOpenedFilesList.h │ │ ├── juce_SplashScreen.cpp │ │ ├── juce_SplashScreen.h │ │ ├── juce_SystemTrayIconComponent.cpp │ │ ├── juce_SystemTrayIconComponent.h │ │ └── juce_WebBrowserComponent.h │ └── native │ │ ├── java │ │ └── app │ │ │ └── com │ │ │ └── rmsl │ │ │ └── juce │ │ │ ├── JuceWebView.java │ │ │ └── JuceWebView21.java │ │ ├── javaopt │ │ └── app │ │ │ └── com │ │ │ └── rmsl │ │ │ └── juce │ │ │ ├── JuceFirebaseInstanceIdService.java │ │ │ └── JuceFirebaseMessagingService.java │ │ ├── juce_AndroidViewComponent.cpp │ │ ├── juce_android_PushNotifications.cpp │ │ ├── juce_android_WebBrowserComponent.cpp │ │ ├── juce_ios_PushNotifications.cpp │ │ ├── juce_ios_UIViewComponent.mm │ │ ├── juce_linux_X11_SystemTrayIcon.cpp │ │ ├── juce_linux_X11_WebBrowserComponent.cpp │ │ ├── juce_linux_XEmbedComponent.cpp │ │ ├── juce_mac_AppleRemote.mm │ │ ├── juce_mac_CarbonViewWrapperComponent.h │ │ ├── juce_mac_NSViewComponent.mm │ │ ├── juce_mac_PushNotifications.cpp │ │ ├── juce_mac_SystemTrayIcon.cpp │ │ ├── juce_mac_WebBrowserComponent.mm │ │ ├── juce_win32_ActiveXComponent.cpp │ │ ├── juce_win32_HWNDComponent.cpp │ │ ├── juce_win32_SystemTrayIcon.cpp │ │ └── juce_win32_WebBrowserComponent.cpp │ ├── juce_opengl │ ├── geometry │ │ ├── juce_Draggable3DOrientation.h │ │ ├── juce_Matrix3D.h │ │ ├── juce_Quaternion.h │ │ └── juce_Vector3D.h │ ├── juce_opengl.cpp │ ├── juce_opengl.h │ ├── juce_opengl.mm │ ├── native │ │ ├── java │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ └── JuceOpenGLView.java │ │ ├── juce_MissingGLDefinitions.h │ │ ├── juce_OpenGLExtensions.h │ │ ├── juce_OpenGL_android.h │ │ ├── juce_OpenGL_ios.h │ │ ├── juce_OpenGL_linux_X11.h │ │ ├── juce_OpenGL_osx.h │ │ └── juce_OpenGL_win32.h │ ├── opengl │ │ ├── juce_OpenGLContext.cpp │ │ ├── juce_OpenGLContext.h │ │ ├── juce_OpenGLFrameBuffer.cpp │ │ ├── juce_OpenGLFrameBuffer.h │ │ ├── juce_OpenGLGraphicsContext.cpp │ │ ├── juce_OpenGLGraphicsContext.h │ │ ├── juce_OpenGLHelpers.cpp │ │ ├── juce_OpenGLHelpers.h │ │ ├── juce_OpenGLImage.cpp │ │ ├── juce_OpenGLImage.h │ │ ├── juce_OpenGLPixelFormat.cpp │ │ ├── juce_OpenGLPixelFormat.h │ │ ├── juce_OpenGLRenderer.h │ │ ├── juce_OpenGLShaderProgram.cpp │ │ ├── juce_OpenGLShaderProgram.h │ │ ├── juce_OpenGLTexture.cpp │ │ └── juce_OpenGLTexture.h │ └── utils │ │ ├── juce_OpenGLAppComponent.cpp │ │ └── juce_OpenGLAppComponent.h │ ├── juce_osc │ ├── juce_osc.cpp │ ├── juce_osc.h │ └── osc │ │ ├── juce_OSCAddress.cpp │ │ ├── juce_OSCAddress.h │ │ ├── juce_OSCArgument.cpp │ │ ├── juce_OSCArgument.h │ │ ├── juce_OSCBundle.cpp │ │ ├── juce_OSCBundle.h │ │ ├── juce_OSCMessage.cpp │ │ ├── juce_OSCMessage.h │ │ ├── juce_OSCReceiver.cpp │ │ ├── juce_OSCReceiver.h │ │ ├── juce_OSCSender.cpp │ │ ├── juce_OSCSender.h │ │ ├── juce_OSCTimeTag.cpp │ │ ├── juce_OSCTimeTag.h │ │ ├── juce_OSCTypes.cpp │ │ └── juce_OSCTypes.h │ ├── juce_product_unlocking │ ├── in_app_purchases │ │ ├── juce_InAppPurchases.cpp │ │ └── juce_InAppPurchases.h │ ├── juce_product_unlocking.cpp │ ├── juce_product_unlocking.h │ ├── juce_product_unlocking.mm │ ├── marketplace │ │ ├── juce_KeyFileGeneration.h │ │ ├── juce_OnlineUnlockForm.cpp │ │ ├── juce_OnlineUnlockForm.h │ │ ├── juce_OnlineUnlockStatus.cpp │ │ ├── juce_OnlineUnlockStatus.h │ │ ├── juce_TracktionMarketplaceStatus.cpp │ │ └── juce_TracktionMarketplaceStatus.h │ └── native │ │ ├── javaopt │ │ └── app │ │ │ └── com │ │ │ └── rmsl │ │ │ └── juce │ │ │ └── JuceBillingClient.java │ │ ├── juce_android_InAppPurchases.cpp │ │ └── juce_ios_InAppPurchases.cpp │ └── juce_video │ ├── capture │ ├── juce_CameraDevice.cpp │ └── juce_CameraDevice.h │ ├── juce_video.cpp │ ├── juce_video.h │ ├── juce_video.mm │ ├── native │ ├── java │ │ └── app │ │ │ └── com │ │ │ └── rmsl │ │ │ └── juce │ │ │ ├── CameraCaptureSessionCaptureCallback.java │ │ │ ├── CameraCaptureSessionStateCallback.java │ │ │ ├── CameraDeviceStateCallback.java │ │ │ ├── JuceOrientationEventListener.java │ │ │ ├── MediaControllerCallback.java │ │ │ ├── MediaSessionCallback.java │ │ │ └── SystemVolumeObserver.java │ ├── juce_android_CameraDevice.h │ ├── juce_android_Video.h │ ├── juce_ios_CameraDevice.h │ ├── juce_mac_CameraDevice.h │ ├── juce_mac_Video.h │ ├── juce_win32_CameraDevice.h │ └── juce_win32_Video.h │ └── playback │ ├── juce_VideoComponent.cpp │ └── juce_VideoComponent.h ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── docs ├── MIDI-DE.md ├── MIDI.md ├── OSC-DE.md ├── OSC.md └── extras │ ├── Off.wav │ └── Soundboard.touchosc ├── modules ├── danlin_fontawesome │ ├── danlin_fontawesome.cpp │ ├── danlin_fontawesome.h │ ├── danlin_fontawesome.mm │ ├── data │ │ ├── FontAwesomeData.cpp │ │ └── FontAwesomeData.h │ ├── juce_module_info │ └── src │ │ ├── FontAwesome.cpp │ │ ├── FontAwesome.h │ │ └── Icons.h ├── danlin_oscpack │ ├── danlin_oscpack.cpp │ ├── danlin_oscpack.h │ ├── danlin_oscpack.mm │ ├── juce_module_info │ └── src │ │ ├── OscException.h │ │ ├── OscHostEndianness.h │ │ ├── OscOutboundPacketStream.cpp │ │ ├── OscOutboundPacketStream.h │ │ ├── OscPrintReceivedElements.cpp │ │ ├── OscPrintReceivedElements.h │ │ ├── OscReceivedElements.cpp │ │ ├── OscReceivedElements.h │ │ ├── OscTypes.cpp │ │ └── OscTypes.h ├── danlin_oscserver │ ├── danlin_oscserver.cpp │ ├── danlin_oscserver.h │ ├── danlin_oscserver.mm │ ├── juce_module_info │ └── src │ │ ├── OscManager.cpp │ │ ├── OscManager.h │ │ ├── OscParameter.h │ │ ├── OscParameters.h │ │ ├── OscServer.cpp │ │ └── OscServer.h ├── stk_core │ ├── functions │ │ ├── BowTable.h │ │ ├── Cubic.h │ │ ├── Function.h │ │ ├── JetTable.h │ │ └── ReedTable.h │ ├── io │ │ ├── FileRead.cpp │ │ ├── FileRead.h │ │ ├── FileWrite.cpp │ │ ├── FileWrite.h │ │ ├── FileWvIn.cpp │ │ ├── FileWvIn.h │ │ ├── FileWvOut.cpp │ │ ├── FileWvOut.h │ │ ├── Stk.h │ │ ├── WvIn.h │ │ └── WvOut.h │ ├── juce_module_info │ ├── stk │ │ ├── Effect.h │ │ ├── Filter.h │ │ ├── Function.h │ │ ├── Generator.h │ │ ├── Instrmnt.h │ │ ├── Phonemes.cpp │ │ ├── Phonemes.h │ │ ├── Sphere.cpp │ │ ├── Sphere.h │ │ ├── Stk.cpp │ │ ├── Stk.h │ │ ├── Vector3D.h │ │ ├── Voicer.cpp │ │ └── Voicer.h │ ├── stk_core.cpp │ ├── stk_core.h │ └── stk_core.mm └── stk_generators │ ├── generators │ ├── ADSR.cpp │ ├── ADSR.h │ ├── Asymp.cpp │ ├── Asymp.h │ ├── Blit.cpp │ ├── Blit.h │ ├── BlitSaw.cpp │ ├── BlitSaw.h │ ├── BlitSquare.cpp │ ├── BlitSquare.h │ ├── Envelope.cpp │ ├── Envelope.h │ ├── FileLoop.cpp │ ├── FileLoop.h │ ├── FileRead.h │ ├── FileWvIn.h │ ├── Generator.h │ ├── Granulate.cpp │ ├── Granulate.h │ ├── Noise.cpp │ ├── Noise.h │ ├── SineWave.cpp │ └── SineWave.h │ ├── juce_module_info │ ├── stk_generators.cpp │ ├── stk_generators.h │ └── stk_generators.mm └── src ├── plugin ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp └── PluginProcessor.h └── shared ├── player ├── Bank.cpp ├── Bank.h ├── Library.cpp ├── Library.h ├── Player.cpp ├── Player.h ├── Slot.cpp └── Slot.h └── ui ├── LookAndFeel.cpp ├── LookAndFeel.h ├── grid ├── GridCell.cpp ├── GridCell.h ├── GridComponent.cpp └── GridComponent.h ├── settings ├── SettingsComponent.cpp └── SettingsComponent.h └── table ├── TableButtonCell.cpp ├── TableButtonCell.h ├── TableComponent.cpp └── TableComponent.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/Dockerfile -------------------------------------------------------------------------------- /JUCE/BREAKING-CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/BREAKING-CHANGES.txt -------------------------------------------------------------------------------- /JUCE/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/ChangeList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/ChangeList.txt -------------------------------------------------------------------------------- /JUCE/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/LICENSE.md -------------------------------------------------------------------------------- /JUCE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/README.md -------------------------------------------------------------------------------- /JUCE/docs/CMake API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/docs/CMake API.md -------------------------------------------------------------------------------- /JUCE/docs/JUCE Module Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/docs/JUCE Module Format.md -------------------------------------------------------------------------------- /JUCE/docs/Linux Dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/docs/Linux Dependencies.md -------------------------------------------------------------------------------- /JUCE/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/docs/README.md -------------------------------------------------------------------------------- /JUCE/docs/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/docs/doxygen/Doxyfile -------------------------------------------------------------------------------- /JUCE/docs/doxygen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/docs/doxygen/Makefile -------------------------------------------------------------------------------- /JUCE/docs/doxygen/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/docs/doxygen/make.bat -------------------------------------------------------------------------------- /JUCE/docs/doxygen/process_source_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/docs/doxygen/process_source_files.py -------------------------------------------------------------------------------- /JUCE/examples/Assets/AudioLiveScrollingDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/AudioLiveScrollingDisplay.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/AddPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/AddPair.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/ApplyForce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/ApplyForce.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/BodyTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/BodyTypes.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Breakable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/Breakable.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/Bridge.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/BulletTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/BulletTest.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Cantilever.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/Cantilever.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Car.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/Car.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/Chain.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/CharacterCollision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/CharacterCollision.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/CollisionFiltering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/CollisionFiltering.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/CollisionProcessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/CollisionProcessing.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/CompoundShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/CompoundShapes.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Confined.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/Confined.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/ContinuousTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/ContinuousTest.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/DistanceTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/DistanceTest.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Dominos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/Dominos.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/DumpShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/DumpShell.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/DynamicTreeTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/DynamicTreeTest.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/EdgeShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/EdgeShapes.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/EdgeTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/EdgeTest.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Gears.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/Gears.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/OneSidedPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/OneSidedPlatform.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Pinball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/Pinball.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/PolyCollision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/PolyCollision.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/PolyShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/PolyShapes.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Prismatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/Prismatic.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Pulleys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/Pulleys.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Pyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/Pyramid.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/RayCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/RayCast.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Revolute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/Revolute.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/Rope.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/RopeJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/RopeJoint.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/SensorTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/SensorTest.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/ShapeEditing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/ShapeEditing.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/SliderCrank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/SliderCrank.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/SphereStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/SphereStack.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/TestEntries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/TestEntries.cpp -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/TheoJansen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/TheoJansen.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Tiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/Tiles.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/TimeOfImpact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/TimeOfImpact.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Tumbler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/Tumbler.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/VaryingFriction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/VaryingFriction.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/VaryingRestitution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/VaryingRestitution.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/VerticalStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/VerticalStack.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Web.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Box2DTests/Web.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/DSPDemos_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/DSPDemos_Common.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/DemoUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/DemoUtilities.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Notifications/sounds/isntit.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Notifications/sounds/isntit.caf -------------------------------------------------------------------------------- /JUCE/examples/Assets/Notifications/sounds/isntit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Notifications/sounds/isntit.mp3 -------------------------------------------------------------------------------- /JUCE/examples/Assets/Notifications/sounds/served.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Notifications/sounds/served.caf -------------------------------------------------------------------------------- /JUCE/examples/Assets/Notifications/sounds/served.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Notifications/sounds/served.mp3 -------------------------------------------------------------------------------- /JUCE/examples/Assets/Notifications/sounds/solemn.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Notifications/sounds/solemn.caf -------------------------------------------------------------------------------- /JUCE/examples/Assets/Notifications/sounds/solemn.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Notifications/sounds/solemn.mp3 -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Ed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Ed.png -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Ed0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Ed0.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Ed1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Ed1.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Ed2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Ed2.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Fabian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Fabian.png -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Fabian0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Fabian0.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Fabian1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Fabian1.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Fabian2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Fabian2.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/JB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/JB.png -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/JB0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/JB0.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/JB1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/JB1.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/JB2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/JB2.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Jules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Jules.png -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Jules0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Jules0.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Jules1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Jules1.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Jules2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Jules2.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Lukasz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Lukasz.png -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Lukasz0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Lukasz0.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Lukasz1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Lukasz1.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Lukasz2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Lukasz2.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Robot.png -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Robot0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Robot0.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Robot1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Robot1.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Robot2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/Robot2.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Purchases/icon.png -------------------------------------------------------------------------------- /JUCE/examples/Assets/Signing/InAppPurchase.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Signing/InAppPurchase.keystore -------------------------------------------------------------------------------- /JUCE/examples/Assets/Signing/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/Signing/README.txt -------------------------------------------------------------------------------- /JUCE/examples/Assets/WavefrontObjParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/WavefrontObjParser.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/cassette_recorder.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/cassette_recorder.wav -------------------------------------------------------------------------------- /JUCE/examples/Assets/cello.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/cello.wav -------------------------------------------------------------------------------- /JUCE/examples/Assets/demo table data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/demo table data.xml -------------------------------------------------------------------------------- /JUCE/examples/Assets/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/google-services.json -------------------------------------------------------------------------------- /JUCE/examples/Assets/guitar_amp.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/guitar_amp.wav -------------------------------------------------------------------------------- /JUCE/examples/Assets/icons.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/icons.zip -------------------------------------------------------------------------------- /JUCE/examples/Assets/juce_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/juce_icon.png -------------------------------------------------------------------------------- /JUCE/examples/Assets/juce_icon_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/juce_icon_template.png -------------------------------------------------------------------------------- /JUCE/examples/Assets/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/juce_module_info -------------------------------------------------------------------------------- /JUCE/examples/Assets/portmeirion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/portmeirion.jpg -------------------------------------------------------------------------------- /JUCE/examples/Assets/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/power.png -------------------------------------------------------------------------------- /JUCE/examples/Assets/proaudio.path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/proaudio.path -------------------------------------------------------------------------------- /JUCE/examples/Assets/reverb_ir.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/reverb_ir.wav -------------------------------------------------------------------------------- /JUCE/examples/Assets/singing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/singing.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/tile_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/tile_background.png -------------------------------------------------------------------------------- /JUCE/examples/Assets/treedemo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Assets/treedemo.xml -------------------------------------------------------------------------------- /JUCE/examples/Audio/AudioAppDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Audio/AudioAppDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Audio/AudioLatencyDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Audio/AudioLatencyDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Audio/AudioPlaybackDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Audio/AudioPlaybackDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Audio/AudioRecordingDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Audio/AudioRecordingDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Audio/AudioSettingsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Audio/AudioSettingsDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Audio/AudioSynthesiserDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Audio/AudioSynthesiserDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Audio/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/Audio/MPEDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Audio/MPEDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Audio/MidiDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Audio/MidiDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Audio/PluckedStringsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Audio/PluckedStringsDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Audio/SimpleFFTDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Audio/SimpleFFTDemo.h -------------------------------------------------------------------------------- /JUCE/examples/BLOCKS/BlocksDrawingDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/BLOCKS/BlocksDrawingDemo.h -------------------------------------------------------------------------------- /JUCE/examples/BLOCKS/BlocksMonitorDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/BLOCKS/BlocksMonitorDemo.h -------------------------------------------------------------------------------- /JUCE/examples/BLOCKS/BlocksSynthDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/BLOCKS/BlocksSynthDemo.h -------------------------------------------------------------------------------- /JUCE/examples/BLOCKS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/BLOCKS/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/CMake/AudioPlugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/CMake/AudioPlugin/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/CMake/AudioPlugin/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/CMake/AudioPlugin/PluginEditor.cpp -------------------------------------------------------------------------------- /JUCE/examples/CMake/AudioPlugin/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/CMake/AudioPlugin/PluginEditor.h -------------------------------------------------------------------------------- /JUCE/examples/CMake/AudioPlugin/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/CMake/AudioPlugin/PluginProcessor.cpp -------------------------------------------------------------------------------- /JUCE/examples/CMake/AudioPlugin/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/CMake/AudioPlugin/PluginProcessor.h -------------------------------------------------------------------------------- /JUCE/examples/CMake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/CMake/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/CMake/ConsoleApp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/CMake/ConsoleApp/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/CMake/ConsoleApp/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/CMake/ConsoleApp/Main.cpp -------------------------------------------------------------------------------- /JUCE/examples/CMake/GuiApp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/CMake/GuiApp/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/CMake/GuiApp/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/CMake/GuiApp/Main.cpp -------------------------------------------------------------------------------- /JUCE/examples/CMake/GuiApp/MainComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/CMake/GuiApp/MainComponent.cpp -------------------------------------------------------------------------------- /JUCE/examples/CMake/GuiApp/MainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/CMake/GuiApp/MainComponent.h -------------------------------------------------------------------------------- /JUCE/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/DSP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DSP/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/DSP/ConvolutionDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DSP/ConvolutionDemo.h -------------------------------------------------------------------------------- /JUCE/examples/DSP/FIRFilterDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DSP/FIRFilterDemo.h -------------------------------------------------------------------------------- /JUCE/examples/DSP/GainDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DSP/GainDemo.h -------------------------------------------------------------------------------- /JUCE/examples/DSP/IIRFilterDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DSP/IIRFilterDemo.h -------------------------------------------------------------------------------- /JUCE/examples/DSP/OscillatorDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DSP/OscillatorDemo.h -------------------------------------------------------------------------------- /JUCE/examples/DSP/OverdriveDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DSP/OverdriveDemo.h -------------------------------------------------------------------------------- /JUCE/examples/DSP/SIMDRegisterDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DSP/SIMDRegisterDemo.h -------------------------------------------------------------------------------- /JUCE/examples/DSP/StateVariableFilterDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DSP/StateVariableFilterDemo.h -------------------------------------------------------------------------------- /JUCE/examples/DSP/WaveShaperTanhDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DSP/WaveShaperTanhDemo.h -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Builds/Android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/Builds/Android/build.gradle -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Builds/Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/Builds/Android/gradlew -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Builds/Android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/Builds/Android/gradlew.bat -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Builds/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'DemoRunner' 2 | include ':app' -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Builds/LinuxMakefile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/Builds/LinuxMakefile/Makefile -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Builds/MacOSX/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/Builds/MacOSX/Icon.icns -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Builds/MacOSX/Info-App.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/Builds/MacOSX/Info-App.plist -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Builds/iOS/App.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/Builds/iOS/App.entitlements -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Builds/iOS/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/Builds/iOS/Icon.icns -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Builds/iOS/Info-App.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/Builds/iOS/Info-App.plist -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/DemoRunner.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/DemoRunner.jucer -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Source/Demos/DemoPIPs1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/Source/Demos/DemoPIPs1.cpp -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Source/Demos/DemoPIPs2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/Source/Demos/DemoPIPs2.cpp -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Source/Demos/IntroScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/Source/Demos/IntroScreen.h -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Source/Demos/JUCEDemos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/Source/Demos/JUCEDemos.cpp -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Source/Demos/JUCEDemos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/Source/Demos/JUCEDemos.h -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Source/JUCEAppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/Source/JUCEAppIcon.png -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/Source/Main.cpp -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Source/UI/MainComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/Source/UI/MainComponent.cpp -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Source/UI/MainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/Source/UI/MainComponent.h -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Source/UI/SettingsContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/DemoRunner/Source/UI/SettingsContent.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/AnimationAppDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/AnimationAppDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/AnimationDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/AnimationDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/BouncingBallWavetableDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/BouncingBallWavetableDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/GUI/CameraDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/CameraDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/CodeEditorDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/CodeEditorDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/ComponentDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/ComponentDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/ComponentTransformsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/ComponentTransformsDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/DialogsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/DialogsDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/FlexBoxDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/FlexBoxDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/FontsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/FontsDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/GraphicsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/GraphicsDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/GridDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/GridDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/HelloWorldDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/HelloWorldDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/ImagesDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/ImagesDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/KeyMappingsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/KeyMappingsDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/LookAndFeelDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/LookAndFeelDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/MDIDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/MDIDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/MenusDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/MenusDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/MultiTouchDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/MultiTouchDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/OpenGLAppDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/OpenGLAppDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/OpenGLDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/OpenGLDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/OpenGLDemo2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/OpenGLDemo2D.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/PropertiesDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/PropertiesDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/VideoDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/VideoDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/WebBrowserDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/WebBrowserDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/WidgetsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/WidgetsDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/WindowsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/GUI/WindowsDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Plugins/AUv3SynthPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Plugins/AUv3SynthPluginDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Plugins/ArpeggiatorPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Plugins/ArpeggiatorPluginDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Plugins/AudioPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Plugins/AudioPluginDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Plugins/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/Plugins/DSPModulePluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Plugins/DSPModulePluginDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Plugins/GainPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Plugins/GainPluginDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Plugins/InterAppAudioEffectPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Plugins/InterAppAudioEffectPluginDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Plugins/MidiLoggerPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Plugins/MidiLoggerPluginDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Plugins/MultiOutSynthPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Plugins/MultiOutSynthPluginDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Plugins/NoiseGatePluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Plugins/NoiseGatePluginDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Plugins/SamplerPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Plugins/SamplerPluginDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Plugins/SurroundPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Plugins/SurroundPluginDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Utilities/AnalyticsCollectionDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Utilities/AnalyticsCollectionDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Utilities/Box2DDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Utilities/Box2DDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Utilities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Utilities/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/Utilities/ChildProcessDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Utilities/ChildProcessDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Utilities/CryptographyDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Utilities/CryptographyDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Utilities/InAppPurchasesDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Utilities/InAppPurchasesDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Utilities/JavaScriptDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Utilities/JavaScriptDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Utilities/LiveConstantDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Utilities/LiveConstantDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Utilities/MultithreadingDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Utilities/MultithreadingDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Utilities/NetworkingDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Utilities/NetworkingDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Utilities/OSCDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Utilities/OSCDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Utilities/PushNotificationsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Utilities/PushNotificationsDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Utilities/SystemInfoDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Utilities/SystemInfoDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Utilities/TimersAndEventsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Utilities/TimersAndEventsDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Utilities/UnitTestsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Utilities/UnitTestsDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Utilities/ValueTreesDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Utilities/ValueTreesDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Utilities/XMLandJSONDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/examples/Utilities/XMLandJSONDemo.h -------------------------------------------------------------------------------- /JUCE/extras/AudioPerformanceTest/Builds/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'AudioPerformanceTest' 2 | include ':app' -------------------------------------------------------------------------------- /JUCE/extras/AudioPerformanceTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/AudioPerformanceTest/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/extras/AudioPerformanceTest/Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/AudioPerformanceTest/Source/Main.cpp -------------------------------------------------------------------------------- /JUCE/extras/AudioPluginHost/AudioPluginHost.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/AudioPluginHost/AudioPluginHost.jucer -------------------------------------------------------------------------------- /JUCE/extras/AudioPluginHost/Builds/Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/AudioPluginHost/Builds/Android/gradlew -------------------------------------------------------------------------------- /JUCE/extras/AudioPluginHost/Builds/Android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/AudioPluginHost/Builds/Android/gradlew.bat -------------------------------------------------------------------------------- /JUCE/extras/AudioPluginHost/Builds/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'AudioPluginHost' 2 | include ':app' -------------------------------------------------------------------------------- /JUCE/extras/AudioPluginHost/Builds/MacOSX/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/AudioPluginHost/Builds/MacOSX/Icon.icns -------------------------------------------------------------------------------- /JUCE/extras/AudioPluginHost/Builds/iOS/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/AudioPluginHost/Builds/iOS/Icon.icns -------------------------------------------------------------------------------- /JUCE/extras/AudioPluginHost/Builds/iOS/Info-App.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/AudioPluginHost/Builds/iOS/Info-App.plist -------------------------------------------------------------------------------- /JUCE/extras/AudioPluginHost/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/AudioPluginHost/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/extras/AudioPluginHost/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/AudioPluginHost/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /JUCE/extras/AudioPluginHost/Source/HostStartup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/AudioPluginHost/Source/HostStartup.cpp -------------------------------------------------------------------------------- /JUCE/extras/AudioPluginHost/Source/JUCEAppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/AudioPluginHost/Source/JUCEAppIcon.png -------------------------------------------------------------------------------- /JUCE/extras/AudioPluginHost/Source/UI/MainHostWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/AudioPluginHost/Source/UI/MainHostWindow.h -------------------------------------------------------------------------------- /JUCE/extras/AudioPluginHost/Source/UI/PluginWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/AudioPluginHost/Source/UI/PluginWindow.h -------------------------------------------------------------------------------- /JUCE/extras/BLOCKS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/BLOCKS/Makefile -------------------------------------------------------------------------------- /JUCE/extras/BLOCKS/standalone_sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/BLOCKS/standalone_sdk/README.md -------------------------------------------------------------------------------- /JUCE/extras/BLOCKS/standalone_sdk/SDK/BlocksHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/BLOCKS/standalone_sdk/SDK/BlocksHeader.h -------------------------------------------------------------------------------- /JUCE/extras/BinaryBuilder/BinaryBuilder.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/BinaryBuilder/BinaryBuilder.jucer -------------------------------------------------------------------------------- /JUCE/extras/BinaryBuilder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/BinaryBuilder/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/extras/BinaryBuilder/JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/BinaryBuilder/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /JUCE/extras/BinaryBuilder/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/BinaryBuilder/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /JUCE/extras/BinaryBuilder/Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/BinaryBuilder/Source/Main.cpp -------------------------------------------------------------------------------- /JUCE/extras/Build/CMake/JUCECheckAtomic.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Build/CMake/JUCECheckAtomic.cmake -------------------------------------------------------------------------------- /JUCE/extras/Build/CMake/JUCEConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Build/CMake/JUCEConfig.cmake.in -------------------------------------------------------------------------------- /JUCE/extras/Build/CMake/JUCEHelperTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Build/CMake/JUCEHelperTargets.cmake -------------------------------------------------------------------------------- /JUCE/extras/Build/CMake/JUCEUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Build/CMake/JUCEUtils.cmake -------------------------------------------------------------------------------- /JUCE/extras/Build/CMake/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Build/CMake/LaunchScreen.storyboard -------------------------------------------------------------------------------- /JUCE/extras/Build/CMake/PIPAudioProcessor.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Build/CMake/PIPAudioProcessor.cpp.in -------------------------------------------------------------------------------- /JUCE/extras/Build/CMake/PIPComponent.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Build/CMake/PIPComponent.cpp.in -------------------------------------------------------------------------------- /JUCE/extras/Build/CMake/PIPConsole.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Build/CMake/PIPConsole.cpp.in -------------------------------------------------------------------------------- /JUCE/extras/Build/CMake/RecentFilesMenuTemplate.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Build/CMake/RecentFilesMenuTemplate.nib -------------------------------------------------------------------------------- /JUCE/extras/Build/CMake/UnityPluginGUIScript.cs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Build/CMake/UnityPluginGUIScript.cs.in -------------------------------------------------------------------------------- /JUCE/extras/Build/CMake/copyDir.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Build/CMake/copyDir.cmake -------------------------------------------------------------------------------- /JUCE/extras/Build/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Build/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/extras/Build/juce_build_tools/juce_build_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Build/juce_build_tools/juce_build_tools.h -------------------------------------------------------------------------------- /JUCE/extras/Build/juce_build_tools/utils/juce_Icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Build/juce_build_tools/utils/juce_Icons.h -------------------------------------------------------------------------------- /JUCE/extras/Build/juceaide/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Build/juceaide/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/extras/Build/juceaide/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Build/juceaide/Main.cpp -------------------------------------------------------------------------------- /JUCE/extras/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/extras/NetworkGraphicsDemo/Builds/Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/NetworkGraphicsDemo/Builds/Android/gradlew -------------------------------------------------------------------------------- /JUCE/extras/NetworkGraphicsDemo/Builds/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'NetworkGraphicsDemo' 2 | include ':app' -------------------------------------------------------------------------------- /JUCE/extras/NetworkGraphicsDemo/Builds/iOS/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/NetworkGraphicsDemo/Builds/iOS/Icon.icns -------------------------------------------------------------------------------- /JUCE/extras/NetworkGraphicsDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/NetworkGraphicsDemo/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/extras/NetworkGraphicsDemo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/NetworkGraphicsDemo/README.txt -------------------------------------------------------------------------------- /JUCE/extras/NetworkGraphicsDemo/Source/Demos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/NetworkGraphicsDemo/Source/Demos.h -------------------------------------------------------------------------------- /JUCE/extras/NetworkGraphicsDemo/Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/NetworkGraphicsDemo/Source/Main.cpp -------------------------------------------------------------------------------- /JUCE/extras/NetworkGraphicsDemo/Source/SharedCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/NetworkGraphicsDemo/Source/SharedCanvas.h -------------------------------------------------------------------------------- /JUCE/extras/NetworkGraphicsDemo/Source/juce_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/NetworkGraphicsDemo/Source/juce_icon.png -------------------------------------------------------------------------------- /JUCE/extras/Projucer/Builds/LinuxMakefile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Projucer/Builds/LinuxMakefile/Makefile -------------------------------------------------------------------------------- /JUCE/extras/Projucer/Builds/MacOSX/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Projucer/Builds/MacOSX/Icon.icns -------------------------------------------------------------------------------- /JUCE/extras/Projucer/Builds/MacOSX/Info-App.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Projucer/Builds/MacOSX/Info-App.plist -------------------------------------------------------------------------------- /JUCE/extras/Projucer/Builds/VisualStudio2015/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Projucer/Builds/VisualStudio2015/icon.ico -------------------------------------------------------------------------------- /JUCE/extras/Projucer/Builds/VisualStudio2017/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Projucer/Builds/VisualStudio2017/icon.ico -------------------------------------------------------------------------------- /JUCE/extras/Projucer/Builds/VisualStudio2019/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Projucer/Builds/VisualStudio2019/icon.ico -------------------------------------------------------------------------------- /JUCE/extras/Projucer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Projucer/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/extras/Projucer/JuceLibraryCode/BinaryData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Projucer/JuceLibraryCode/BinaryData.cpp -------------------------------------------------------------------------------- /JUCE/extras/Projucer/JuceLibraryCode/BinaryData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Projucer/JuceLibraryCode/BinaryData.h -------------------------------------------------------------------------------- /JUCE/extras/Projucer/JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Projucer/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /JUCE/extras/Projucer/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Projucer/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /JUCE/extras/Projucer/Projucer.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Projucer/Projucer.jucer -------------------------------------------------------------------------------- /JUCE/extras/Projucer/Source/Application/jucer_Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Projucer/Source/Application/jucer_Main.cpp -------------------------------------------------------------------------------- /JUCE/extras/Projucer/Source/BinaryData/gradle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Projucer/Source/BinaryData/gradle/LICENSE -------------------------------------------------------------------------------- /JUCE/extras/Projucer/Source/BinaryData/gradle/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Projucer/Source/BinaryData/gradle/gradlew -------------------------------------------------------------------------------- /JUCE/extras/Projucer/Source/Project/jucer_Project.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Projucer/Source/Project/jucer_Project.cpp -------------------------------------------------------------------------------- /JUCE/extras/Projucer/Source/Project/jucer_Project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Projucer/Source/Project/jucer_Project.h -------------------------------------------------------------------------------- /JUCE/extras/Projucer/Source/Utility/UI/jucer_Icons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Projucer/Source/Utility/UI/jucer_Icons.cpp -------------------------------------------------------------------------------- /JUCE/extras/Projucer/Source/Utility/UI/jucer_Icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/Projucer/Source/Utility/UI/jucer_Icons.h -------------------------------------------------------------------------------- /JUCE/extras/UnitTestRunner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/UnitTestRunner/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/extras/UnitTestRunner/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/UnitTestRunner/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /JUCE/extras/UnitTestRunner/Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/UnitTestRunner/Source/Main.cpp -------------------------------------------------------------------------------- /JUCE/extras/UnitTestRunner/UnitTestRunner.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/UnitTestRunner/UnitTestRunner.jucer -------------------------------------------------------------------------------- /JUCE/extras/WindowsDLL/JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/WindowsDLL/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /JUCE/extras/WindowsDLL/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/WindowsDLL/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /JUCE/extras/WindowsDLL/WindowsDLL.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/extras/WindowsDLL/WindowsDLL.jucer -------------------------------------------------------------------------------- /JUCE/modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/modules/juce_analytics/analytics/juce_Analytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_analytics/analytics/juce_Analytics.h -------------------------------------------------------------------------------- /JUCE/modules/juce_analytics/juce_analytics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_analytics/juce_analytics.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_analytics/juce_analytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_analytics/juce_analytics.h -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_basics/juce_audio_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_basics/juce_audio_basics.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_basics/juce_audio_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_basics/juce_audio_basics.h -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_basics/juce_audio_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_basics/juce_audio_basics.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_basics/midi/juce_MidiBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_basics/midi/juce_MidiBuffer.h -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_basics/midi/juce_MidiFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_basics/midi/juce_MidiFile.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_basics/midi/juce_MidiFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_basics/midi/juce_MidiFile.h -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_basics/midi/juce_MidiMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_basics/midi/juce_MidiMessage.h -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_basics/midi/juce_MidiRPN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_basics/midi/juce_MidiRPN.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_basics/midi/juce_MidiRPN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_basics/midi/juce_MidiRPN.h -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_basics/mpe/juce_MPEMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_basics/mpe/juce_MPEMessages.h -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_basics/mpe/juce_MPENote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_basics/mpe/juce_MPENote.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_basics/mpe/juce_MPENote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_basics/mpe/juce_MPENote.h -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_basics/mpe/juce_MPEUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_basics/mpe/juce_MPEUtils.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_basics/mpe/juce_MPEUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_basics/mpe/juce_MPEUtils.h -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_basics/mpe/juce_MPEValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_basics/mpe/juce_MPEValue.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_basics/mpe/juce_MPEValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_basics/mpe/juce_MPEValue.h -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_basics/utilities/juce_ADSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_basics/utilities/juce_ADSR.h -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_basics/utilities/juce_Reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_basics/utilities/juce_Reverb.h -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_devices/juce_audio_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_devices/juce_audio_devices.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_devices/native/oboe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_devices/native/oboe/LICENSE -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_formats/codecs/flac/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_formats/codecs/flac/all.h -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_formats/codecs/flac/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_formats/codecs/flac/alloc.h -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_plugin_client/AUResources.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_plugin_client/AUResources.r -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_utils/juce_audio_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_utils/juce_audio_utils.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_utils/juce_audio_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_utils/juce_audio_utils.h -------------------------------------------------------------------------------- /JUCE/modules/juce_audio_utils/juce_audio_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_audio_utils/juce_audio_utils.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_blocks_basics/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_blocks_basics/README.txt -------------------------------------------------------------------------------- /JUCE/modules/juce_blocks_basics/blocks/juce_Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_blocks_basics/blocks/juce_Block.h -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Box2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/Box2D.h -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Common/b2Draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/Common/b2Draw.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Common/b2Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/Common/b2Draw.h -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Common/b2Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/Common/b2Math.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Common/b2Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/Common/b2Math.h -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Common/b2Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/Common/b2Settings.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Common/b2Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/Common/b2Settings.h -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Common/b2Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/Common/b2Timer.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Common/b2Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/Common/b2Timer.h -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Dynamics/b2Body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/Dynamics/b2Body.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Dynamics/b2Body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/Dynamics/b2Body.h -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Dynamics/b2Fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/Dynamics/b2Fixture.h -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Dynamics/b2Island.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/Dynamics/b2Island.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Dynamics/b2Island.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/Dynamics/b2Island.h -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Dynamics/b2TimeStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/Dynamics/b2TimeStep.h -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Dynamics/b2World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/Dynamics/b2World.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Dynamics/b2World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/Dynamics/b2World.h -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/README.txt -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Rope/b2Rope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/Rope/b2Rope.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Rope/b2Rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/box2d/Rope/b2Rope.h -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/juce_box2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/juce_box2d.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/juce_box2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/juce_box2d.h -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/utils/juce_Box2DRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_box2d/utils/juce_Box2DRenderer.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/containers/juce_Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/containers/juce_Array.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/containers/juce_ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/containers/juce_ArrayBase.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/containers/juce_HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/containers/juce_HashMap.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/containers/juce_OwnedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/containers/juce_OwnedArray.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/containers/juce_SortedSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/containers/juce_SortedSet.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/containers/juce_SparseSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/containers/juce_SparseSet.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/containers/juce_Variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/containers/juce_Variant.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/containers/juce_Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/containers/juce_Variant.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/files/juce_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/files/juce_File.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/files/juce_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/files/juce_File.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/files/juce_FileFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/files/juce_FileFilter.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/files/juce_FileFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/files/juce_FileFilter.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/files/juce_FileInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/files/juce_FileInputStream.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/files/juce_FileSearchPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/files/juce_FileSearchPath.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/files/juce_TemporaryFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/files/juce_TemporaryFile.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/files/juce_TemporaryFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/files/juce_TemporaryFile.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/javascript/juce_JSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/javascript/juce_JSON.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/javascript/juce_JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/javascript/juce_JSON.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/javascript/juce_Javascript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/javascript/juce_Javascript.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/juce_core.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/juce_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/juce_core.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/juce_core.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_core/logging/juce_FileLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/logging/juce_FileLogger.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/logging/juce_FileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/logging/juce_FileLogger.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/logging/juce_Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/logging/juce_Logger.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/logging/juce_Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/logging/juce_Logger.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/maths/juce_BigInteger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/maths/juce_BigInteger.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/maths/juce_BigInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/maths/juce_BigInteger.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/maths/juce_Expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/maths/juce_Expression.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/maths/juce_Expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/maths/juce_Expression.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/maths/juce_MathsFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/maths/juce_MathsFunctions.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/maths/juce_Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/maths/juce_Random.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/maths/juce_Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/maths/juce_Random.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/maths/juce_Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/maths/juce_Range.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/memory/juce_Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/memory/juce_Atomic.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/memory/juce_ByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/memory/juce_ByteOrder.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/memory/juce_HeapBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/memory/juce_HeapBlock.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/memory/juce_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/memory/juce_Memory.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/memory/juce_MemoryBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/memory/juce_MemoryBlock.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/memory/juce_MemoryBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/memory/juce_MemoryBlock.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/memory/juce_ScopedPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/memory/juce_ScopedPointer.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/memory/juce_Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/memory/juce_Singleton.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/memory/juce_WeakReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/memory/juce_WeakReference.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/misc/juce_Result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/misc/juce_Result.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/misc/juce_Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/misc/juce_Result.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/misc/juce_Uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/misc/juce_Uuid.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/misc/juce_Uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/misc/juce_Uuid.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/misc/juce_WindowsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/misc/juce_WindowsRegistry.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/native/java/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/native/java/README.txt -------------------------------------------------------------------------------- /JUCE/modules/juce_core/native/juce_android_Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/native/juce_android_Misc.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/native/juce_curl_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/native/juce_curl_Network.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/native/juce_linux_Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/native/juce_linux_Files.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/native/juce_mac_Files.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/native/juce_mac_Files.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_core/native/juce_mac_Network.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/native/juce_mac_Network.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_core/native/juce_mac_Strings.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/native/juce_mac_Strings.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_core/native/juce_mac_Threads.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/native/juce_mac_Threads.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_core/native/juce_win32_Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/native/juce_win32_Files.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/network/juce_IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/network/juce_IPAddress.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/network/juce_IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/network/juce_IPAddress.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/network/juce_MACAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/network/juce_MACAddress.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/network/juce_MACAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/network/juce_MACAddress.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/network/juce_NamedPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/network/juce_NamedPipe.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/network/juce_NamedPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/network/juce_NamedPipe.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/network/juce_Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/network/juce_Socket.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/network/juce_Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/network/juce_Socket.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/network/juce_URL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/network/juce_URL.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/network/juce_URL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/network/juce_URL.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/streams/juce_InputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/streams/juce_InputSource.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/streams/juce_InputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/streams/juce_InputStream.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/streams/juce_InputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/streams/juce_InputStream.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/streams/juce_OutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/streams/juce_OutputStream.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/system/juce_PlatformDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/system/juce_PlatformDefs.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/system/juce_StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/system/juce_StandardHeader.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/system/juce_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/system/juce_SystemStats.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/system/juce_SystemStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/system/juce_SystemStats.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/system/juce_TargetPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/system/juce_TargetPlatform.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/text/juce_Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/text/juce_Base64.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/text/juce_Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/text/juce_Base64.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/text/juce_CharPointer_UTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/text/juce_CharPointer_UTF8.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/text/juce_Identifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/text/juce_Identifier.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/text/juce_Identifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/text/juce_Identifier.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/text/juce_LocalisedStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/text/juce_LocalisedStrings.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/text/juce_NewLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/text/juce_NewLine.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/text/juce_String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/text/juce_String.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/text/juce_String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/text/juce_String.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/text/juce_StringArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/text/juce_StringArray.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/text/juce_StringArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/text/juce_StringArray.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/text/juce_StringPairArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/text/juce_StringPairArray.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/text/juce_StringPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/text/juce_StringPool.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/text/juce_StringPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/text/juce_StringPool.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/text/juce_StringRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/text/juce_StringRef.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/text/juce_TextDiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/text/juce_TextDiff.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/text/juce_TextDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/text/juce_TextDiff.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/threads/juce_ChildProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/threads/juce_ChildProcess.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/threads/juce_Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/threads/juce_Process.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/threads/juce_ReadWriteLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/threads/juce_ReadWriteLock.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/threads/juce_ScopedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/threads/juce_ScopedLock.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/threads/juce_SpinLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/threads/juce_SpinLock.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/threads/juce_Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/threads/juce_Thread.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/threads/juce_Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/threads/juce_Thread.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/threads/juce_ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/threads/juce_ThreadPool.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/threads/juce_ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/threads/juce_ThreadPool.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/threads/juce_WaitableEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/threads/juce_WaitableEvent.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/time/juce_RelativeTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/time/juce_RelativeTime.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/time/juce_RelativeTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/time/juce_RelativeTime.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/time/juce_Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/time/juce_Time.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/time/juce_Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/time/juce_Time.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/unit_tests/juce_UnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/unit_tests/juce_UnitTest.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/unit_tests/juce_UnitTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/unit_tests/juce_UnitTest.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/xml/juce_XmlDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/xml/juce_XmlDocument.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/xml/juce_XmlDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/xml/juce_XmlDocument.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/xml/juce_XmlElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/xml/juce_XmlElement.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/xml/juce_XmlElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/xml/juce_XmlElement.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/juce_ZipFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/juce_ZipFile.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/juce_ZipFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/juce_ZipFile.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/README -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/adler32.c -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/compress.c -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/crc32.c -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/crc32.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/deflate.c -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/deflate.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/infback.c -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/inffast.c -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/inffast.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/inffixed.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/inflate.c -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/inflate.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/inftrees.c -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/inftrees.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/trees.c -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/trees.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/uncompr.c -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/zconf.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/zconf.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/zconf.in.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/zlib.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/zutil.c -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_core/zip/zlib/zutil.h -------------------------------------------------------------------------------- /JUCE/modules/juce_cryptography/hashing/juce_MD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_cryptography/hashing/juce_MD5.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_cryptography/hashing/juce_MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_cryptography/hashing/juce_MD5.h -------------------------------------------------------------------------------- /JUCE/modules/juce_cryptography/juce_cryptography.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_cryptography/juce_cryptography.h -------------------------------------------------------------------------------- /JUCE/modules/juce_cryptography/juce_cryptography.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_cryptography/juce_cryptography.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/containers/juce_AudioBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/containers/juce_AudioBlock.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/frequency/juce_Convolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/frequency/juce_Convolution.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/frequency/juce_FFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/frequency/juce_FFT.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/frequency/juce_FFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/frequency/juce_FFT.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/frequency/juce_FFT_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/frequency/juce_FFT_test.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/frequency/juce_Windowing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/frequency/juce_Windowing.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/frequency/juce_Windowing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/frequency/juce_Windowing.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/juce_dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/juce_dsp.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/juce_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/juce_dsp.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/juce_dsp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/juce_dsp.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/maths/juce_LogRampedValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/maths/juce_LogRampedValue.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/maths/juce_LookupTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/maths/juce_LookupTable.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/maths/juce_LookupTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/maths/juce_LookupTable.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/maths/juce_Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/maths/juce_Matrix.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/maths/juce_Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/maths/juce_Matrix.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/maths/juce_Matrix_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/maths/juce_Matrix_test.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/maths/juce_Phase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/maths/juce_Phase.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/maths/juce_Polynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/maths/juce_Polynomial.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/maths/juce_SpecialFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/maths/juce_SpecialFunctions.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/processors/juce_DelayLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/processors/juce_DelayLine.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/processors/juce_DelayLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/processors/juce_DelayLine.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/processors/juce_DryWetMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/processors/juce_DryWetMixer.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/processors/juce_FIRFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/processors/juce_FIRFilter.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/processors/juce_FIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/processors/juce_FIRFilter.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/processors/juce_IIRFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/processors/juce_IIRFilter.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/processors/juce_IIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/processors/juce_IIRFilter.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/processors/juce_Panner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/processors/juce_Panner.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/processors/juce_Panner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/processors/juce_Panner.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/widgets/juce_Bias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/widgets/juce_Bias.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/widgets/juce_Chorus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/widgets/juce_Chorus.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/widgets/juce_Chorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/widgets/juce_Chorus.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/widgets/juce_Compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/widgets/juce_Compressor.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/widgets/juce_Compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/widgets/juce_Compressor.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/widgets/juce_Gain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/widgets/juce_Gain.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/widgets/juce_LadderFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/widgets/juce_LadderFilter.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/widgets/juce_LadderFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/widgets/juce_LadderFilter.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/widgets/juce_Limiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/widgets/juce_Limiter.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/widgets/juce_Limiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/widgets/juce_Limiter.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/widgets/juce_NoiseGate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/widgets/juce_NoiseGate.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/widgets/juce_NoiseGate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/widgets/juce_NoiseGate.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/widgets/juce_Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/widgets/juce_Oscillator.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/widgets/juce_Phaser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/widgets/juce_Phaser.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/widgets/juce_Phaser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/widgets/juce_Phaser.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/widgets/juce_Reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/widgets/juce_Reverb.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/widgets/juce_WaveShaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_dsp/widgets/juce_WaveShaper.h -------------------------------------------------------------------------------- /JUCE/modules/juce_events/juce_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_events/juce_events.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_events/juce_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_events/juce_events.h -------------------------------------------------------------------------------- /JUCE/modules/juce_events/juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_events/juce_events.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_events/messages/juce_Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_events/messages/juce_Message.h -------------------------------------------------------------------------------- /JUCE/modules/juce_events/timers/juce_MultiTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_events/timers/juce_MultiTimer.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_events/timers/juce_MultiTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_events/timers/juce_MultiTimer.h -------------------------------------------------------------------------------- /JUCE/modules/juce_events/timers/juce_Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_events/timers/juce_Timer.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_events/timers/juce_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_events/timers/juce_Timer.h -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/colour/juce_Colour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/colour/juce_Colour.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/colour/juce_Colour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/colour/juce_Colour.h -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/colour/juce_Colours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/colour/juce_Colours.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/colour/juce_Colours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/colour/juce_Colours.h -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/colour/juce_FillType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/colour/juce_FillType.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/colour/juce_FillType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/colour/juce_FillType.h -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/fonts/juce_Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/fonts/juce_Font.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/fonts/juce_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/fonts/juce_Font.h -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/fonts/juce_TextLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/fonts/juce_TextLayout.h -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/fonts/juce_Typeface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/fonts/juce_Typeface.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/fonts/juce_Typeface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/fonts/juce_Typeface.h -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/geometry/juce_Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/geometry/juce_Line.h -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/geometry/juce_Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/geometry/juce_Path.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/geometry/juce_Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/geometry/juce_Path.h -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/geometry/juce_Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/geometry/juce_Point.h -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/images/juce_Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/images/juce_Image.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/images/juce_Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/images/juce_Image.h -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/images/juce_ImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/images/juce_ImageCache.h -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/juce_graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/juce_graphics.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/juce_graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/juce_graphics.h -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/juce_graphics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/juce_graphics.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_graphics/native/juce_mac_Fonts.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_graphics/native/juce_mac_Fonts.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_basics/buttons/juce_Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_basics/buttons/juce_Button.h -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_basics/desktop/juce_Desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_basics/desktop/juce_Desktop.h -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_basics/juce_gui_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_basics/juce_gui_basics.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_basics/juce_gui_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_basics/juce_gui_basics.h -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_basics/juce_gui_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_basics/juce_gui_basics.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_basics/layout/juce_FlexBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_basics/layout/juce_FlexBox.h -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_basics/layout/juce_FlexItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_basics/layout/juce_FlexItem.h -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_basics/layout/juce_Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_basics/layout/juce_Grid.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_basics/layout/juce_Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_basics/layout/juce_Grid.h -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_basics/layout/juce_GridItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_basics/layout/juce_GridItem.h -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_basics/layout/juce_Viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_basics/layout/juce_Viewport.h -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_basics/menus/juce_PopupMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_basics/menus/juce_PopupMenu.h -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_basics/widgets/juce_Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_basics/widgets/juce_Label.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_basics/widgets/juce_Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_basics/widgets/juce_Label.h -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_basics/widgets/juce_ListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_basics/widgets/juce_ListBox.h -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_basics/widgets/juce_Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_basics/widgets/juce_Slider.h -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_basics/widgets/juce_Toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_basics/widgets/juce_Toolbar.h -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_extra/juce_gui_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_extra/juce_gui_extra.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_extra/juce_gui_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_extra/juce_gui_extra.h -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_extra/juce_gui_extra.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_extra/juce_gui_extra.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_gui_extra/misc/juce_AppleRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_gui_extra/misc/juce_AppleRemote.h -------------------------------------------------------------------------------- /JUCE/modules/juce_opengl/geometry/juce_Matrix3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_opengl/geometry/juce_Matrix3D.h -------------------------------------------------------------------------------- /JUCE/modules/juce_opengl/geometry/juce_Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_opengl/geometry/juce_Quaternion.h -------------------------------------------------------------------------------- /JUCE/modules/juce_opengl/geometry/juce_Vector3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_opengl/geometry/juce_Vector3D.h -------------------------------------------------------------------------------- /JUCE/modules/juce_opengl/juce_opengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_opengl/juce_opengl.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_opengl/juce_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_opengl/juce_opengl.h -------------------------------------------------------------------------------- /JUCE/modules/juce_opengl/juce_opengl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_opengl/juce_opengl.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_opengl/native/juce_OpenGL_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_opengl/native/juce_OpenGL_ios.h -------------------------------------------------------------------------------- /JUCE/modules/juce_opengl/native/juce_OpenGL_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_opengl/native/juce_OpenGL_osx.h -------------------------------------------------------------------------------- /JUCE/modules/juce_opengl/native/juce_OpenGL_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_opengl/native/juce_OpenGL_win32.h -------------------------------------------------------------------------------- /JUCE/modules/juce_opengl/opengl/juce_OpenGLImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_opengl/opengl/juce_OpenGLImage.h -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/juce_osc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_osc/juce_osc.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/juce_osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_osc/juce_osc.h -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/osc/juce_OSCAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_osc/osc/juce_OSCAddress.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/osc/juce_OSCAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_osc/osc/juce_OSCAddress.h -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/osc/juce_OSCArgument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_osc/osc/juce_OSCArgument.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/osc/juce_OSCArgument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_osc/osc/juce_OSCArgument.h -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/osc/juce_OSCBundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_osc/osc/juce_OSCBundle.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/osc/juce_OSCBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_osc/osc/juce_OSCBundle.h -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/osc/juce_OSCMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_osc/osc/juce_OSCMessage.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/osc/juce_OSCMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_osc/osc/juce_OSCMessage.h -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/osc/juce_OSCReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_osc/osc/juce_OSCReceiver.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/osc/juce_OSCReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_osc/osc/juce_OSCReceiver.h -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/osc/juce_OSCSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_osc/osc/juce_OSCSender.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/osc/juce_OSCSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_osc/osc/juce_OSCSender.h -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/osc/juce_OSCTimeTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_osc/osc/juce_OSCTimeTag.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/osc/juce_OSCTimeTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_osc/osc/juce_OSCTimeTag.h -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/osc/juce_OSCTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_osc/osc/juce_OSCTypes.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/osc/juce_OSCTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_osc/osc/juce_OSCTypes.h -------------------------------------------------------------------------------- /JUCE/modules/juce_video/capture/juce_CameraDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_video/capture/juce_CameraDevice.h -------------------------------------------------------------------------------- /JUCE/modules/juce_video/juce_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_video/juce_video.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_video/juce_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_video/juce_video.h -------------------------------------------------------------------------------- /JUCE/modules/juce_video/juce_video.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_video/juce_video.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_video/native/juce_android_Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_video/native/juce_android_Video.h -------------------------------------------------------------------------------- /JUCE/modules/juce_video/native/juce_mac_Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_video/native/juce_mac_Video.h -------------------------------------------------------------------------------- /JUCE/modules/juce_video/native/juce_win32_Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/JUCE/modules/juce_video/native/juce_win32_Video.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /docs/MIDI-DE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/docs/MIDI-DE.md -------------------------------------------------------------------------------- /docs/MIDI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/docs/MIDI.md -------------------------------------------------------------------------------- /docs/OSC-DE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/docs/OSC-DE.md -------------------------------------------------------------------------------- /docs/OSC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/docs/OSC.md -------------------------------------------------------------------------------- /docs/extras/Off.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/docs/extras/Off.wav -------------------------------------------------------------------------------- /docs/extras/Soundboard.touchosc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/docs/extras/Soundboard.touchosc -------------------------------------------------------------------------------- /modules/danlin_fontawesome/danlin_fontawesome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_fontawesome/danlin_fontawesome.cpp -------------------------------------------------------------------------------- /modules/danlin_fontawesome/danlin_fontawesome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_fontawesome/danlin_fontawesome.h -------------------------------------------------------------------------------- /modules/danlin_fontawesome/danlin_fontawesome.mm: -------------------------------------------------------------------------------- 1 | #include "danlin_fontawesome.cpp" 2 | -------------------------------------------------------------------------------- /modules/danlin_fontawesome/data/FontAwesomeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_fontawesome/data/FontAwesomeData.cpp -------------------------------------------------------------------------------- /modules/danlin_fontawesome/data/FontAwesomeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_fontawesome/data/FontAwesomeData.h -------------------------------------------------------------------------------- /modules/danlin_fontawesome/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_fontawesome/juce_module_info -------------------------------------------------------------------------------- /modules/danlin_fontawesome/src/FontAwesome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_fontawesome/src/FontAwesome.cpp -------------------------------------------------------------------------------- /modules/danlin_fontawesome/src/FontAwesome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_fontawesome/src/FontAwesome.h -------------------------------------------------------------------------------- /modules/danlin_fontawesome/src/Icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_fontawesome/src/Icons.h -------------------------------------------------------------------------------- /modules/danlin_oscpack/danlin_oscpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_oscpack/danlin_oscpack.cpp -------------------------------------------------------------------------------- /modules/danlin_oscpack/danlin_oscpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_oscpack/danlin_oscpack.h -------------------------------------------------------------------------------- /modules/danlin_oscpack/danlin_oscpack.mm: -------------------------------------------------------------------------------- 1 | #include "danlin_oscpack.cpp" 2 | -------------------------------------------------------------------------------- /modules/danlin_oscpack/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_oscpack/juce_module_info -------------------------------------------------------------------------------- /modules/danlin_oscpack/src/OscException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_oscpack/src/OscException.h -------------------------------------------------------------------------------- /modules/danlin_oscpack/src/OscHostEndianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_oscpack/src/OscHostEndianness.h -------------------------------------------------------------------------------- /modules/danlin_oscpack/src/OscReceivedElements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_oscpack/src/OscReceivedElements.cpp -------------------------------------------------------------------------------- /modules/danlin_oscpack/src/OscReceivedElements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_oscpack/src/OscReceivedElements.h -------------------------------------------------------------------------------- /modules/danlin_oscpack/src/OscTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_oscpack/src/OscTypes.cpp -------------------------------------------------------------------------------- /modules/danlin_oscpack/src/OscTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_oscpack/src/OscTypes.h -------------------------------------------------------------------------------- /modules/danlin_oscserver/danlin_oscserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_oscserver/danlin_oscserver.cpp -------------------------------------------------------------------------------- /modules/danlin_oscserver/danlin_oscserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_oscserver/danlin_oscserver.h -------------------------------------------------------------------------------- /modules/danlin_oscserver/danlin_oscserver.mm: -------------------------------------------------------------------------------- 1 | #include "danlin_oscserver.cpp" 2 | -------------------------------------------------------------------------------- /modules/danlin_oscserver/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_oscserver/juce_module_info -------------------------------------------------------------------------------- /modules/danlin_oscserver/src/OscManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_oscserver/src/OscManager.cpp -------------------------------------------------------------------------------- /modules/danlin_oscserver/src/OscManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_oscserver/src/OscManager.h -------------------------------------------------------------------------------- /modules/danlin_oscserver/src/OscParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_oscserver/src/OscParameter.h -------------------------------------------------------------------------------- /modules/danlin_oscserver/src/OscParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_oscserver/src/OscParameters.h -------------------------------------------------------------------------------- /modules/danlin_oscserver/src/OscServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_oscserver/src/OscServer.cpp -------------------------------------------------------------------------------- /modules/danlin_oscserver/src/OscServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/danlin_oscserver/src/OscServer.h -------------------------------------------------------------------------------- /modules/stk_core/functions/BowTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/functions/BowTable.h -------------------------------------------------------------------------------- /modules/stk_core/functions/Cubic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/functions/Cubic.h -------------------------------------------------------------------------------- /modules/stk_core/functions/Function.h: -------------------------------------------------------------------------------- 1 | #include "../stk/Function.h" -------------------------------------------------------------------------------- /modules/stk_core/functions/JetTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/functions/JetTable.h -------------------------------------------------------------------------------- /modules/stk_core/functions/ReedTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/functions/ReedTable.h -------------------------------------------------------------------------------- /modules/stk_core/io/FileRead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/io/FileRead.cpp -------------------------------------------------------------------------------- /modules/stk_core/io/FileRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/io/FileRead.h -------------------------------------------------------------------------------- /modules/stk_core/io/FileWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/io/FileWrite.cpp -------------------------------------------------------------------------------- /modules/stk_core/io/FileWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/io/FileWrite.h -------------------------------------------------------------------------------- /modules/stk_core/io/FileWvIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/io/FileWvIn.cpp -------------------------------------------------------------------------------- /modules/stk_core/io/FileWvIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/io/FileWvIn.h -------------------------------------------------------------------------------- /modules/stk_core/io/FileWvOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/io/FileWvOut.cpp -------------------------------------------------------------------------------- /modules/stk_core/io/FileWvOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/io/FileWvOut.h -------------------------------------------------------------------------------- /modules/stk_core/io/Stk.h: -------------------------------------------------------------------------------- 1 | #include "../stk/Stk.h" -------------------------------------------------------------------------------- /modules/stk_core/io/WvIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/io/WvIn.h -------------------------------------------------------------------------------- /modules/stk_core/io/WvOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/io/WvOut.h -------------------------------------------------------------------------------- /modules/stk_core/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/juce_module_info -------------------------------------------------------------------------------- /modules/stk_core/stk/Effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/stk/Effect.h -------------------------------------------------------------------------------- /modules/stk_core/stk/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/stk/Filter.h -------------------------------------------------------------------------------- /modules/stk_core/stk/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/stk/Function.h -------------------------------------------------------------------------------- /modules/stk_core/stk/Generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/stk/Generator.h -------------------------------------------------------------------------------- /modules/stk_core/stk/Instrmnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/stk/Instrmnt.h -------------------------------------------------------------------------------- /modules/stk_core/stk/Phonemes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/stk/Phonemes.cpp -------------------------------------------------------------------------------- /modules/stk_core/stk/Phonemes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/stk/Phonemes.h -------------------------------------------------------------------------------- /modules/stk_core/stk/Sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/stk/Sphere.cpp -------------------------------------------------------------------------------- /modules/stk_core/stk/Sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/stk/Sphere.h -------------------------------------------------------------------------------- /modules/stk_core/stk/Stk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/stk/Stk.cpp -------------------------------------------------------------------------------- /modules/stk_core/stk/Stk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/stk/Stk.h -------------------------------------------------------------------------------- /modules/stk_core/stk/Vector3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/stk/Vector3D.h -------------------------------------------------------------------------------- /modules/stk_core/stk/Voicer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/stk/Voicer.cpp -------------------------------------------------------------------------------- /modules/stk_core/stk/Voicer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/stk/Voicer.h -------------------------------------------------------------------------------- /modules/stk_core/stk_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/stk_core.cpp -------------------------------------------------------------------------------- /modules/stk_core/stk_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/stk_core.h -------------------------------------------------------------------------------- /modules/stk_core/stk_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_core/stk_core.mm -------------------------------------------------------------------------------- /modules/stk_generators/generators/ADSR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/ADSR.cpp -------------------------------------------------------------------------------- /modules/stk_generators/generators/ADSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/ADSR.h -------------------------------------------------------------------------------- /modules/stk_generators/generators/Asymp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/Asymp.cpp -------------------------------------------------------------------------------- /modules/stk_generators/generators/Asymp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/Asymp.h -------------------------------------------------------------------------------- /modules/stk_generators/generators/Blit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/Blit.cpp -------------------------------------------------------------------------------- /modules/stk_generators/generators/Blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/Blit.h -------------------------------------------------------------------------------- /modules/stk_generators/generators/BlitSaw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/BlitSaw.cpp -------------------------------------------------------------------------------- /modules/stk_generators/generators/BlitSaw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/BlitSaw.h -------------------------------------------------------------------------------- /modules/stk_generators/generators/BlitSquare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/BlitSquare.cpp -------------------------------------------------------------------------------- /modules/stk_generators/generators/BlitSquare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/BlitSquare.h -------------------------------------------------------------------------------- /modules/stk_generators/generators/Envelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/Envelope.cpp -------------------------------------------------------------------------------- /modules/stk_generators/generators/Envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/Envelope.h -------------------------------------------------------------------------------- /modules/stk_generators/generators/FileLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/FileLoop.cpp -------------------------------------------------------------------------------- /modules/stk_generators/generators/FileLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/FileLoop.h -------------------------------------------------------------------------------- /modules/stk_generators/generators/FileRead.h: -------------------------------------------------------------------------------- 1 | #include "../../stk_core/io/FileRead.h" 2 | -------------------------------------------------------------------------------- /modules/stk_generators/generators/FileWvIn.h: -------------------------------------------------------------------------------- 1 | #include "../../stk_core/io/FileWvIn.h" 2 | -------------------------------------------------------------------------------- /modules/stk_generators/generators/Generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/Generator.h -------------------------------------------------------------------------------- /modules/stk_generators/generators/Granulate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/Granulate.cpp -------------------------------------------------------------------------------- /modules/stk_generators/generators/Granulate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/Granulate.h -------------------------------------------------------------------------------- /modules/stk_generators/generators/Noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/Noise.cpp -------------------------------------------------------------------------------- /modules/stk_generators/generators/Noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/Noise.h -------------------------------------------------------------------------------- /modules/stk_generators/generators/SineWave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/SineWave.cpp -------------------------------------------------------------------------------- /modules/stk_generators/generators/SineWave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/generators/SineWave.h -------------------------------------------------------------------------------- /modules/stk_generators/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/juce_module_info -------------------------------------------------------------------------------- /modules/stk_generators/stk_generators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/stk_generators.cpp -------------------------------------------------------------------------------- /modules/stk_generators/stk_generators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/stk_generators.h -------------------------------------------------------------------------------- /modules/stk_generators/stk_generators.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/modules/stk_generators/stk_generators.mm -------------------------------------------------------------------------------- /src/plugin/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/plugin/PluginEditor.cpp -------------------------------------------------------------------------------- /src/plugin/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/plugin/PluginEditor.h -------------------------------------------------------------------------------- /src/plugin/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/plugin/PluginProcessor.cpp -------------------------------------------------------------------------------- /src/plugin/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/plugin/PluginProcessor.h -------------------------------------------------------------------------------- /src/shared/player/Bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/player/Bank.cpp -------------------------------------------------------------------------------- /src/shared/player/Bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/player/Bank.h -------------------------------------------------------------------------------- /src/shared/player/Library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/player/Library.cpp -------------------------------------------------------------------------------- /src/shared/player/Library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/player/Library.h -------------------------------------------------------------------------------- /src/shared/player/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/player/Player.cpp -------------------------------------------------------------------------------- /src/shared/player/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/player/Player.h -------------------------------------------------------------------------------- /src/shared/player/Slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/player/Slot.cpp -------------------------------------------------------------------------------- /src/shared/player/Slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/player/Slot.h -------------------------------------------------------------------------------- /src/shared/ui/LookAndFeel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/ui/LookAndFeel.cpp -------------------------------------------------------------------------------- /src/shared/ui/LookAndFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/ui/LookAndFeel.h -------------------------------------------------------------------------------- /src/shared/ui/grid/GridCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/ui/grid/GridCell.cpp -------------------------------------------------------------------------------- /src/shared/ui/grid/GridCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/ui/grid/GridCell.h -------------------------------------------------------------------------------- /src/shared/ui/grid/GridComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/ui/grid/GridComponent.cpp -------------------------------------------------------------------------------- /src/shared/ui/grid/GridComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/ui/grid/GridComponent.h -------------------------------------------------------------------------------- /src/shared/ui/settings/SettingsComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/ui/settings/SettingsComponent.cpp -------------------------------------------------------------------------------- /src/shared/ui/settings/SettingsComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/ui/settings/SettingsComponent.h -------------------------------------------------------------------------------- /src/shared/ui/table/TableButtonCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/ui/table/TableButtonCell.cpp -------------------------------------------------------------------------------- /src/shared/ui/table/TableButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/ui/table/TableButtonCell.h -------------------------------------------------------------------------------- /src/shared/ui/table/TableComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/ui/table/TableComponent.cpp -------------------------------------------------------------------------------- /src/shared/ui/table/TableComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ultraschall/ultraschall-soundboard/HEAD/src/shared/ui/table/TableComponent.h --------------------------------------------------------------------------------