├── .clang-tidy ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml ├── contributing.md ├── pull_request_template.md └── workflows │ └── check-cla.yml ├── .gitignore ├── .gitlab-ci.yml ├── BREAKING_CHANGES.md ├── CHANGE_LIST.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── docs ├── ARA.md ├── Accessibility.md ├── CMake API.md ├── JUCE Module Format.md ├── Linux Dependencies.md ├── README.md └── doxygen │ ├── Doxyfile │ ├── Makefile │ ├── make.bat │ └── process_source_files.py ├── examples ├── Assets │ ├── ADSRComponent.h │ ├── 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 │ ├── teapot.obj │ ├── tile_background.png │ └── treedemo.xml ├── Audio │ ├── AudioAppDemo.h │ ├── AudioLatencyDemo.h │ ├── AudioPlaybackDemo.h │ ├── AudioRecordingDemo.h │ ├── AudioSettingsDemo.h │ ├── AudioSynthesiserDemo.h │ ├── AudioWorkgroupDemo.h │ ├── CMakeLists.txt │ ├── CapabilityInquiryDemo.h │ ├── MPEDemo.h │ ├── MidiDemo.h │ ├── PluckedStringsDemo.h │ └── SimpleFFTDemo.h ├── 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 │ │ │ │ │ ├── debug │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── string.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── ADSRComponent.h │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── teapot.obj │ │ │ │ │ │ ├── tile_background.png │ │ │ │ │ │ └── treedemo.xml │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ └── drawable-xhdpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ └── release │ │ │ │ │ └── res │ │ │ │ │ └── values │ │ │ │ │ └── string.xml │ │ │ ├── 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 │ │ ├── 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 │ │ ├── VisualStudio2022 │ │ │ ├── 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-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@2x-1.png │ │ │ │ ├── Icon-Spotlight-40.png │ │ │ │ ├── Icon-Spotlight-40@2x-1.png │ │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ │ └── Icon-Spotlight-40@3x.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_processors_ara.cpp │ │ ├── include_juce_audio_processors_lv2_libs.cpp │ │ ├── include_juce_audio_utils.cpp │ │ ├── include_juce_audio_utils.mm │ │ ├── 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 │ ├── AccessibilityDemo.h │ ├── 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 │ ├── ARAPluginDemo.h │ ├── AUv3SynthPluginDemo.h │ ├── ArpeggiatorPluginDemo.h │ ├── AudioPluginDemo.h │ ├── CMakeLists.txt │ ├── DSPModulePluginDemo.h │ ├── GainPluginDemo.h │ ├── HostPluginDemo.h │ ├── MidiLoggerPluginDemo.h │ ├── MultiOutSynthPluginDemo.h │ ├── NoiseGatePluginDemo.h │ ├── ReaperEmbeddedViewPluginDemo.h │ ├── SamplerPluginDemo.h │ ├── SurroundPluginDemo.h │ └── extern │ │ ├── LICENSE.md │ │ ├── reaper_plugin_fx_embed.h │ │ └── reaper_vst3_interfaces.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 │ │ │ │ │ ├── debug │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── string.xml │ │ │ │ │ ├── main │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ └── release │ │ │ │ │ └── res │ │ │ │ │ └── values │ │ │ │ │ └── string.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 │ │ ├── VisualStudio2022 │ │ │ ├── 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_processors_ara.cpp │ │ ├── include_juce_audio_processors_lv2_libs.cpp │ │ ├── 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 │ │ │ │ │ ├── debug │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── string.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── ADSRComponent.h │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── teapot.obj │ │ │ │ │ │ ├── tile_background.png │ │ │ │ │ │ └── treedemo.xml │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ └── drawable-xhdpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ └── release │ │ │ │ │ └── res │ │ │ │ │ └── values │ │ │ │ │ └── string.xml │ │ │ ├── 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 │ │ ├── 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 │ │ ├── VisualStudio2022 │ │ │ ├── AudioPluginHost.sln │ │ │ ├── AudioPluginHost_App.vcxproj │ │ │ ├── AudioPluginHost_App.vcxproj.filters │ │ │ ├── icon.ico │ │ │ └── resources.rc │ │ └── iOS │ │ │ ├── App.entitlements │ │ │ ├── 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-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@2x-1.png │ │ │ │ ├── Icon-Spotlight-40.png │ │ │ │ ├── Icon-Spotlight-40@2x-1.png │ │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ │ └── Icon-Spotlight-40@3x.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_processors_ara.cpp │ │ ├── include_juce_audio_processors_lv2_libs.cpp │ │ ├── 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 │ │ ├── ARAPlugin.cpp │ │ ├── ARAPlugin.h │ │ ├── IOConfigurationWindow.cpp │ │ ├── IOConfigurationWindow.h │ │ ├── InternalPlugins.cpp │ │ ├── InternalPlugins.h │ │ ├── PluginGraph.cpp │ │ └── PluginGraph.h │ │ └── UI │ │ ├── GraphEditorPanel.cpp │ │ ├── GraphEditorPanel.h │ │ ├── MainHostWindow.cpp │ │ ├── MainHostWindow.h │ │ └── PluginWindow.h ├── BinaryBuilder │ ├── BinaryBuilder.jucer │ ├── Builds │ │ ├── LinuxMakefile │ │ │ └── Makefile │ │ ├── MacOSX │ │ │ ├── BinaryBuilder.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── RecentFilesMenuTemplate.nib │ │ └── VisualStudio2022 │ │ │ ├── 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 │ │ ├── JUCEModuleSupport.cmake │ │ ├── JUCEUtils.cmake │ │ ├── JuceLV2Defines.h.in │ │ ├── LaunchScreen.storyboard │ │ ├── PIPAudioProcessor.cpp.in │ │ ├── PIPAudioProcessorWithARA.cpp.in │ │ ├── PIPComponent.cpp.in │ │ ├── PIPConsole.cpp.in │ │ ├── RecentFilesMenuTemplate.nib │ │ ├── UnityPluginGUIScript.cs.in │ │ ├── checkBundleSigning.cmake │ │ ├── copyDir.cmake │ │ ├── juce_LinuxSubprocessHelper.cpp │ │ └── 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 │ │ │ │ │ ├── debug │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── string.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-mdpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ └── release │ │ │ │ │ └── res │ │ │ │ │ └── values │ │ │ │ │ └── string.xml │ │ │ ├── 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 │ │ ├── VisualStudio2022 │ │ │ ├── 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-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@2x-1.png │ │ │ ├── Icon-Spotlight-40.png │ │ │ ├── Icon-Spotlight-40@2x-1.png │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ └── Icon-Spotlight-40@3x.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_processors_ara.cpp │ │ ├── include_juce_audio_processors_lv2_libs.cpp │ │ ├── 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 │ │ ├── ClientComponent.h │ │ ├── Demos.h │ │ ├── Main.cpp │ │ ├── MasterComponent.h │ │ ├── SharedCanvas.h │ │ └── juce_icon.png ├── Projucer │ ├── Builds │ │ ├── LinuxMakefile │ │ │ └── Makefile │ │ ├── MacOSX │ │ │ ├── Icon.icns │ │ │ ├── Info-App.plist │ │ │ ├── Projucer.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── RecentFilesMenuTemplate.nib │ │ ├── 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 │ │ └── VisualStudio2022 │ │ │ ├── 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_codeBlocks.svg │ │ │ ├── export_linux.svg │ │ │ ├── export_visualStudio.svg │ │ │ ├── export_xcode.svg │ │ │ ├── gpl_logo.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_AudioPluginARADocumentControllerTemplate.cpp │ │ │ ├── jucer_AudioPluginARADocumentControllerTemplate.h │ │ │ ├── jucer_AudioPluginARAEditorTemplate.cpp │ │ │ ├── jucer_AudioPluginARAEditorTemplate.h │ │ │ ├── jucer_AudioPluginARAFilterTemplate.h │ │ │ ├── jucer_AudioPluginARAPlaybackRendererTemplate.cpp │ │ │ ├── jucer_AudioPluginARAPlaybackRendererTemplate.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 │ │ └── juce_SimpleBinaryBuilder.cpp │ │ ├── CodeEditor │ │ ├── jucer_DocumentEditorComponent.cpp │ │ ├── jucer_DocumentEditorComponent.h │ │ ├── jucer_ItemPreviewComponent.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 │ │ ├── Project │ │ ├── Modules │ │ │ ├── jucer_AvailableModulesList.h │ │ │ ├── jucer_ModuleDescription.h │ │ │ ├── jucer_Modules.cpp │ │ │ └── jucer_Modules.h │ │ ├── UI │ │ │ ├── Sidebar │ │ │ │ ├── jucer_ExporterTreeItems.h │ │ │ │ ├── jucer_FileTreeItems.h │ │ │ │ ├── jucer_ModuleTreeItems.h │ │ │ │ ├── jucer_ProjectTreeItemBase.h │ │ │ │ ├── jucer_Sidebar.h │ │ │ │ └── jucer_TreeItemTypes.h │ │ │ ├── jucer_ContentViewComponent.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_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_ValueTreePropertyWithDefaultWrapper.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 │ │ └── VisualStudio2022 │ │ │ ├── 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_processors_ara.cpp │ │ ├── include_juce_audio_processors_lv2_libs.cpp │ │ ├── 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_midi_ci.cpp │ │ ├── include_juce_opengl.cpp │ │ ├── include_juce_opengl.mm │ │ ├── include_juce_osc.cpp │ │ ├── include_juce_product_unlocking.cpp │ │ └── include_juce_product_unlocking.mm │ ├── Source │ │ └── Main.cpp │ └── UnitTestRunner.jucer └── WindowsDLL │ ├── Builds │ └── VisualStudio2022 │ │ ├── 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_processors_ara.cpp │ ├── include_juce_audio_processors_lv2_libs.cpp │ ├── 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.cpp │ └── 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_MidiDataConcatenator.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 │ └── ump │ │ ├── juce_UMP.h │ │ ├── juce_UMPBytesOnGroup.h │ │ ├── juce_UMPConversion.h │ │ ├── juce_UMPConverters.h │ │ ├── juce_UMPDeviceInfo.h │ │ ├── juce_UMPDispatcher.h │ │ ├── juce_UMPFactory.h │ │ ├── juce_UMPIterator.cpp │ │ ├── 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_UMPUtils.cpp │ │ ├── juce_UMPUtils.h │ │ ├── juce_UMPView.cpp │ │ ├── juce_UMPView.h │ │ ├── juce_UMP_test.cpp │ │ ├── juce_UMPacket.h │ │ └── juce_UMPackets.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_AudioWorkgroup_mac.h │ ├── juce_CoreAudioLayouts_mac.h │ └── juce_CoreAudioTimeConversions_mac.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.cpp │ ├── 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_ADSR_test.cpp │ ├── juce_AudioWorkgroup.cpp │ ├── juce_AudioWorkgroup.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_SampleRateHelpers.cpp │ └── 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_UMPU32InputHandler.h ├── native │ ├── java │ │ └── app │ │ │ └── com │ │ │ └── rmsl │ │ │ └── juce │ │ │ └── JuceMidiSupport.java │ ├── juce_ALSA_linux.cpp │ ├── juce_ASIO_windows.cpp │ ├── juce_Audio_android.cpp │ ├── juce_Audio_ios.cpp │ ├── juce_Audio_ios.h │ ├── juce_Bela_linux.cpp │ ├── juce_CoreAudio_mac.cpp │ ├── juce_CoreMidi_mac.mm │ ├── juce_DirectSound_windows.cpp │ ├── juce_HighPerformanceAudioHelpers_android.h │ ├── juce_JackAudio_linux.cpp │ ├── juce_Midi_android.cpp │ ├── juce_Midi_linux.cpp │ ├── juce_Midi_windows.cpp │ ├── juce_Oboe_android.cpp │ ├── juce_OpenSL_android.cpp │ ├── juce_WASAPI_windows.cpp │ └── oboe │ │ ├── .clang-tidy │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── include │ │ └── oboe │ │ │ ├── AudioStream.h │ │ │ ├── AudioStreamBase.h │ │ │ ├── AudioStreamBuilder.h │ │ │ ├── AudioStreamCallback.h │ │ │ ├── Definitions.h │ │ │ ├── FifoBuffer.h │ │ │ ├── FifoControllerBase.h │ │ │ ├── FullDuplexStream.h │ │ │ ├── LatencyTuner.h │ │ │ ├── Oboe.h │ │ │ ├── OboeExtensions.h │ │ │ ├── ResultWithValue.h │ │ │ ├── StabilizedCallback.h │ │ │ ├── Utilities.h │ │ │ └── Version.h │ │ └── src │ │ ├── aaudio │ │ ├── AAudioExtensions.h │ │ ├── AAudioLoader.cpp │ │ ├── AAudioLoader.h │ │ ├── AudioStreamAAudio.cpp │ │ └── AudioStreamAAudio.h │ │ ├── common │ │ ├── AdpfWrapper.cpp │ │ ├── AdpfWrapper.h │ │ ├── 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 │ │ ├── OboeExtensions.cpp │ │ ├── QuirksManager.cpp │ │ ├── QuirksManager.h │ │ ├── README.md │ │ ├── SourceFloatCaller.cpp │ │ ├── SourceFloatCaller.h │ │ ├── SourceI16Caller.cpp │ │ ├── SourceI16Caller.h │ │ ├── SourceI24Caller.cpp │ │ ├── SourceI24Caller.h │ │ ├── SourceI32Caller.cpp │ │ ├── SourceI32Caller.h │ │ ├── StabilizedCallback.cpp │ │ ├── Trace.cpp │ │ ├── Trace.h │ │ ├── Utilities.cpp │ │ └── Version.cpp │ │ ├── fifo │ │ ├── FifoBuffer.cpp │ │ ├── FifoController.cpp │ │ ├── FifoController.h │ │ ├── FifoControllerBase.cpp │ │ ├── FifoControllerIndirect.cpp │ │ └── FifoControllerIndirect.h │ │ ├── flowgraph │ │ ├── ChannelCountConverter.cpp │ │ ├── ChannelCountConverter.h │ │ ├── ClipToRange.cpp │ │ ├── ClipToRange.h │ │ ├── FlowGraphNode.cpp │ │ ├── FlowGraphNode.h │ │ ├── FlowgraphUtilities.h │ │ ├── Limiter.cpp │ │ ├── Limiter.h │ │ ├── ManyToMultiConverter.cpp │ │ ├── ManyToMultiConverter.h │ │ ├── MonoBlend.cpp │ │ ├── MonoBlend.h │ │ ├── MonoToMultiConverter.cpp │ │ ├── MonoToMultiConverter.h │ │ ├── MultiToManyConverter.cpp │ │ ├── MultiToManyConverter.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 │ │ ├── SinkI32.cpp │ │ ├── SinkI32.h │ │ ├── SourceFloat.cpp │ │ ├── SourceFloat.h │ │ ├── SourceI16.cpp │ │ ├── SourceI16.h │ │ ├── SourceI24.cpp │ │ ├── SourceI24.h │ │ ├── SourceI32.cpp │ │ ├── SourceI32.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 │ │ │ ├── README.md │ │ │ ├── ResamplerDefinitions.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 │ │ ├── JUCE_CHANGES.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 │ │ │ ├── deduplication │ │ │ │ ├── bitreader_read_rice_signed_block.c │ │ │ │ ├── lpc_compute_autocorrelation_intrin.c │ │ │ │ └── lpc_compute_autocorrelation_intrin_neon.c │ │ │ ├── fixed.c │ │ │ ├── float.c │ │ │ ├── format.c │ │ │ ├── include │ │ │ │ ├── private │ │ │ │ │ ├── bitmath.h │ │ │ │ │ ├── bitreader.h │ │ │ │ │ ├── bitwriter.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── crc.h │ │ │ │ │ ├── fixed.h │ │ │ │ │ ├── float.h │ │ │ │ │ ├── format.h │ │ │ │ │ ├── lpc.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── memory.h │ │ │ │ │ ├── stream_encoder.h │ │ │ │ │ ├── stream_encoder_framing.h │ │ │ │ │ └── window.h │ │ │ │ └── protected │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ └── stream_encoder.h │ │ │ ├── lpc_flac.c │ │ │ ├── lpc_intrin_neon.c │ │ │ ├── md5.c │ │ │ ├── memory.c │ │ │ ├── stream_decoder.c │ │ │ ├── stream_encoder.c │ │ │ ├── stream_encoder_framing.c │ │ │ └── window_flac.c │ │ ├── metadata.h │ │ ├── ordinals.h │ │ ├── private.h │ │ ├── stream_decoder.h │ │ └── stream_encoder.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_ARAAudioReaders.cpp │ ├── juce_ARAAudioReaders.h │ ├── 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 ├── AU │ └── AudioUnitSDK │ │ ├── AUBase.cpp │ │ ├── AUBase.h │ │ ├── AUBuffer.cpp │ │ ├── AUBuffer.h │ │ ├── AUBufferAllocator.cpp │ │ ├── AUEffectBase.cpp │ │ ├── AUEffectBase.h │ │ ├── AUInputElement.cpp │ │ ├── AUInputElement.h │ │ ├── AUMIDIBase.cpp │ │ ├── AUMIDIBase.h │ │ ├── AUMIDIEffectBase.cpp │ │ ├── AUMIDIEffectBase.h │ │ ├── AUMIDIUtility.h │ │ ├── AUOutputElement.cpp │ │ ├── AUOutputElement.h │ │ ├── AUPlugInDispatch.cpp │ │ ├── AUPlugInDispatch.h │ │ ├── AUScopeElement.cpp │ │ ├── AUScopeElement.h │ │ ├── AUSilentTimeout.h │ │ ├── AUUtility.h │ │ ├── AudioUnitSDK.h │ │ ├── ComponentBase.cpp │ │ ├── ComponentBase.h │ │ ├── JUCE CHANGES.txt │ │ ├── LICENSE.txt │ │ ├── MusicDeviceBase.cpp │ │ └── MusicDeviceBase.h ├── LV2 │ └── juce_LV2ManifestHelper.cpp ├── Standalone │ └── juce_StandaloneFilterWindow.h ├── Unity │ └── juce_UnityPluginInterface.h ├── VST3 │ ├── juce_VST3ManifestHelper.cpp │ └── juce_VST3ManifestHelper.mm ├── detail │ ├── juce_CheckSettingMacros.h │ ├── juce_CreatePluginFilter.h │ ├── juce_IncludeModuleHeaders.h │ ├── juce_IncludeSystemHeaders.h │ ├── juce_LinuxMessageThread.h │ ├── juce_PluginUtilities.h │ └── juce_VSTWindowUtilities.h ├── juce_audio_plugin_client.h ├── juce_audio_plugin_client_AAX.cpp ├── juce_audio_plugin_client_AAX.mm ├── juce_audio_plugin_client_AAX_utils.cpp ├── juce_audio_plugin_client_ARA.cpp ├── juce_audio_plugin_client_AU_1.mm ├── juce_audio_plugin_client_AU_2.mm ├── juce_audio_plugin_client_AUv3.mm ├── juce_audio_plugin_client_LV2.cpp ├── juce_audio_plugin_client_LV2.mm ├── juce_audio_plugin_client_Standalone.cpp ├── juce_audio_plugin_client_Unity.cpp ├── juce_audio_plugin_client_VST2.cpp ├── juce_audio_plugin_client_VST2.mm ├── juce_audio_plugin_client_VST3.cpp └── juce_audio_plugin_client_VST3.mm ├── juce_audio_processors ├── format │ ├── juce_AudioPluginFormat.cpp │ ├── juce_AudioPluginFormat.h │ ├── juce_AudioPluginFormatManager.cpp │ └── juce_AudioPluginFormatManager.h ├── format_types │ ├── LV2_SDK │ │ ├── README.md │ │ ├── generate_lv2_bundle_sources.py │ │ ├── juce_lv2_config.h │ │ ├── lilv │ │ │ ├── COPYING │ │ │ ├── lilv │ │ │ │ ├── lilv.h │ │ │ │ └── lilvmm.hpp │ │ │ └── src │ │ │ │ ├── collections.c │ │ │ │ ├── filesystem.c │ │ │ │ ├── filesystem.h │ │ │ │ ├── instance.c │ │ │ │ ├── lib.c │ │ │ │ ├── lilv_internal.h │ │ │ │ ├── node.c │ │ │ │ ├── plugin.c │ │ │ │ ├── pluginclass.c │ │ │ │ ├── port.c │ │ │ │ ├── query.c │ │ │ │ ├── scalepoint.c │ │ │ │ ├── state.c │ │ │ │ ├── ui.c │ │ │ │ ├── util.c │ │ │ │ ├── world.c │ │ │ │ └── zix │ │ │ │ ├── common.h │ │ │ │ ├── tree.c │ │ │ │ └── tree.h │ │ ├── lilv_config.h │ │ ├── lv2 │ │ │ ├── COPYING │ │ │ └── lv2 │ │ │ │ ├── atom │ │ │ │ ├── atom-test-utils.c │ │ │ │ ├── atom-test.c │ │ │ │ ├── atom.h │ │ │ │ ├── atom.meta.ttl │ │ │ │ ├── atom.ttl │ │ │ │ ├── forge-overflow-test.c │ │ │ │ ├── forge.h │ │ │ │ ├── manifest.ttl │ │ │ │ └── util.h │ │ │ │ ├── buf-size │ │ │ │ ├── buf-size.h │ │ │ │ ├── buf-size.meta.ttl │ │ │ │ ├── buf-size.ttl │ │ │ │ └── manifest.ttl │ │ │ │ ├── core │ │ │ │ ├── attributes.h │ │ │ │ ├── lv2.h │ │ │ │ ├── lv2_util.h │ │ │ │ ├── lv2core.meta.ttl │ │ │ │ ├── lv2core.ttl │ │ │ │ ├── manifest.ttl │ │ │ │ ├── meta.ttl │ │ │ │ └── people.ttl │ │ │ │ ├── data-access │ │ │ │ ├── data-access.h │ │ │ │ ├── data-access.meta.ttl │ │ │ │ ├── data-access.ttl │ │ │ │ └── manifest.ttl │ │ │ │ ├── dynmanifest │ │ │ │ ├── dynmanifest.h │ │ │ │ ├── dynmanifest.meta.ttl │ │ │ │ ├── dynmanifest.ttl │ │ │ │ └── manifest.ttl │ │ │ │ ├── event │ │ │ │ ├── event-helpers.h │ │ │ │ ├── event.h │ │ │ │ ├── event.meta.ttl │ │ │ │ ├── event.ttl │ │ │ │ └── manifest.ttl │ │ │ │ ├── instance-access │ │ │ │ ├── instance-access.h │ │ │ │ ├── instance-access.meta.ttl │ │ │ │ ├── instance-access.ttl │ │ │ │ └── manifest.ttl │ │ │ │ ├── log │ │ │ │ ├── log.h │ │ │ │ ├── log.meta.ttl │ │ │ │ ├── log.ttl │ │ │ │ ├── logger.h │ │ │ │ └── manifest.ttl │ │ │ │ ├── midi │ │ │ │ ├── manifest.ttl │ │ │ │ ├── midi.h │ │ │ │ ├── midi.meta.ttl │ │ │ │ └── midi.ttl │ │ │ │ ├── morph │ │ │ │ ├── manifest.ttl │ │ │ │ ├── morph.h │ │ │ │ ├── morph.meta.ttl │ │ │ │ └── morph.ttl │ │ │ │ ├── options │ │ │ │ ├── manifest.ttl │ │ │ │ ├── options.h │ │ │ │ ├── options.meta.ttl │ │ │ │ └── options.ttl │ │ │ │ ├── parameters │ │ │ │ ├── manifest.ttl │ │ │ │ ├── parameters.h │ │ │ │ ├── parameters.meta.ttl │ │ │ │ └── parameters.ttl │ │ │ │ ├── patch │ │ │ │ ├── manifest.ttl │ │ │ │ ├── patch.h │ │ │ │ ├── patch.meta.ttl │ │ │ │ └── patch.ttl │ │ │ │ ├── port-groups │ │ │ │ ├── manifest.ttl │ │ │ │ ├── port-groups.h │ │ │ │ ├── port-groups.meta.ttl │ │ │ │ └── port-groups.ttl │ │ │ │ ├── port-props │ │ │ │ ├── manifest.ttl │ │ │ │ ├── port-props.h │ │ │ │ ├── port-props.meta.ttl │ │ │ │ └── port-props.ttl │ │ │ │ ├── presets │ │ │ │ ├── manifest.ttl │ │ │ │ ├── presets.h │ │ │ │ ├── presets.meta.ttl │ │ │ │ └── presets.ttl │ │ │ │ ├── resize-port │ │ │ │ ├── manifest.ttl │ │ │ │ ├── resize-port.h │ │ │ │ ├── resize-port.meta.ttl │ │ │ │ └── resize-port.ttl │ │ │ │ ├── state │ │ │ │ ├── manifest.ttl │ │ │ │ ├── state.h │ │ │ │ ├── state.meta.ttl │ │ │ │ └── state.ttl │ │ │ │ ├── time │ │ │ │ ├── manifest.ttl │ │ │ │ ├── time.h │ │ │ │ ├── time.meta.ttl │ │ │ │ └── time.ttl │ │ │ │ ├── ui │ │ │ │ ├── manifest.ttl │ │ │ │ ├── ui.h │ │ │ │ ├── ui.meta.ttl │ │ │ │ └── ui.ttl │ │ │ │ ├── units │ │ │ │ ├── manifest.ttl │ │ │ │ ├── units.h │ │ │ │ ├── units.meta.ttl │ │ │ │ └── units.ttl │ │ │ │ ├── uri-map │ │ │ │ ├── manifest.ttl │ │ │ │ ├── uri-map.h │ │ │ │ ├── uri-map.meta.ttl │ │ │ │ └── uri-map.ttl │ │ │ │ ├── urid │ │ │ │ ├── manifest.ttl │ │ │ │ ├── urid.h │ │ │ │ ├── urid.meta.ttl │ │ │ │ └── urid.ttl │ │ │ │ └── worker │ │ │ │ ├── manifest.ttl │ │ │ │ ├── worker.h │ │ │ │ ├── worker.meta.ttl │ │ │ │ └── worker.ttl │ │ ├── serd │ │ │ ├── COPYING │ │ │ ├── serd │ │ │ │ └── serd.h │ │ │ └── src │ │ │ │ ├── .clang-tidy │ │ │ │ ├── attributes.h │ │ │ │ ├── base64.c │ │ │ │ ├── base64.h │ │ │ │ ├── byte_sink.h │ │ │ │ ├── byte_source.c │ │ │ │ ├── byte_source.h │ │ │ │ ├── env.c │ │ │ │ ├── n3.c │ │ │ │ ├── node.c │ │ │ │ ├── node.h │ │ │ │ ├── reader.c │ │ │ │ ├── reader.h │ │ │ │ ├── serd_config.h │ │ │ │ ├── serd_internal.h │ │ │ │ ├── serdi.c │ │ │ │ ├── stack.h │ │ │ │ ├── string.c │ │ │ │ ├── string_utils.h │ │ │ │ ├── system.c │ │ │ │ ├── system.h │ │ │ │ ├── uri.c │ │ │ │ ├── uri_utils.h │ │ │ │ └── writer.c │ │ ├── serd_config.h │ │ ├── sord │ │ │ ├── COPYING │ │ │ ├── sord │ │ │ │ ├── sord.h │ │ │ │ └── sordmm.hpp │ │ │ └── src │ │ │ │ ├── sord.c │ │ │ │ ├── sord_config.h │ │ │ │ ├── sord_internal.h │ │ │ │ ├── sord_test.c │ │ │ │ ├── sord_validate.c │ │ │ │ ├── sordi.c │ │ │ │ ├── sordmm_test.cpp │ │ │ │ ├── syntax.c │ │ │ │ └── zix │ │ │ │ ├── btree.c │ │ │ │ ├── btree.h │ │ │ │ ├── common.h │ │ │ │ ├── digest.c │ │ │ │ ├── digest.h │ │ │ │ ├── hash.c │ │ │ │ └── hash.h │ │ ├── sord_config.h │ │ └── sratom │ │ │ ├── COPYING │ │ │ ├── sratom │ │ │ └── sratom.h │ │ │ └── src │ │ │ └── sratom.c │ ├── VST3_SDK │ │ ├── JUCE_README.md │ │ ├── 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 │ │ │ │ ├── fcommandline.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 │ │ ├── helper.manifest │ │ ├── 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 │ │ │ │ ├── iplugincompatibility.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 │ │ │ │ ├── ivstparameterfunctionname.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 │ │ │ ├── samples │ │ │ └── vst-utilities │ │ │ │ └── moduleinfotool │ │ │ │ └── source │ │ │ │ └── main.cpp │ │ │ └── source │ │ │ ├── common │ │ │ ├── memorystream.cpp │ │ │ ├── memorystream.h │ │ │ ├── pluginview.cpp │ │ │ ├── pluginview.h │ │ │ ├── readfile.cpp │ │ │ └── readfile.h │ │ │ └── vst │ │ │ ├── hosting │ │ │ ├── hostclasses.cpp │ │ │ ├── hostclasses.h │ │ │ ├── module.cpp │ │ │ ├── module.h │ │ │ ├── module_linux.cpp │ │ │ ├── module_mac.mm │ │ │ ├── module_win32.cpp │ │ │ ├── pluginterfacesupport.cpp │ │ │ └── pluginterfacesupport.h │ │ │ ├── moduleinfo │ │ │ ├── ReadMe.md │ │ │ ├── json.h │ │ │ ├── jsoncxx.h │ │ │ ├── moduleinfo.h │ │ │ ├── moduleinfocreator.cpp │ │ │ ├── moduleinfocreator.h │ │ │ ├── moduleinfoparser.cpp │ │ │ └── moduleinfoparser.h │ │ │ ├── utility │ │ │ ├── optional.h │ │ │ ├── stringconvert.cpp │ │ │ ├── stringconvert.h │ │ │ └── uid.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_ARACommon.cpp │ ├── juce_ARACommon.h │ ├── juce_ARAHosting.cpp │ ├── juce_ARAHosting.h │ ├── juce_AU_Shared.h │ ├── juce_AudioUnitPluginFormat.h │ ├── juce_AudioUnitPluginFormat.mm │ ├── juce_LADSPAPluginFormat.cpp │ ├── juce_LADSPAPluginFormat.h │ ├── juce_LV2Common.h │ ├── juce_LV2PluginFormat.cpp │ ├── juce_LV2PluginFormat.h │ ├── juce_LV2PluginFormat_test.cpp │ ├── juce_LV2Resources.h │ ├── juce_LV2SupportLibs.cpp │ ├── juce_LegacyAudioParameter.cpp │ ├── juce_VST3Common.h │ ├── juce_VST3Headers.h │ ├── juce_VST3PluginFormat.cpp │ ├── juce_VST3PluginFormat.h │ ├── juce_VST3PluginFormat_test.cpp │ ├── juce_VSTCommon.h │ ├── juce_VSTMidiEventList.h │ ├── juce_VSTPluginFormat.cpp │ ├── juce_VSTPluginFormat.h │ └── pslextensions │ │ ├── ipslcontextinfo.h │ │ ├── ipsleditcontroller.h │ │ ├── ipslgainreduction.h │ │ ├── ipslhostcommands.h │ │ ├── ipslviewembedding.h │ │ ├── ipslviewscaling.h │ │ ├── pslauextensions.h │ │ └── pslvst2extensions.h ├── juce_audio_processors.cpp ├── juce_audio_processors.h ├── juce_audio_processors.mm ├── juce_audio_processors_ara.cpp ├── juce_audio_processors_lv2_libs.cpp ├── processors │ ├── juce_AudioPluginInstance.cpp │ ├── juce_AudioPluginInstance.h │ ├── juce_AudioProcessor.cpp │ ├── juce_AudioProcessor.h │ ├── juce_AudioProcessorEditor.cpp │ ├── juce_AudioProcessorEditor.h │ ├── juce_AudioProcessorEditorHostContext.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_HostedAudioProcessorParameter.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 │ ├── ARA │ ├── juce_ARADebug.h │ ├── juce_ARADocumentController.cpp │ ├── juce_ARADocumentController.h │ ├── juce_ARADocumentControllerCommon.cpp │ ├── juce_ARAModelObjects.cpp │ ├── juce_ARAModelObjects.h │ ├── juce_ARAPlugInInstanceRoles.cpp │ ├── juce_ARAPlugInInstanceRoles.h │ ├── juce_ARA_utils.cpp │ ├── juce_ARA_utils.h │ ├── juce_AudioProcessor_ARAExtensions.cpp │ └── juce_AudioProcessor_ARAExtensions.h │ ├── juce_AAXClientExtensions.cpp │ ├── juce_AAXClientExtensions.h │ ├── 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_ExtensionsVisitor.h │ ├── juce_FlagCache.h │ ├── juce_ParameterAttachments.cpp │ ├── juce_ParameterAttachments.h │ ├── juce_PluginHostType.cpp │ ├── juce_PluginHostType.h │ ├── juce_RangedAudioParameter.cpp │ ├── juce_RangedAudioParameter.h │ ├── juce_VST2ClientExtensions.cpp │ ├── juce_VST2ClientExtensions.h │ └── juce_VST3ClientExtensions.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_KeyboardComponentBase.cpp │ ├── juce_KeyboardComponentBase.h │ ├── juce_MPEKeyboardComponent.cpp │ ├── juce_MPEKeyboardComponent.h │ ├── juce_MidiKeyboardComponent.cpp │ └── juce_MidiKeyboardComponent.h ├── juce_audio_utils.cpp ├── juce_audio_utils.h ├── juce_audio_utils.mm ├── native │ ├── juce_AudioCDBurner_mac.mm │ ├── juce_AudioCDBurner_windows.cpp │ ├── juce_AudioCDReader_linux.cpp │ ├── juce_AudioCDReader_mac.mm │ ├── juce_AudioCDReader_windows.cpp │ ├── juce_BluetoothMidiDevicePairingDialogue_android.cpp │ ├── juce_BluetoothMidiDevicePairingDialogue_ios.mm │ ├── juce_BluetoothMidiDevicePairingDialogue_linux.cpp │ ├── juce_BluetoothMidiDevicePairingDialogue_mac.mm │ └── juce_BluetoothMidiDevicePairingDialogue_windows.cpp └── players │ ├── juce_AudioProcessorPlayer.cpp │ ├── juce_AudioProcessorPlayer.h │ ├── juce_SoundPlayer.cpp │ └── juce_SoundPlayer.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_Enumerate.h │ ├── juce_Enumerate_test.cpp │ ├── juce_FixedSizeFunction.h │ ├── juce_FixedSizeFunction_test.cpp │ ├── juce_HashMap.h │ ├── juce_HashMap_test.cpp │ ├── juce_LinkedListPointer.h │ ├── juce_ListenerList.cpp │ ├── juce_ListenerList.h │ ├── juce_NamedValueSet.cpp │ ├── juce_NamedValueSet.h │ ├── juce_Optional.h │ ├── juce_Optional_test.cpp │ ├── juce_OwnedArray.cpp │ ├── juce_OwnedArray.h │ ├── juce_PropertySet.cpp │ ├── juce_PropertySet.h │ ├── juce_ReferenceCountedArray.cpp │ ├── juce_ReferenceCountedArray.h │ ├── juce_ScopedValueSetter.h │ ├── juce_SingleThreadedAbstractFifo.h │ ├── juce_SortedSet.h │ ├── juce_Span.h │ ├── juce_SparseSet.cpp │ ├── juce_SparseSet.h │ ├── juce_Variant.cpp │ └── juce_Variant.h ├── files │ ├── juce_AndroidDocument.h │ ├── 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 │ ├── juce_common_MimeTypes.cpp │ └── juce_common_MimeTypes.h ├── javascript │ ├── juce_JSON.cpp │ ├── juce_JSON.h │ ├── juce_JSONSerialisation.h │ ├── juce_JSONSerialisation_test.cpp │ ├── juce_JSONUtils.cpp │ ├── juce_JSONUtils.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_MathsFunctions_test.cpp │ ├── 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_Reservoir.h │ ├── juce_ScopedPointer.h │ ├── juce_SharedResourcePointer.h │ ├── juce_SharedResourcePointer_test.cpp │ ├── juce_Singleton.h │ └── juce_WeakReference.h ├── misc │ ├── juce_ConsoleApplication.cpp │ ├── juce_ConsoleApplication.h │ ├── juce_EnumHelpers.h │ ├── juce_EnumHelpers_test.cpp │ ├── juce_Functional.h │ ├── juce_Result.cpp │ ├── juce_Result.h │ ├── juce_RuntimePermissions.cpp │ ├── juce_RuntimePermissions.h │ ├── juce_ScopeGuard.cpp │ ├── juce_ScopeGuard.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_AndroidDocument_android.cpp │ ├── juce_BasicNativeHeaders.h │ ├── juce_CFHelpers_mac.h │ ├── juce_ComSmartPtr_windows.h │ ├── juce_CommonFile_linux.cpp │ ├── juce_Files_android.cpp │ ├── juce_Files_linux.cpp │ ├── juce_Files_mac.mm │ ├── juce_Files_windows.cpp │ ├── juce_IPAddress_posix.h │ ├── juce_JNIHelpers_android.cpp │ ├── juce_JNIHelpers_android.h │ ├── juce_Misc_android.cpp │ ├── juce_NamedPipe_posix.cpp │ ├── juce_Network_android.cpp │ ├── juce_Network_curl.cpp │ ├── juce_Network_linux.cpp │ ├── juce_Network_mac.mm │ ├── juce_Network_windows.cpp │ ├── juce_ObjCHelpers_mac.h │ ├── juce_ObjCHelpers_mac_test.mm │ ├── juce_PlatformTimerListener.h │ ├── juce_PlatformTimer_generic.cpp │ ├── juce_PlatformTimer_windows.cpp │ ├── juce_Process_mac.mm │ ├── juce_Registry_windows.cpp │ ├── juce_RuntimePermissions_android.cpp │ ├── juce_SharedCode_intel.h │ ├── juce_SharedCode_posix.h │ ├── juce_Strings_mac.mm │ ├── juce_SystemStats_android.cpp │ ├── juce_SystemStats_linux.cpp │ ├── juce_SystemStats_mac.mm │ ├── juce_SystemStats_wasm.cpp │ ├── juce_SystemStats_windows.cpp │ ├── juce_ThreadPriorities_native.h │ ├── juce_Threads_android.cpp │ ├── juce_Threads_linux.cpp │ ├── juce_Threads_mac.mm │ └── juce_Threads_windows.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 ├── serialisation │ └── juce_Serialisation.h ├── streams │ ├── juce_AndroidDocumentInputSource.h │ ├── 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.cpp │ └── juce_UndoableAction.h └── values │ ├── juce_CachedValue.cpp │ ├── juce_CachedValue.h │ ├── juce_Value.cpp │ ├── juce_Value.h │ ├── juce_ValueTree.cpp │ ├── juce_ValueTree.h │ ├── juce_ValueTreePropertyWithDefault.h │ ├── juce_ValueTreePropertyWithDefault_test.cpp │ ├── juce_ValueTreeSynchroniser.cpp │ └── juce_ValueTreeSynchroniser.h ├── juce_dsp ├── containers │ ├── juce_AudioBlock.h │ ├── juce_AudioBlock_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_SIMDNativeOps_avx.cpp │ ├── juce_SIMDNativeOps_avx.h │ ├── juce_SIMDNativeOps_fallback.h │ ├── juce_SIMDNativeOps_neon.cpp │ ├── juce_SIMDNativeOps_neon.h │ ├── juce_SIMDNativeOps_sse.cpp │ └── juce_SIMDNativeOps_sse.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 │ ├── juce_LockingAsyncUpdater.cpp │ └── juce_LockingAsyncUpdater.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_EventLoopInternal_linux.h │ ├── juce_EventLoop_linux.h │ ├── juce_HiddenMessageWindow_windows.h │ ├── juce_MessageManager_ios.mm │ ├── juce_MessageManager_mac.mm │ ├── juce_MessageQueue_mac.h │ ├── juce_Messaging_android.cpp │ ├── juce_Messaging_linux.cpp │ ├── juce_Messaging_windows.cpp │ ├── juce_RunningInUnity.h │ ├── juce_ScopedLowPowerModeDisabler.cpp │ ├── juce_ScopedLowPowerModeDisabler.h │ ├── juce_WinRTWrapper_windows.cpp │ └── juce_WinRTWrapper_windows.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 │ └── juce_Rectangle_test.cpp ├── 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_ScaledImage.h ├── juce_graphics.cpp ├── juce_graphics.h ├── juce_graphics.mm ├── native │ ├── juce_CoreGraphicsContext_mac.h │ ├── juce_CoreGraphicsContext_mac.mm │ ├── juce_CoreGraphicsHelpers_mac.h │ ├── juce_Direct2DGraphicsContext_windows.cpp │ ├── juce_Direct2DGraphicsContext_windows.h │ ├── juce_DirectWriteTypeLayout_windows.cpp │ ├── juce_DirectWriteTypeface_windows.cpp │ ├── juce_Fonts_android.cpp │ ├── juce_Fonts_freetype.cpp │ ├── juce_Fonts_linux.cpp │ ├── juce_Fonts_mac.mm │ ├── juce_Fonts_windows.cpp │ ├── juce_GraphicsContext_android.cpp │ ├── juce_IconHelpers_android.cpp │ ├── juce_IconHelpers_linux.cpp │ ├── juce_IconHelpers_mac.cpp │ ├── juce_IconHelpers_windows.cpp │ └── juce_RenderingHelpers.h └── placement │ ├── juce_Justification.h │ ├── juce_RectanglePlacement.cpp │ └── juce_RectanglePlacement.h ├── juce_gui_basics ├── accessibility │ ├── enums │ │ ├── juce_AccessibilityActions.h │ │ ├── juce_AccessibilityEvent.h │ │ └── juce_AccessibilityRole.h │ ├── interfaces │ │ ├── juce_AccessibilityCellInterface.h │ │ ├── juce_AccessibilityTableInterface.h │ │ ├── juce_AccessibilityTextInterface.h │ │ └── juce_AccessibilityValueInterface.h │ ├── juce_AccessibilityHandler.cpp │ ├── juce_AccessibilityHandler.h │ └── juce_AccessibilityState.h ├── 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_ComponentTraverser.h │ ├── juce_FocusTraverser.cpp │ ├── juce_FocusTraverser.h │ ├── juce_ModalComponentManager.cpp │ └── juce_ModalComponentManager.h ├── desktop │ ├── juce_Desktop.cpp │ ├── juce_Desktop.h │ ├── juce_Displays.cpp │ └── juce_Displays.h ├── detail │ ├── juce_AccessibilityHelpers.cpp │ ├── juce_AccessibilityHelpers.h │ ├── juce_AlertWindowHelpers.h │ ├── juce_ButtonAccessibilityHandler.h │ ├── juce_ComponentHelpers.h │ ├── juce_CustomMouseCursorInfo.h │ ├── juce_FocusHelpers.h │ ├── juce_FocusRestorer.h │ ├── juce_LookAndFeelHelpers.h │ ├── juce_MouseInputSourceImpl.h │ ├── juce_MouseInputSourceList.h │ ├── juce_PointerState.h │ ├── juce_ScalingHelpers.h │ ├── juce_ScopedContentSharerImpl.h │ ├── juce_ScopedContentSharerInterface.h │ ├── juce_ScopedMessageBoxImpl.h │ ├── juce_ScopedMessageBoxInterface.h │ ├── juce_ToolbarItemDragAndDropOverlayComponent.h │ ├── juce_TopLevelWindowManager.h │ ├── juce_ViewportHelpers.h │ └── juce_WindowingHelpers.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_BorderedComponentBoundsConstrainer.cpp │ ├── juce_BorderedComponentBoundsConstrainer.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_FocusOutline.cpp │ ├── juce_FocusOutline.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 │ ├── accessibility │ │ ├── juce_Accessibility.cpp │ │ ├── juce_AccessibilityElement_windows.cpp │ │ ├── juce_AccessibilityElement_windows.h │ │ ├── juce_AccessibilitySharedCode_mac.mm │ │ ├── juce_AccessibilityTextHelpers.h │ │ ├── juce_AccessibilityTextHelpers_test.cpp │ │ ├── juce_Accessibility_android.cpp │ │ ├── juce_Accessibility_ios.mm │ │ ├── juce_Accessibility_mac.mm │ │ ├── juce_Accessibility_windows.cpp │ │ ├── juce_ComInterfaces_windows.h │ │ ├── juce_UIAExpandCollapseProvider_windows.h │ │ ├── juce_UIAGridItemProvider_windows.h │ │ ├── juce_UIAGridProvider_windows.h │ │ ├── juce_UIAHelpers_windows.h │ │ ├── juce_UIAInvokeProvider_windows.h │ │ ├── juce_UIAProviderBase_windows.h │ │ ├── juce_UIAProviders_windows.h │ │ ├── juce_UIARangeValueProvider_windows.h │ │ ├── juce_UIASelectionProvider_windows.h │ │ ├── juce_UIATextProvider_windows.h │ │ ├── juce_UIAToggleProvider_windows.h │ │ ├── juce_UIATransformProvider_windows.h │ │ ├── juce_UIAValueProvider_windows.h │ │ ├── juce_UIAWindowProvider_windows.h │ │ └── juce_WindowsUIAWrapper_windows.h │ ├── java │ │ └── app │ │ │ └── com │ │ │ └── rmsl │ │ │ └── juce │ │ │ ├── ComponentPeerView.java │ │ │ ├── JuceContentProviderCursor.java │ │ │ └── JuceContentProviderFileObserver.java │ ├── javaopt │ │ └── app │ │ │ └── com │ │ │ └── rmsl │ │ │ └── juce │ │ │ ├── JuceActivity.java │ │ │ ├── JuceSharingContentProvider.java │ │ │ └── Receiver.java │ ├── juce_CGMetalLayerRenderer_mac.h │ ├── juce_ContentSharer_android.cpp │ ├── juce_ContentSharer_ios.cpp │ ├── juce_DragAndDrop_linux.cpp │ ├── juce_DragAndDrop_windows.cpp │ ├── juce_FileChooser_android.cpp │ ├── juce_FileChooser_ios.mm │ ├── juce_FileChooser_linux.cpp │ ├── juce_FileChooser_mac.mm │ ├── juce_FileChooser_windows.cpp │ ├── juce_MainMenu_mac.mm │ ├── juce_MouseCursor_mac.mm │ ├── juce_MultiTouchMapper.h │ ├── juce_NSViewComponentPeer_mac.mm │ ├── juce_NativeMessageBox_android.cpp │ ├── juce_NativeMessageBox_ios.mm │ ├── juce_NativeMessageBox_linux.cpp │ ├── juce_NativeMessageBox_mac.mm │ ├── juce_NativeMessageBox_windows.cpp │ ├── juce_NativeModalWrapperComponent_ios.h │ ├── juce_PerScreenDisplayLinks_mac.h │ ├── juce_ScopedDPIAwarenessDisabler.cpp │ ├── juce_ScopedDPIAwarenessDisabler.h │ ├── juce_ScopedThreadDPIAwarenessSetter_windows.h │ ├── juce_ScopedWindowAssociation_linux.h │ ├── juce_UIViewComponentPeer_ios.mm │ ├── juce_WindowUtils_android.cpp │ ├── juce_WindowUtils_ios.mm │ ├── juce_WindowUtils_linux.cpp │ ├── juce_WindowUtils_mac.mm │ ├── juce_WindowUtils_windows.cpp │ ├── juce_Windowing_android.cpp │ ├── juce_Windowing_ios.mm │ ├── juce_Windowing_linux.cpp │ ├── juce_Windowing_mac.mm │ ├── juce_Windowing_windows.cpp │ ├── juce_WindowsHooks_windows.cpp │ ├── juce_WindowsHooks_windows.h │ ├── juce_XSymbols_linux.cpp │ ├── juce_XSymbols_linux.h │ ├── juce_XWindowSystem_linux.cpp │ └── juce_XWindowSystem_linux.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_MessageBoxOptions.cpp │ ├── juce_MessageBoxOptions.h │ ├── juce_NativeMessageBox.cpp │ ├── juce_NativeMessageBox.h │ ├── juce_NativeScaleFactorNotifier.cpp │ ├── juce_NativeScaleFactorNotifier.h │ ├── juce_ResizableWindow.cpp │ ├── juce_ResizableWindow.h │ ├── juce_ScopedMessageBox.cpp │ ├── juce_ScopedMessageBox.h │ ├── juce_ThreadWithProgressWindow.cpp │ ├── juce_ThreadWithProgressWindow.h │ ├── juce_TooltipWindow.cpp │ ├── juce_TooltipWindow.h │ ├── juce_TopLevelWindow.cpp │ ├── juce_TopLevelWindow.h │ ├── juce_VBlankAttachment.cpp │ ├── juce_VBlankAttachment.h │ └── juce_WindowUtils.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_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.cpp │ └── juce_WebBrowserComponent.h └── native │ ├── java │ └── app │ │ └── com │ │ └── rmsl │ │ └── juce │ │ ├── JuceWebView.java │ │ └── JuceWebView21.java │ ├── javaopt │ └── app │ │ └── com │ │ └── rmsl │ │ └── juce │ │ ├── JuceFirebaseInstanceIdService.java │ │ └── JuceFirebaseMessagingService.java │ ├── juce_ActiveXComponent_windows.cpp │ ├── juce_AndroidViewComponent.cpp │ ├── juce_AppleRemote_mac.mm │ ├── juce_HWNDComponent_windows.cpp │ ├── juce_NSViewComponent_mac.mm │ ├── juce_NSViewFrameWatcher_mac.h │ ├── juce_PushNotifications_android.cpp │ ├── juce_PushNotifications_ios.cpp │ ├── juce_PushNotifications_mac.cpp │ ├── juce_SystemTrayIcon_linux.cpp │ ├── juce_SystemTrayIcon_mac.cpp │ ├── juce_SystemTrayIcon_windows.cpp │ ├── juce_UIViewComponent_ios.mm │ ├── juce_WebBrowserComponent_android.cpp │ ├── juce_WebBrowserComponent_linux.cpp │ ├── juce_WebBrowserComponent_mac.mm │ ├── juce_WebBrowserComponent_windows.cpp │ └── juce_XEmbedComponent_linux.cpp ├── juce_midi_ci ├── ci │ ├── juce_CIChannelAddress.h │ ├── juce_CIDevice.cpp │ ├── juce_CIDevice.h │ ├── juce_CIDeviceFeatures.h │ ├── juce_CIDeviceListener.h │ ├── juce_CIDeviceMessageHandler.h │ ├── juce_CIDeviceOptions.h │ ├── juce_CIEncoding.h │ ├── juce_CIEncodings.cpp │ ├── juce_CIEncodings.h │ ├── juce_CIFunctionBlock.h │ ├── juce_CIMessages.h │ ├── juce_CIMuid.h │ ├── juce_CIParser.cpp │ ├── juce_CIParser.h │ ├── juce_CIProfileAtAddress.h │ ├── juce_CIProfileDelegate.h │ ├── juce_CIProfileHost.cpp │ ├── juce_CIProfileHost.h │ ├── juce_CIProfileStates.cpp │ ├── juce_CIProfileStates.h │ ├── juce_CIPropertyDelegate.cpp │ ├── juce_CIPropertyDelegate.h │ ├── juce_CIPropertyExchangeCache.cpp │ ├── juce_CIPropertyExchangeCache.h │ ├── juce_CIPropertyExchangeResult.h │ ├── juce_CIPropertyHost.cpp │ ├── juce_CIPropertyHost.h │ ├── juce_CIResponderDelegate.h │ ├── juce_CIResponderOutput.cpp │ ├── juce_CIResponderOutput.h │ ├── juce_CISubscription.h │ └── juce_CISupportedAndActive.h ├── detail │ ├── juce_CIMarshalling.h │ ├── juce_CIMessageMeta.h │ ├── juce_CIMessageTypeUtils.h │ ├── juce_CIPropertyDataMessageChunker.cpp │ ├── juce_CIPropertyDataMessageChunker.h │ ├── juce_CIPropertyHostUtils.h │ ├── juce_CIResponder.cpp │ └── juce_CIResponder.h ├── juce_midi_ci.cpp └── juce_midi_ci.h ├── 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_OpenGLExtensions.h │ ├── juce_OpenGL_android.h │ ├── juce_OpenGL_ios.h │ ├── juce_OpenGL_linux.h │ ├── juce_OpenGL_mac.h │ └── juce_OpenGL_windows.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 │ ├── juce_gl.cpp │ ├── juce_gl.h │ ├── juce_gles2.cpp │ ├── juce_gles2.h │ ├── juce_khrplatform.h │ └── juce_wgl.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 │ ├── java │ └── app │ │ └── com │ │ └── rmsl │ │ └── juce │ │ └── JuceBillingClient.java │ ├── juce_InAppPurchases_android.cpp │ └── juce_InAppPurchases_ios.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_CameraDevice_android.h ├── juce_CameraDevice_ios.h ├── juce_CameraDevice_mac.h ├── juce_CameraDevice_windows.h ├── juce_ComTypes_windows.h ├── juce_Video_android.h ├── juce_Video_mac.h └── juce_Video_windows.h └── playback ├── juce_VideoComponent.cpp └── juce_VideoComponent.h /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/check-cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/.github/workflows/check-cla.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | include: 2 | - project: 'juce-repos/JUCE-utils' 3 | file: '/CI/gitlab-ci.yml' 4 | 5 | -------------------------------------------------------------------------------- /BREAKING_CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/BREAKING_CHANGES.md -------------------------------------------------------------------------------- /CHANGE_LIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/CHANGE_LIST.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/README.md -------------------------------------------------------------------------------- /docs/ARA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/docs/ARA.md -------------------------------------------------------------------------------- /docs/Accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/docs/Accessibility.md -------------------------------------------------------------------------------- /docs/CMake API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/docs/CMake API.md -------------------------------------------------------------------------------- /docs/JUCE Module Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/docs/JUCE Module Format.md -------------------------------------------------------------------------------- /docs/Linux Dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/docs/Linux Dependencies.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/docs/doxygen/Doxyfile -------------------------------------------------------------------------------- /docs/doxygen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/docs/doxygen/Makefile -------------------------------------------------------------------------------- /docs/doxygen/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/docs/doxygen/make.bat -------------------------------------------------------------------------------- /docs/doxygen/process_source_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/docs/doxygen/process_source_files.py -------------------------------------------------------------------------------- /examples/Assets/ADSRComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/ADSRComponent.h -------------------------------------------------------------------------------- /examples/Assets/AudioLiveScrollingDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/AudioLiveScrollingDisplay.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/AddPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/AddPair.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/ApplyForce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/ApplyForce.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/BodyTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/BodyTypes.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/Breakable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/Breakable.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/Bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/Bridge.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/BulletTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/BulletTest.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/Cantilever.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/Cantilever.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/Car.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/Car.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/Chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/Chain.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/CharacterCollision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/CharacterCollision.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/CollisionFiltering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/CollisionFiltering.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/CollisionProcessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/CollisionProcessing.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/CompoundShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/CompoundShapes.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/Confined.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/Confined.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/ContinuousTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/ContinuousTest.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/DistanceTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/DistanceTest.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/Dominos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/Dominos.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/DumpShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/DumpShell.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/DynamicTreeTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/DynamicTreeTest.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/EdgeShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/EdgeShapes.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/EdgeTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/EdgeTest.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/Gears.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/Gears.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/OneSidedPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/OneSidedPlatform.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/Pinball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/Pinball.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/PolyCollision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/PolyCollision.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/PolyShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/PolyShapes.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/Prismatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/Prismatic.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/Pulleys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/Pulleys.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/Pyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/Pyramid.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/RayCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/RayCast.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/Revolute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/Revolute.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/Rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/Rope.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/RopeJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/RopeJoint.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/SensorTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/SensorTest.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/ShapeEditing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/ShapeEditing.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/SliderCrank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/SliderCrank.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/SphereStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/SphereStack.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/TestEntries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/TestEntries.cpp -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/TheoJansen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/TheoJansen.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/Tiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/Tiles.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/TimeOfImpact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/TimeOfImpact.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/Tumbler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/Tumbler.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/VaryingFriction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/VaryingFriction.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/VaryingRestitution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/VaryingRestitution.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/VerticalStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/VerticalStack.h -------------------------------------------------------------------------------- /examples/Assets/Box2DTests/Web.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Box2DTests/Web.h -------------------------------------------------------------------------------- /examples/Assets/DSPDemos_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/DSPDemos_Common.h -------------------------------------------------------------------------------- /examples/Assets/DemoUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/DemoUtilities.h -------------------------------------------------------------------------------- /examples/Assets/Notifications/sounds/isntit.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Notifications/sounds/isntit.caf -------------------------------------------------------------------------------- /examples/Assets/Notifications/sounds/isntit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Notifications/sounds/isntit.mp3 -------------------------------------------------------------------------------- /examples/Assets/Notifications/sounds/served.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Notifications/sounds/served.caf -------------------------------------------------------------------------------- /examples/Assets/Notifications/sounds/served.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Notifications/sounds/served.mp3 -------------------------------------------------------------------------------- /examples/Assets/Notifications/sounds/solemn.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Notifications/sounds/solemn.caf -------------------------------------------------------------------------------- /examples/Assets/Notifications/sounds/solemn.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Notifications/sounds/solemn.mp3 -------------------------------------------------------------------------------- /examples/Assets/Purchases/Ed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Ed.png -------------------------------------------------------------------------------- /examples/Assets/Purchases/Ed0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Ed0.ogg -------------------------------------------------------------------------------- /examples/Assets/Purchases/Ed1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Ed1.ogg -------------------------------------------------------------------------------- /examples/Assets/Purchases/Ed2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Ed2.ogg -------------------------------------------------------------------------------- /examples/Assets/Purchases/Fabian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Fabian.png -------------------------------------------------------------------------------- /examples/Assets/Purchases/Fabian0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Fabian0.ogg -------------------------------------------------------------------------------- /examples/Assets/Purchases/Fabian1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Fabian1.ogg -------------------------------------------------------------------------------- /examples/Assets/Purchases/Fabian2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Fabian2.ogg -------------------------------------------------------------------------------- /examples/Assets/Purchases/JB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/JB.png -------------------------------------------------------------------------------- /examples/Assets/Purchases/JB0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/JB0.ogg -------------------------------------------------------------------------------- /examples/Assets/Purchases/JB1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/JB1.ogg -------------------------------------------------------------------------------- /examples/Assets/Purchases/JB2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/JB2.ogg -------------------------------------------------------------------------------- /examples/Assets/Purchases/Jules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Jules.png -------------------------------------------------------------------------------- /examples/Assets/Purchases/Jules0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Jules0.ogg -------------------------------------------------------------------------------- /examples/Assets/Purchases/Jules1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Jules1.ogg -------------------------------------------------------------------------------- /examples/Assets/Purchases/Jules2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Jules2.ogg -------------------------------------------------------------------------------- /examples/Assets/Purchases/Lukasz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Lukasz.png -------------------------------------------------------------------------------- /examples/Assets/Purchases/Lukasz0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Lukasz0.ogg -------------------------------------------------------------------------------- /examples/Assets/Purchases/Lukasz1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Lukasz1.ogg -------------------------------------------------------------------------------- /examples/Assets/Purchases/Lukasz2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Lukasz2.ogg -------------------------------------------------------------------------------- /examples/Assets/Purchases/Robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Robot.png -------------------------------------------------------------------------------- /examples/Assets/Purchases/Robot0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Robot0.ogg -------------------------------------------------------------------------------- /examples/Assets/Purchases/Robot1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Robot1.ogg -------------------------------------------------------------------------------- /examples/Assets/Purchases/Robot2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/Robot2.ogg -------------------------------------------------------------------------------- /examples/Assets/Purchases/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Purchases/icon.png -------------------------------------------------------------------------------- /examples/Assets/Signing/InAppPurchase.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Signing/InAppPurchase.keystore -------------------------------------------------------------------------------- /examples/Assets/Signing/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/Signing/README.txt -------------------------------------------------------------------------------- /examples/Assets/WavefrontObjParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/WavefrontObjParser.h -------------------------------------------------------------------------------- /examples/Assets/cassette_recorder.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/cassette_recorder.wav -------------------------------------------------------------------------------- /examples/Assets/cello.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/cello.wav -------------------------------------------------------------------------------- /examples/Assets/demo table data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/demo table data.xml -------------------------------------------------------------------------------- /examples/Assets/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/google-services.json -------------------------------------------------------------------------------- /examples/Assets/guitar_amp.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/guitar_amp.wav -------------------------------------------------------------------------------- /examples/Assets/icons.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/icons.zip -------------------------------------------------------------------------------- /examples/Assets/juce_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/juce_icon.png -------------------------------------------------------------------------------- /examples/Assets/juce_icon_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/juce_icon_template.png -------------------------------------------------------------------------------- /examples/Assets/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/juce_module_info -------------------------------------------------------------------------------- /examples/Assets/portmeirion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/portmeirion.jpg -------------------------------------------------------------------------------- /examples/Assets/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/power.png -------------------------------------------------------------------------------- /examples/Assets/proaudio.path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/proaudio.path -------------------------------------------------------------------------------- /examples/Assets/reverb_ir.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/reverb_ir.wav -------------------------------------------------------------------------------- /examples/Assets/singing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/singing.ogg -------------------------------------------------------------------------------- /examples/Assets/teapot.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/teapot.obj -------------------------------------------------------------------------------- /examples/Assets/tile_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/tile_background.png -------------------------------------------------------------------------------- /examples/Assets/treedemo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Assets/treedemo.xml -------------------------------------------------------------------------------- /examples/Audio/AudioAppDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Audio/AudioAppDemo.h -------------------------------------------------------------------------------- /examples/Audio/AudioLatencyDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Audio/AudioLatencyDemo.h -------------------------------------------------------------------------------- /examples/Audio/AudioPlaybackDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Audio/AudioPlaybackDemo.h -------------------------------------------------------------------------------- /examples/Audio/AudioRecordingDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Audio/AudioRecordingDemo.h -------------------------------------------------------------------------------- /examples/Audio/AudioSettingsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Audio/AudioSettingsDemo.h -------------------------------------------------------------------------------- /examples/Audio/AudioSynthesiserDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Audio/AudioSynthesiserDemo.h -------------------------------------------------------------------------------- /examples/Audio/AudioWorkgroupDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Audio/AudioWorkgroupDemo.h -------------------------------------------------------------------------------- /examples/Audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Audio/CMakeLists.txt -------------------------------------------------------------------------------- /examples/Audio/CapabilityInquiryDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Audio/CapabilityInquiryDemo.h -------------------------------------------------------------------------------- /examples/Audio/MPEDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Audio/MPEDemo.h -------------------------------------------------------------------------------- /examples/Audio/MidiDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Audio/MidiDemo.h -------------------------------------------------------------------------------- /examples/Audio/PluckedStringsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Audio/PluckedStringsDemo.h -------------------------------------------------------------------------------- /examples/Audio/SimpleFFTDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Audio/SimpleFFTDemo.h -------------------------------------------------------------------------------- /examples/CMake/AudioPlugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/CMake/AudioPlugin/CMakeLists.txt -------------------------------------------------------------------------------- /examples/CMake/AudioPlugin/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/CMake/AudioPlugin/PluginEditor.cpp -------------------------------------------------------------------------------- /examples/CMake/AudioPlugin/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/CMake/AudioPlugin/PluginEditor.h -------------------------------------------------------------------------------- /examples/CMake/AudioPlugin/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/CMake/AudioPlugin/PluginProcessor.cpp -------------------------------------------------------------------------------- /examples/CMake/AudioPlugin/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/CMake/AudioPlugin/PluginProcessor.h -------------------------------------------------------------------------------- /examples/CMake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/CMake/CMakeLists.txt -------------------------------------------------------------------------------- /examples/CMake/ConsoleApp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/CMake/ConsoleApp/CMakeLists.txt -------------------------------------------------------------------------------- /examples/CMake/ConsoleApp/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/CMake/ConsoleApp/Main.cpp -------------------------------------------------------------------------------- /examples/CMake/GuiApp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/CMake/GuiApp/CMakeLists.txt -------------------------------------------------------------------------------- /examples/CMake/GuiApp/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/CMake/GuiApp/Main.cpp -------------------------------------------------------------------------------- /examples/CMake/GuiApp/MainComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/CMake/GuiApp/MainComponent.cpp -------------------------------------------------------------------------------- /examples/CMake/GuiApp/MainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/CMake/GuiApp/MainComponent.h -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/DSP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DSP/CMakeLists.txt -------------------------------------------------------------------------------- /examples/DSP/ConvolutionDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DSP/ConvolutionDemo.h -------------------------------------------------------------------------------- /examples/DSP/FIRFilterDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DSP/FIRFilterDemo.h -------------------------------------------------------------------------------- /examples/DSP/GainDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DSP/GainDemo.h -------------------------------------------------------------------------------- /examples/DSP/IIRFilterDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DSP/IIRFilterDemo.h -------------------------------------------------------------------------------- /examples/DSP/OscillatorDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DSP/OscillatorDemo.h -------------------------------------------------------------------------------- /examples/DSP/OverdriveDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DSP/OverdriveDemo.h -------------------------------------------------------------------------------- /examples/DSP/SIMDRegisterDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DSP/SIMDRegisterDemo.h -------------------------------------------------------------------------------- /examples/DSP/StateVariableFilterDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DSP/StateVariableFilterDemo.h -------------------------------------------------------------------------------- /examples/DSP/WaveShaperTanhDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DSP/WaveShaperTanhDemo.h -------------------------------------------------------------------------------- /examples/DemoRunner/Builds/Android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/Builds/Android/build.gradle -------------------------------------------------------------------------------- /examples/DemoRunner/Builds/Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/Builds/Android/gradlew -------------------------------------------------------------------------------- /examples/DemoRunner/Builds/Android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/Builds/Android/gradlew.bat -------------------------------------------------------------------------------- /examples/DemoRunner/Builds/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'DemoRunner' 2 | include ':app' -------------------------------------------------------------------------------- /examples/DemoRunner/Builds/LinuxMakefile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/Builds/LinuxMakefile/Makefile -------------------------------------------------------------------------------- /examples/DemoRunner/Builds/MacOSX/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/Builds/MacOSX/Icon.icns -------------------------------------------------------------------------------- /examples/DemoRunner/Builds/MacOSX/Info-App.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/Builds/MacOSX/Info-App.plist -------------------------------------------------------------------------------- /examples/DemoRunner/Builds/iOS/App.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/Builds/iOS/App.entitlements -------------------------------------------------------------------------------- /examples/DemoRunner/Builds/iOS/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/Builds/iOS/Icon.icns -------------------------------------------------------------------------------- /examples/DemoRunner/Builds/iOS/Info-App.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/Builds/iOS/Info-App.plist -------------------------------------------------------------------------------- /examples/DemoRunner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/CMakeLists.txt -------------------------------------------------------------------------------- /examples/DemoRunner/DemoRunner.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/DemoRunner.jucer -------------------------------------------------------------------------------- /examples/DemoRunner/JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /examples/DemoRunner/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /examples/DemoRunner/Source/Demos/DemoPIPs1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/Source/Demos/DemoPIPs1.cpp -------------------------------------------------------------------------------- /examples/DemoRunner/Source/Demos/DemoPIPs2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/Source/Demos/DemoPIPs2.cpp -------------------------------------------------------------------------------- /examples/DemoRunner/Source/Demos/IntroScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/Source/Demos/IntroScreen.h -------------------------------------------------------------------------------- /examples/DemoRunner/Source/Demos/JUCEDemos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/Source/Demos/JUCEDemos.cpp -------------------------------------------------------------------------------- /examples/DemoRunner/Source/Demos/JUCEDemos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/Source/Demos/JUCEDemos.h -------------------------------------------------------------------------------- /examples/DemoRunner/Source/JUCEAppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/Source/JUCEAppIcon.png -------------------------------------------------------------------------------- /examples/DemoRunner/Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/Source/Main.cpp -------------------------------------------------------------------------------- /examples/DemoRunner/Source/UI/MainComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/Source/UI/MainComponent.cpp -------------------------------------------------------------------------------- /examples/DemoRunner/Source/UI/MainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/Source/UI/MainComponent.h -------------------------------------------------------------------------------- /examples/DemoRunner/Source/UI/SettingsContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/DemoRunner/Source/UI/SettingsContent.h -------------------------------------------------------------------------------- /examples/GUI/AccessibilityDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/AccessibilityDemo.h -------------------------------------------------------------------------------- /examples/GUI/AnimationAppDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/AnimationAppDemo.h -------------------------------------------------------------------------------- /examples/GUI/AnimationDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/AnimationDemo.h -------------------------------------------------------------------------------- /examples/GUI/BouncingBallWavetableDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/BouncingBallWavetableDemo.h -------------------------------------------------------------------------------- /examples/GUI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/CMakeLists.txt -------------------------------------------------------------------------------- /examples/GUI/CameraDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/CameraDemo.h -------------------------------------------------------------------------------- /examples/GUI/CodeEditorDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/CodeEditorDemo.h -------------------------------------------------------------------------------- /examples/GUI/ComponentDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/ComponentDemo.h -------------------------------------------------------------------------------- /examples/GUI/ComponentTransformsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/ComponentTransformsDemo.h -------------------------------------------------------------------------------- /examples/GUI/DialogsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/DialogsDemo.h -------------------------------------------------------------------------------- /examples/GUI/FlexBoxDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/FlexBoxDemo.h -------------------------------------------------------------------------------- /examples/GUI/FontsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/FontsDemo.h -------------------------------------------------------------------------------- /examples/GUI/GraphicsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/GraphicsDemo.h -------------------------------------------------------------------------------- /examples/GUI/GridDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/GridDemo.h -------------------------------------------------------------------------------- /examples/GUI/HelloWorldDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/HelloWorldDemo.h -------------------------------------------------------------------------------- /examples/GUI/ImagesDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/ImagesDemo.h -------------------------------------------------------------------------------- /examples/GUI/KeyMappingsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/KeyMappingsDemo.h -------------------------------------------------------------------------------- /examples/GUI/LookAndFeelDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/LookAndFeelDemo.h -------------------------------------------------------------------------------- /examples/GUI/MDIDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/MDIDemo.h -------------------------------------------------------------------------------- /examples/GUI/MenusDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/MenusDemo.h -------------------------------------------------------------------------------- /examples/GUI/MultiTouchDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/MultiTouchDemo.h -------------------------------------------------------------------------------- /examples/GUI/OpenGLAppDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/OpenGLAppDemo.h -------------------------------------------------------------------------------- /examples/GUI/OpenGLDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/OpenGLDemo.h -------------------------------------------------------------------------------- /examples/GUI/OpenGLDemo2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/OpenGLDemo2D.h -------------------------------------------------------------------------------- /examples/GUI/PropertiesDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/PropertiesDemo.h -------------------------------------------------------------------------------- /examples/GUI/VideoDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/VideoDemo.h -------------------------------------------------------------------------------- /examples/GUI/WebBrowserDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/WebBrowserDemo.h -------------------------------------------------------------------------------- /examples/GUI/WidgetsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/WidgetsDemo.h -------------------------------------------------------------------------------- /examples/GUI/WindowsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/GUI/WindowsDemo.h -------------------------------------------------------------------------------- /examples/Plugins/ARAPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Plugins/ARAPluginDemo.h -------------------------------------------------------------------------------- /examples/Plugins/AUv3SynthPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Plugins/AUv3SynthPluginDemo.h -------------------------------------------------------------------------------- /examples/Plugins/ArpeggiatorPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Plugins/ArpeggiatorPluginDemo.h -------------------------------------------------------------------------------- /examples/Plugins/AudioPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Plugins/AudioPluginDemo.h -------------------------------------------------------------------------------- /examples/Plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Plugins/CMakeLists.txt -------------------------------------------------------------------------------- /examples/Plugins/DSPModulePluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Plugins/DSPModulePluginDemo.h -------------------------------------------------------------------------------- /examples/Plugins/GainPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Plugins/GainPluginDemo.h -------------------------------------------------------------------------------- /examples/Plugins/HostPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Plugins/HostPluginDemo.h -------------------------------------------------------------------------------- /examples/Plugins/MidiLoggerPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Plugins/MidiLoggerPluginDemo.h -------------------------------------------------------------------------------- /examples/Plugins/MultiOutSynthPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Plugins/MultiOutSynthPluginDemo.h -------------------------------------------------------------------------------- /examples/Plugins/NoiseGatePluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Plugins/NoiseGatePluginDemo.h -------------------------------------------------------------------------------- /examples/Plugins/ReaperEmbeddedViewPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Plugins/ReaperEmbeddedViewPluginDemo.h -------------------------------------------------------------------------------- /examples/Plugins/SamplerPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Plugins/SamplerPluginDemo.h -------------------------------------------------------------------------------- /examples/Plugins/SurroundPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Plugins/SurroundPluginDemo.h -------------------------------------------------------------------------------- /examples/Plugins/extern/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Plugins/extern/LICENSE.md -------------------------------------------------------------------------------- /examples/Plugins/extern/reaper_plugin_fx_embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Plugins/extern/reaper_plugin_fx_embed.h -------------------------------------------------------------------------------- /examples/Plugins/extern/reaper_vst3_interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Plugins/extern/reaper_vst3_interfaces.h -------------------------------------------------------------------------------- /examples/Utilities/AnalyticsCollectionDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Utilities/AnalyticsCollectionDemo.h -------------------------------------------------------------------------------- /examples/Utilities/Box2DDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Utilities/Box2DDemo.h -------------------------------------------------------------------------------- /examples/Utilities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Utilities/CMakeLists.txt -------------------------------------------------------------------------------- /examples/Utilities/ChildProcessDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Utilities/ChildProcessDemo.h -------------------------------------------------------------------------------- /examples/Utilities/CryptographyDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Utilities/CryptographyDemo.h -------------------------------------------------------------------------------- /examples/Utilities/InAppPurchasesDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Utilities/InAppPurchasesDemo.h -------------------------------------------------------------------------------- /examples/Utilities/JavaScriptDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Utilities/JavaScriptDemo.h -------------------------------------------------------------------------------- /examples/Utilities/LiveConstantDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Utilities/LiveConstantDemo.h -------------------------------------------------------------------------------- /examples/Utilities/MultithreadingDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Utilities/MultithreadingDemo.h -------------------------------------------------------------------------------- /examples/Utilities/NetworkingDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Utilities/NetworkingDemo.h -------------------------------------------------------------------------------- /examples/Utilities/OSCDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Utilities/OSCDemo.h -------------------------------------------------------------------------------- /examples/Utilities/PushNotificationsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Utilities/PushNotificationsDemo.h -------------------------------------------------------------------------------- /examples/Utilities/SystemInfoDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Utilities/SystemInfoDemo.h -------------------------------------------------------------------------------- /examples/Utilities/TimersAndEventsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Utilities/TimersAndEventsDemo.h -------------------------------------------------------------------------------- /examples/Utilities/UnitTestsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Utilities/UnitTestsDemo.h -------------------------------------------------------------------------------- /examples/Utilities/ValueTreesDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Utilities/ValueTreesDemo.h -------------------------------------------------------------------------------- /examples/Utilities/XMLandJSONDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/examples/Utilities/XMLandJSONDemo.h -------------------------------------------------------------------------------- /extras/AudioPerformanceTest/Builds/Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/AudioPerformanceTest/Builds/Android/gradlew -------------------------------------------------------------------------------- /extras/AudioPerformanceTest/Builds/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'AudioPerformanceTest' 2 | include ':app' -------------------------------------------------------------------------------- /extras/AudioPerformanceTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/AudioPerformanceTest/CMakeLists.txt -------------------------------------------------------------------------------- /extras/AudioPerformanceTest/Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/AudioPerformanceTest/Source/Main.cpp -------------------------------------------------------------------------------- /extras/AudioPerformanceTest/Source/MainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/AudioPerformanceTest/Source/MainComponent.h -------------------------------------------------------------------------------- /extras/AudioPluginHost/AudioPluginHost.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/AudioPluginHost/AudioPluginHost.jucer -------------------------------------------------------------------------------- /extras/AudioPluginHost/Builds/Android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/AudioPluginHost/Builds/Android/build.gradle -------------------------------------------------------------------------------- /extras/AudioPluginHost/Builds/Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/AudioPluginHost/Builds/Android/gradlew -------------------------------------------------------------------------------- /extras/AudioPluginHost/Builds/Android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/AudioPluginHost/Builds/Android/gradlew.bat -------------------------------------------------------------------------------- /extras/AudioPluginHost/Builds/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'AudioPluginHost' 2 | include ':app' -------------------------------------------------------------------------------- /extras/AudioPluginHost/Builds/MacOSX/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/AudioPluginHost/Builds/MacOSX/Icon.icns -------------------------------------------------------------------------------- /extras/AudioPluginHost/Builds/iOS/App.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/AudioPluginHost/Builds/iOS/App.entitlements -------------------------------------------------------------------------------- /extras/AudioPluginHost/Builds/iOS/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/AudioPluginHost/Builds/iOS/Icon.icns -------------------------------------------------------------------------------- /extras/AudioPluginHost/Builds/iOS/Info-App.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/AudioPluginHost/Builds/iOS/Info-App.plist -------------------------------------------------------------------------------- /extras/AudioPluginHost/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/AudioPluginHost/CMakeLists.txt -------------------------------------------------------------------------------- /extras/AudioPluginHost/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/AudioPluginHost/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /extras/AudioPluginHost/Source/HostStartup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/AudioPluginHost/Source/HostStartup.cpp -------------------------------------------------------------------------------- /extras/AudioPluginHost/Source/JUCEAppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/AudioPluginHost/Source/JUCEAppIcon.png -------------------------------------------------------------------------------- /extras/AudioPluginHost/Source/Plugins/ARAPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/AudioPluginHost/Source/Plugins/ARAPlugin.h -------------------------------------------------------------------------------- /extras/AudioPluginHost/Source/UI/MainHostWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/AudioPluginHost/Source/UI/MainHostWindow.h -------------------------------------------------------------------------------- /extras/AudioPluginHost/Source/UI/PluginWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/AudioPluginHost/Source/UI/PluginWindow.h -------------------------------------------------------------------------------- /extras/BinaryBuilder/BinaryBuilder.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/BinaryBuilder/BinaryBuilder.jucer -------------------------------------------------------------------------------- /extras/BinaryBuilder/Builds/LinuxMakefile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/BinaryBuilder/Builds/LinuxMakefile/Makefile -------------------------------------------------------------------------------- /extras/BinaryBuilder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/BinaryBuilder/CMakeLists.txt -------------------------------------------------------------------------------- /extras/BinaryBuilder/JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/BinaryBuilder/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /extras/BinaryBuilder/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/BinaryBuilder/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /extras/BinaryBuilder/Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/BinaryBuilder/Source/Main.cpp -------------------------------------------------------------------------------- /extras/Build/CMake/JUCECheckAtomic.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/CMake/JUCECheckAtomic.cmake -------------------------------------------------------------------------------- /extras/Build/CMake/JUCEConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/CMake/JUCEConfig.cmake.in -------------------------------------------------------------------------------- /extras/Build/CMake/JUCEHelperTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/CMake/JUCEHelperTargets.cmake -------------------------------------------------------------------------------- /extras/Build/CMake/JUCEModuleSupport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/CMake/JUCEModuleSupport.cmake -------------------------------------------------------------------------------- /extras/Build/CMake/JUCEUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/CMake/JUCEUtils.cmake -------------------------------------------------------------------------------- /extras/Build/CMake/JuceLV2Defines.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/CMake/JuceLV2Defines.h.in -------------------------------------------------------------------------------- /extras/Build/CMake/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/CMake/LaunchScreen.storyboard -------------------------------------------------------------------------------- /extras/Build/CMake/PIPAudioProcessor.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/CMake/PIPAudioProcessor.cpp.in -------------------------------------------------------------------------------- /extras/Build/CMake/PIPAudioProcessorWithARA.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/CMake/PIPAudioProcessorWithARA.cpp.in -------------------------------------------------------------------------------- /extras/Build/CMake/PIPComponent.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/CMake/PIPComponent.cpp.in -------------------------------------------------------------------------------- /extras/Build/CMake/PIPConsole.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/CMake/PIPConsole.cpp.in -------------------------------------------------------------------------------- /extras/Build/CMake/RecentFilesMenuTemplate.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/CMake/RecentFilesMenuTemplate.nib -------------------------------------------------------------------------------- /extras/Build/CMake/UnityPluginGUIScript.cs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/CMake/UnityPluginGUIScript.cs.in -------------------------------------------------------------------------------- /extras/Build/CMake/checkBundleSigning.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/CMake/checkBundleSigning.cmake -------------------------------------------------------------------------------- /extras/Build/CMake/copyDir.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/CMake/copyDir.cmake -------------------------------------------------------------------------------- /extras/Build/CMake/juce_LinuxSubprocessHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/CMake/juce_LinuxSubprocessHelper.cpp -------------------------------------------------------------------------------- /extras/Build/CMake/juce_runtime_arch_detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/CMake/juce_runtime_arch_detection.cpp -------------------------------------------------------------------------------- /extras/Build/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/CMakeLists.txt -------------------------------------------------------------------------------- /extras/Build/juce_build_tools/juce_build_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/juce_build_tools/juce_build_tools.cpp -------------------------------------------------------------------------------- /extras/Build/juce_build_tools/juce_build_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/juce_build_tools/juce_build_tools.h -------------------------------------------------------------------------------- /extras/Build/juce_build_tools/utils/juce_Icons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/juce_build_tools/utils/juce_Icons.cpp -------------------------------------------------------------------------------- /extras/Build/juce_build_tools/utils/juce_Icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/juce_build_tools/utils/juce_Icons.h -------------------------------------------------------------------------------- /extras/Build/juceaide/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/juceaide/CMakeLists.txt -------------------------------------------------------------------------------- /extras/Build/juceaide/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Build/juceaide/Main.cpp -------------------------------------------------------------------------------- /extras/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/CMakeLists.txt -------------------------------------------------------------------------------- /extras/NetworkGraphicsDemo/Builds/Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/NetworkGraphicsDemo/Builds/Android/gradlew -------------------------------------------------------------------------------- /extras/NetworkGraphicsDemo/Builds/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'NetworkGraphicsDemo' 2 | include ':app' -------------------------------------------------------------------------------- /extras/NetworkGraphicsDemo/Builds/MacOSX/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/NetworkGraphicsDemo/Builds/MacOSX/Icon.icns -------------------------------------------------------------------------------- /extras/NetworkGraphicsDemo/Builds/iOS/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/NetworkGraphicsDemo/Builds/iOS/Icon.icns -------------------------------------------------------------------------------- /extras/NetworkGraphicsDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/NetworkGraphicsDemo/CMakeLists.txt -------------------------------------------------------------------------------- /extras/NetworkGraphicsDemo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/NetworkGraphicsDemo/README.txt -------------------------------------------------------------------------------- /extras/NetworkGraphicsDemo/Source/Demos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/NetworkGraphicsDemo/Source/Demos.h -------------------------------------------------------------------------------- /extras/NetworkGraphicsDemo/Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/NetworkGraphicsDemo/Source/Main.cpp -------------------------------------------------------------------------------- /extras/NetworkGraphicsDemo/Source/SharedCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/NetworkGraphicsDemo/Source/SharedCanvas.h -------------------------------------------------------------------------------- /extras/NetworkGraphicsDemo/Source/juce_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/NetworkGraphicsDemo/Source/juce_icon.png -------------------------------------------------------------------------------- /extras/Projucer/Builds/LinuxMakefile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/Builds/LinuxMakefile/Makefile -------------------------------------------------------------------------------- /extras/Projucer/Builds/MacOSX/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/Builds/MacOSX/Icon.icns -------------------------------------------------------------------------------- /extras/Projucer/Builds/MacOSX/Info-App.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/Builds/MacOSX/Info-App.plist -------------------------------------------------------------------------------- /extras/Projucer/Builds/VisualStudio2017/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/Builds/VisualStudio2017/icon.ico -------------------------------------------------------------------------------- /extras/Projucer/Builds/VisualStudio2019/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/Builds/VisualStudio2019/icon.ico -------------------------------------------------------------------------------- /extras/Projucer/Builds/VisualStudio2022/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/Builds/VisualStudio2022/icon.ico -------------------------------------------------------------------------------- /extras/Projucer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/CMakeLists.txt -------------------------------------------------------------------------------- /extras/Projucer/JuceLibraryCode/BinaryData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/JuceLibraryCode/BinaryData.cpp -------------------------------------------------------------------------------- /extras/Projucer/JuceLibraryCode/BinaryData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/JuceLibraryCode/BinaryData.h -------------------------------------------------------------------------------- /extras/Projucer/JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /extras/Projucer/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /extras/Projucer/Projucer.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/Projucer.jucer -------------------------------------------------------------------------------- /extras/Projucer/Source/Application/jucer_Headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/Source/Application/jucer_Headers.h -------------------------------------------------------------------------------- /extras/Projucer/Source/Application/jucer_Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/Source/Application/jucer_Main.cpp -------------------------------------------------------------------------------- /extras/Projucer/Source/BinaryData/gradle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/Source/BinaryData/gradle/LICENSE -------------------------------------------------------------------------------- /extras/Projucer/Source/BinaryData/gradle/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/Source/BinaryData/gradle/gradlew -------------------------------------------------------------------------------- /extras/Projucer/Source/Project/jucer_Project.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/Source/Project/jucer_Project.cpp -------------------------------------------------------------------------------- /extras/Projucer/Source/Project/jucer_Project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/Source/Project/jucer_Project.h -------------------------------------------------------------------------------- /extras/Projucer/Source/Utility/UI/jucer_Icons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/Source/Utility/UI/jucer_Icons.cpp -------------------------------------------------------------------------------- /extras/Projucer/Source/Utility/UI/jucer_Icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/Projucer/Source/Utility/UI/jucer_Icons.h -------------------------------------------------------------------------------- /extras/UnitTestRunner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/UnitTestRunner/CMakeLists.txt -------------------------------------------------------------------------------- /extras/UnitTestRunner/JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/UnitTestRunner/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /extras/UnitTestRunner/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/UnitTestRunner/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /extras/UnitTestRunner/Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/UnitTestRunner/Source/Main.cpp -------------------------------------------------------------------------------- /extras/UnitTestRunner/UnitTestRunner.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/UnitTestRunner/UnitTestRunner.jucer -------------------------------------------------------------------------------- /extras/WindowsDLL/JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/WindowsDLL/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /extras/WindowsDLL/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/WindowsDLL/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /extras/WindowsDLL/WindowsDLL.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/extras/WindowsDLL/WindowsDLL.jucer -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/juce_analytics/analytics/juce_Analytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_analytics/analytics/juce_Analytics.h -------------------------------------------------------------------------------- /modules/juce_analytics/juce_analytics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_analytics/juce_analytics.cpp -------------------------------------------------------------------------------- /modules/juce_analytics/juce_analytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_analytics/juce_analytics.h -------------------------------------------------------------------------------- /modules/juce_audio_basics/juce_audio_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/juce_audio_basics.cpp -------------------------------------------------------------------------------- /modules/juce_audio_basics/juce_audio_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/juce_audio_basics.h -------------------------------------------------------------------------------- /modules/juce_audio_basics/juce_audio_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/juce_audio_basics.mm -------------------------------------------------------------------------------- /modules/juce_audio_basics/midi/juce_MidiBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/midi/juce_MidiBuffer.cpp -------------------------------------------------------------------------------- /modules/juce_audio_basics/midi/juce_MidiBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/midi/juce_MidiBuffer.h -------------------------------------------------------------------------------- /modules/juce_audio_basics/midi/juce_MidiFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/midi/juce_MidiFile.cpp -------------------------------------------------------------------------------- /modules/juce_audio_basics/midi/juce_MidiFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/midi/juce_MidiFile.h -------------------------------------------------------------------------------- /modules/juce_audio_basics/midi/juce_MidiMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/midi/juce_MidiMessage.h -------------------------------------------------------------------------------- /modules/juce_audio_basics/midi/juce_MidiRPN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/midi/juce_MidiRPN.cpp -------------------------------------------------------------------------------- /modules/juce_audio_basics/midi/juce_MidiRPN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/midi/juce_MidiRPN.h -------------------------------------------------------------------------------- /modules/juce_audio_basics/midi/ump/juce_UMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/midi/ump/juce_UMP.h -------------------------------------------------------------------------------- /modules/juce_audio_basics/midi/ump/juce_UMPUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/midi/ump/juce_UMPUtils.h -------------------------------------------------------------------------------- /modules/juce_audio_basics/midi/ump/juce_UMPView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/midi/ump/juce_UMPView.h -------------------------------------------------------------------------------- /modules/juce_audio_basics/midi/ump/juce_UMPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/midi/ump/juce_UMPacket.h -------------------------------------------------------------------------------- /modules/juce_audio_basics/mpe/juce_MPEInstrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/mpe/juce_MPEInstrument.h -------------------------------------------------------------------------------- /modules/juce_audio_basics/mpe/juce_MPEMessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/mpe/juce_MPEMessages.cpp -------------------------------------------------------------------------------- /modules/juce_audio_basics/mpe/juce_MPEMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/mpe/juce_MPEMessages.h -------------------------------------------------------------------------------- /modules/juce_audio_basics/mpe/juce_MPENote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/mpe/juce_MPENote.cpp -------------------------------------------------------------------------------- /modules/juce_audio_basics/mpe/juce_MPENote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/mpe/juce_MPENote.h -------------------------------------------------------------------------------- /modules/juce_audio_basics/mpe/juce_MPEUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/mpe/juce_MPEUtils.cpp -------------------------------------------------------------------------------- /modules/juce_audio_basics/mpe/juce_MPEUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/mpe/juce_MPEUtils.h -------------------------------------------------------------------------------- /modules/juce_audio_basics/mpe/juce_MPEValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/mpe/juce_MPEValue.cpp -------------------------------------------------------------------------------- /modules/juce_audio_basics/mpe/juce_MPEValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/mpe/juce_MPEValue.h -------------------------------------------------------------------------------- /modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h -------------------------------------------------------------------------------- /modules/juce_audio_basics/utilities/juce_ADSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/utilities/juce_ADSR.h -------------------------------------------------------------------------------- /modules/juce_audio_basics/utilities/juce_Reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_basics/utilities/juce_Reverb.h -------------------------------------------------------------------------------- /modules/juce_audio_devices/juce_audio_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_devices/juce_audio_devices.cpp -------------------------------------------------------------------------------- /modules/juce_audio_devices/juce_audio_devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_devices/juce_audio_devices.h -------------------------------------------------------------------------------- /modules/juce_audio_devices/juce_audio_devices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_devices/juce_audio_devices.mm -------------------------------------------------------------------------------- /modules/juce_audio_devices/native/juce_Audio_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_devices/native/juce_Audio_ios.h -------------------------------------------------------------------------------- /modules/juce_audio_devices/native/oboe/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_devices/native/oboe/.clang-tidy -------------------------------------------------------------------------------- /modules/juce_audio_devices/native/oboe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_devices/native/oboe/LICENSE -------------------------------------------------------------------------------- /modules/juce_audio_devices/native/oboe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_devices/native/oboe/README.md -------------------------------------------------------------------------------- /modules/juce_audio_formats/codecs/flac/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_formats/codecs/flac/all.h -------------------------------------------------------------------------------- /modules/juce_audio_formats/codecs/flac/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_formats/codecs/flac/alloc.h -------------------------------------------------------------------------------- /modules/juce_audio_formats/codecs/flac/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_formats/codecs/flac/assert.h -------------------------------------------------------------------------------- /modules/juce_audio_formats/codecs/flac/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_formats/codecs/flac/callback.h -------------------------------------------------------------------------------- /modules/juce_audio_formats/codecs/flac/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_formats/codecs/flac/compat.h -------------------------------------------------------------------------------- /modules/juce_audio_formats/codecs/flac/endswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_formats/codecs/flac/endswap.h -------------------------------------------------------------------------------- /modules/juce_audio_formats/codecs/flac/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_formats/codecs/flac/export.h -------------------------------------------------------------------------------- /modules/juce_audio_formats/codecs/flac/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_formats/codecs/flac/format.h -------------------------------------------------------------------------------- /modules/juce_audio_formats/codecs/flac/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_formats/codecs/flac/metadata.h -------------------------------------------------------------------------------- /modules/juce_audio_formats/codecs/flac/ordinals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_formats/codecs/flac/ordinals.h -------------------------------------------------------------------------------- /modules/juce_audio_formats/codecs/flac/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_formats/codecs/flac/private.h -------------------------------------------------------------------------------- /modules/juce_audio_formats/codecs/oggvorbis/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_formats/codecs/oggvorbis/ogg.h -------------------------------------------------------------------------------- /modules/juce_audio_formats/juce_audio_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_formats/juce_audio_formats.cpp -------------------------------------------------------------------------------- /modules/juce_audio_formats/juce_audio_formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_formats/juce_audio_formats.h -------------------------------------------------------------------------------- /modules/juce_audio_formats/juce_audio_formats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_formats/juce_audio_formats.mm -------------------------------------------------------------------------------- /modules/juce_audio_formats/sampler/juce_Sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_formats/sampler/juce_Sampler.h -------------------------------------------------------------------------------- /modules/juce_audio_utils/gui/juce_AudioThumbnail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_utils/gui/juce_AudioThumbnail.h -------------------------------------------------------------------------------- /modules/juce_audio_utils/juce_audio_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_utils/juce_audio_utils.cpp -------------------------------------------------------------------------------- /modules/juce_audio_utils/juce_audio_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_utils/juce_audio_utils.h -------------------------------------------------------------------------------- /modules/juce_audio_utils/juce_audio_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_audio_utils/juce_audio_utils.mm -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Box2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Box2D.h -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Collision/b2BroadPhase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Collision/b2BroadPhase.h -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Collision/b2Collision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Collision/b2Collision.cpp -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Collision/b2Collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Collision/b2Collision.h -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Collision/b2Distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Collision/b2Distance.cpp -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Collision/b2Distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Collision/b2Distance.h -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Collision/b2DynamicTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Collision/b2DynamicTree.h -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Common/b2BlockAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Common/b2BlockAllocator.h -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Common/b2Draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Common/b2Draw.cpp -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Common/b2Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Common/b2Draw.h -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Common/b2GrowableStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Common/b2GrowableStack.h -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Common/b2Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Common/b2Math.cpp -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Common/b2Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Common/b2Math.h -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Common/b2Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Common/b2Settings.cpp -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Common/b2Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Common/b2Settings.h -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Common/b2StackAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Common/b2StackAllocator.h -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Common/b2Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Common/b2Timer.cpp -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Common/b2Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Common/b2Timer.h -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Dynamics/Joints/b2Joint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Dynamics/Joints/b2Joint.h -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Dynamics/b2Body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Dynamics/b2Body.cpp -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Dynamics/b2Body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Dynamics/b2Body.h -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Dynamics/b2Fixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Dynamics/b2Fixture.cpp -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Dynamics/b2Fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Dynamics/b2Fixture.h -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Dynamics/b2Island.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Dynamics/b2Island.cpp -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Dynamics/b2Island.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Dynamics/b2Island.h -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Dynamics/b2TimeStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Dynamics/b2TimeStep.h -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Dynamics/b2World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Dynamics/b2World.cpp -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Dynamics/b2World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Dynamics/b2World.h -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/README.txt -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Rope/b2Rope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Rope/b2Rope.cpp -------------------------------------------------------------------------------- /modules/juce_box2d/box2d/Rope/b2Rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/box2d/Rope/b2Rope.h -------------------------------------------------------------------------------- /modules/juce_box2d/juce_box2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/juce_box2d.cpp -------------------------------------------------------------------------------- /modules/juce_box2d/juce_box2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/juce_box2d.h -------------------------------------------------------------------------------- /modules/juce_box2d/utils/juce_Box2DRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/utils/juce_Box2DRenderer.cpp -------------------------------------------------------------------------------- /modules/juce_box2d/utils/juce_Box2DRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_box2d/utils/juce_Box2DRenderer.h -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_AbstractFifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_AbstractFifo.cpp -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_AbstractFifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_AbstractFifo.h -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_Array.h -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_ArrayBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_ArrayBase.cpp -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_ArrayBase.h -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_DynamicObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_DynamicObject.h -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_Enumerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_Enumerate.h -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_HashMap.h -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_HashMap_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_HashMap_test.cpp -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_ListenerList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_ListenerList.cpp -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_ListenerList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_ListenerList.h -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_NamedValueSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_NamedValueSet.h -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_Optional.h -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_OwnedArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_OwnedArray.cpp -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_OwnedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_OwnedArray.h -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_PropertySet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_PropertySet.cpp -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_PropertySet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_PropertySet.h -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_SortedSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_SortedSet.h -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_Span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_Span.h -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_SparseSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_SparseSet.cpp -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_SparseSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_SparseSet.h -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_Variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_Variant.cpp -------------------------------------------------------------------------------- /modules/juce_core/containers/juce_Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/containers/juce_Variant.h -------------------------------------------------------------------------------- /modules/juce_core/files/juce_AndroidDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/files/juce_AndroidDocument.h -------------------------------------------------------------------------------- /modules/juce_core/files/juce_DirectoryIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/files/juce_DirectoryIterator.cpp -------------------------------------------------------------------------------- /modules/juce_core/files/juce_DirectoryIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/files/juce_DirectoryIterator.h -------------------------------------------------------------------------------- /modules/juce_core/files/juce_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/files/juce_File.cpp -------------------------------------------------------------------------------- /modules/juce_core/files/juce_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/files/juce_File.h -------------------------------------------------------------------------------- /modules/juce_core/files/juce_FileFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/files/juce_FileFilter.cpp -------------------------------------------------------------------------------- /modules/juce_core/files/juce_FileFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/files/juce_FileFilter.h -------------------------------------------------------------------------------- /modules/juce_core/files/juce_FileInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/files/juce_FileInputStream.cpp -------------------------------------------------------------------------------- /modules/juce_core/files/juce_FileInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/files/juce_FileInputStream.h -------------------------------------------------------------------------------- /modules/juce_core/files/juce_FileOutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/files/juce_FileOutputStream.cpp -------------------------------------------------------------------------------- /modules/juce_core/files/juce_FileOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/files/juce_FileOutputStream.h -------------------------------------------------------------------------------- /modules/juce_core/files/juce_FileSearchPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/files/juce_FileSearchPath.cpp -------------------------------------------------------------------------------- /modules/juce_core/files/juce_FileSearchPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/files/juce_FileSearchPath.h -------------------------------------------------------------------------------- /modules/juce_core/files/juce_MemoryMappedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/files/juce_MemoryMappedFile.h -------------------------------------------------------------------------------- /modules/juce_core/files/juce_TemporaryFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/files/juce_TemporaryFile.cpp -------------------------------------------------------------------------------- /modules/juce_core/files/juce_TemporaryFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/files/juce_TemporaryFile.h -------------------------------------------------------------------------------- /modules/juce_core/files/juce_WildcardFileFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/files/juce_WildcardFileFilter.h -------------------------------------------------------------------------------- /modules/juce_core/files/juce_common_MimeTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/files/juce_common_MimeTypes.cpp -------------------------------------------------------------------------------- /modules/juce_core/files/juce_common_MimeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/files/juce_common_MimeTypes.h -------------------------------------------------------------------------------- /modules/juce_core/javascript/juce_JSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/javascript/juce_JSON.cpp -------------------------------------------------------------------------------- /modules/juce_core/javascript/juce_JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/javascript/juce_JSON.h -------------------------------------------------------------------------------- /modules/juce_core/javascript/juce_JSONUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/javascript/juce_JSONUtils.cpp -------------------------------------------------------------------------------- /modules/juce_core/javascript/juce_JSONUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/javascript/juce_JSONUtils.h -------------------------------------------------------------------------------- /modules/juce_core/javascript/juce_Javascript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/javascript/juce_Javascript.cpp -------------------------------------------------------------------------------- /modules/juce_core/javascript/juce_Javascript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/javascript/juce_Javascript.h -------------------------------------------------------------------------------- /modules/juce_core/juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/juce_core.cpp -------------------------------------------------------------------------------- /modules/juce_core/juce_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/juce_core.h -------------------------------------------------------------------------------- /modules/juce_core/juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/juce_core.mm -------------------------------------------------------------------------------- /modules/juce_core/logging/juce_FileLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/logging/juce_FileLogger.cpp -------------------------------------------------------------------------------- /modules/juce_core/logging/juce_FileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/logging/juce_FileLogger.h -------------------------------------------------------------------------------- /modules/juce_core/logging/juce_Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/logging/juce_Logger.cpp -------------------------------------------------------------------------------- /modules/juce_core/logging/juce_Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/logging/juce_Logger.h -------------------------------------------------------------------------------- /modules/juce_core/maths/juce_BigInteger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/maths/juce_BigInteger.cpp -------------------------------------------------------------------------------- /modules/juce_core/maths/juce_BigInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/maths/juce_BigInteger.h -------------------------------------------------------------------------------- /modules/juce_core/maths/juce_Expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/maths/juce_Expression.cpp -------------------------------------------------------------------------------- /modules/juce_core/maths/juce_Expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/maths/juce_Expression.h -------------------------------------------------------------------------------- /modules/juce_core/maths/juce_MathsFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/maths/juce_MathsFunctions.h -------------------------------------------------------------------------------- /modules/juce_core/maths/juce_NormalisableRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/maths/juce_NormalisableRange.h -------------------------------------------------------------------------------- /modules/juce_core/maths/juce_Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/maths/juce_Random.cpp -------------------------------------------------------------------------------- /modules/juce_core/maths/juce_Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/maths/juce_Random.h -------------------------------------------------------------------------------- /modules/juce_core/maths/juce_Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/maths/juce_Range.h -------------------------------------------------------------------------------- /modules/juce_core/memory/juce_AllocationHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/memory/juce_AllocationHooks.cpp -------------------------------------------------------------------------------- /modules/juce_core/memory/juce_AllocationHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/memory/juce_AllocationHooks.h -------------------------------------------------------------------------------- /modules/juce_core/memory/juce_Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/memory/juce_Atomic.h -------------------------------------------------------------------------------- /modules/juce_core/memory/juce_ByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/memory/juce_ByteOrder.h -------------------------------------------------------------------------------- /modules/juce_core/memory/juce_HeapBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/memory/juce_HeapBlock.h -------------------------------------------------------------------------------- /modules/juce_core/memory/juce_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/memory/juce_Memory.h -------------------------------------------------------------------------------- /modules/juce_core/memory/juce_MemoryBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/memory/juce_MemoryBlock.cpp -------------------------------------------------------------------------------- /modules/juce_core/memory/juce_MemoryBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/memory/juce_MemoryBlock.h -------------------------------------------------------------------------------- /modules/juce_core/memory/juce_Reservoir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/memory/juce_Reservoir.h -------------------------------------------------------------------------------- /modules/juce_core/memory/juce_ScopedPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/memory/juce_ScopedPointer.h -------------------------------------------------------------------------------- /modules/juce_core/memory/juce_Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/memory/juce_Singleton.h -------------------------------------------------------------------------------- /modules/juce_core/memory/juce_WeakReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/memory/juce_WeakReference.h -------------------------------------------------------------------------------- /modules/juce_core/misc/juce_ConsoleApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/misc/juce_ConsoleApplication.cpp -------------------------------------------------------------------------------- /modules/juce_core/misc/juce_ConsoleApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/misc/juce_ConsoleApplication.h -------------------------------------------------------------------------------- /modules/juce_core/misc/juce_EnumHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/misc/juce_EnumHelpers.h -------------------------------------------------------------------------------- /modules/juce_core/misc/juce_EnumHelpers_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/misc/juce_EnumHelpers_test.cpp -------------------------------------------------------------------------------- /modules/juce_core/misc/juce_Functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/misc/juce_Functional.h -------------------------------------------------------------------------------- /modules/juce_core/misc/juce_Result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/misc/juce_Result.cpp -------------------------------------------------------------------------------- /modules/juce_core/misc/juce_Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/misc/juce_Result.h -------------------------------------------------------------------------------- /modules/juce_core/misc/juce_RuntimePermissions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/misc/juce_RuntimePermissions.cpp -------------------------------------------------------------------------------- /modules/juce_core/misc/juce_RuntimePermissions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/misc/juce_RuntimePermissions.h -------------------------------------------------------------------------------- /modules/juce_core/misc/juce_ScopeGuard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/misc/juce_ScopeGuard.cpp -------------------------------------------------------------------------------- /modules/juce_core/misc/juce_ScopeGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/misc/juce_ScopeGuard.h -------------------------------------------------------------------------------- /modules/juce_core/misc/juce_Uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/misc/juce_Uuid.cpp -------------------------------------------------------------------------------- /modules/juce_core/misc/juce_Uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/misc/juce_Uuid.h -------------------------------------------------------------------------------- /modules/juce_core/misc/juce_WindowsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/misc/juce_WindowsRegistry.h -------------------------------------------------------------------------------- /modules/juce_core/native/java/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/java/README.txt -------------------------------------------------------------------------------- /modules/juce_core/native/juce_BasicNativeHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_BasicNativeHeaders.h -------------------------------------------------------------------------------- /modules/juce_core/native/juce_CFHelpers_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_CFHelpers_mac.h -------------------------------------------------------------------------------- /modules/juce_core/native/juce_CommonFile_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_CommonFile_linux.cpp -------------------------------------------------------------------------------- /modules/juce_core/native/juce_Files_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_Files_android.cpp -------------------------------------------------------------------------------- /modules/juce_core/native/juce_Files_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_Files_linux.cpp -------------------------------------------------------------------------------- /modules/juce_core/native/juce_Files_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_Files_mac.mm -------------------------------------------------------------------------------- /modules/juce_core/native/juce_Files_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_Files_windows.cpp -------------------------------------------------------------------------------- /modules/juce_core/native/juce_IPAddress_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_IPAddress_posix.h -------------------------------------------------------------------------------- /modules/juce_core/native/juce_JNIHelpers_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_JNIHelpers_android.h -------------------------------------------------------------------------------- /modules/juce_core/native/juce_Misc_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_Misc_android.cpp -------------------------------------------------------------------------------- /modules/juce_core/native/juce_NamedPipe_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_NamedPipe_posix.cpp -------------------------------------------------------------------------------- /modules/juce_core/native/juce_Network_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_Network_android.cpp -------------------------------------------------------------------------------- /modules/juce_core/native/juce_Network_curl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_Network_curl.cpp -------------------------------------------------------------------------------- /modules/juce_core/native/juce_Network_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_Network_linux.cpp -------------------------------------------------------------------------------- /modules/juce_core/native/juce_Network_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_Network_mac.mm -------------------------------------------------------------------------------- /modules/juce_core/native/juce_Network_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_Network_windows.cpp -------------------------------------------------------------------------------- /modules/juce_core/native/juce_ObjCHelpers_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_ObjCHelpers_mac.h -------------------------------------------------------------------------------- /modules/juce_core/native/juce_Process_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_Process_mac.mm -------------------------------------------------------------------------------- /modules/juce_core/native/juce_Registry_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_Registry_windows.cpp -------------------------------------------------------------------------------- /modules/juce_core/native/juce_SharedCode_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_SharedCode_intel.h -------------------------------------------------------------------------------- /modules/juce_core/native/juce_SharedCode_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_SharedCode_posix.h -------------------------------------------------------------------------------- /modules/juce_core/native/juce_Strings_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_Strings_mac.mm -------------------------------------------------------------------------------- /modules/juce_core/native/juce_Threads_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_Threads_linux.cpp -------------------------------------------------------------------------------- /modules/juce_core/native/juce_Threads_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/native/juce_Threads_mac.mm -------------------------------------------------------------------------------- /modules/juce_core/network/juce_IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/network/juce_IPAddress.cpp -------------------------------------------------------------------------------- /modules/juce_core/network/juce_IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/network/juce_IPAddress.h -------------------------------------------------------------------------------- /modules/juce_core/network/juce_MACAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/network/juce_MACAddress.cpp -------------------------------------------------------------------------------- /modules/juce_core/network/juce_MACAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/network/juce_MACAddress.h -------------------------------------------------------------------------------- /modules/juce_core/network/juce_NamedPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/network/juce_NamedPipe.cpp -------------------------------------------------------------------------------- /modules/juce_core/network/juce_NamedPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/network/juce_NamedPipe.h -------------------------------------------------------------------------------- /modules/juce_core/network/juce_Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/network/juce_Socket.cpp -------------------------------------------------------------------------------- /modules/juce_core/network/juce_Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/network/juce_Socket.h -------------------------------------------------------------------------------- /modules/juce_core/network/juce_URL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/network/juce_URL.cpp -------------------------------------------------------------------------------- /modules/juce_core/network/juce_URL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/network/juce_URL.h -------------------------------------------------------------------------------- /modules/juce_core/network/juce_WebInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/network/juce_WebInputStream.h -------------------------------------------------------------------------------- /modules/juce_core/streams/juce_InputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/streams/juce_InputSource.h -------------------------------------------------------------------------------- /modules/juce_core/streams/juce_InputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/streams/juce_InputStream.cpp -------------------------------------------------------------------------------- /modules/juce_core/streams/juce_InputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/streams/juce_InputStream.h -------------------------------------------------------------------------------- /modules/juce_core/streams/juce_OutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/streams/juce_OutputStream.cpp -------------------------------------------------------------------------------- /modules/juce_core/streams/juce_OutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/streams/juce_OutputStream.h -------------------------------------------------------------------------------- /modules/juce_core/streams/juce_URLInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/streams/juce_URLInputSource.h -------------------------------------------------------------------------------- /modules/juce_core/system/juce_CompilerSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/system/juce_CompilerSupport.h -------------------------------------------------------------------------------- /modules/juce_core/system/juce_PlatformDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/system/juce_PlatformDefs.h -------------------------------------------------------------------------------- /modules/juce_core/system/juce_StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/system/juce_StandardHeader.h -------------------------------------------------------------------------------- /modules/juce_core/system/juce_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/system/juce_SystemStats.cpp -------------------------------------------------------------------------------- /modules/juce_core/system/juce_SystemStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/system/juce_SystemStats.h -------------------------------------------------------------------------------- /modules/juce_core/system/juce_TargetPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/system/juce_TargetPlatform.h -------------------------------------------------------------------------------- /modules/juce_core/text/juce_Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_Base64.cpp -------------------------------------------------------------------------------- /modules/juce_core/text/juce_Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_Base64.h -------------------------------------------------------------------------------- /modules/juce_core/text/juce_CharPointer_ASCII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_CharPointer_ASCII.h -------------------------------------------------------------------------------- /modules/juce_core/text/juce_CharPointer_UTF16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_CharPointer_UTF16.h -------------------------------------------------------------------------------- /modules/juce_core/text/juce_CharPointer_UTF32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_CharPointer_UTF32.h -------------------------------------------------------------------------------- /modules/juce_core/text/juce_CharPointer_UTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_CharPointer_UTF8.h -------------------------------------------------------------------------------- /modules/juce_core/text/juce_Identifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_Identifier.cpp -------------------------------------------------------------------------------- /modules/juce_core/text/juce_Identifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_Identifier.h -------------------------------------------------------------------------------- /modules/juce_core/text/juce_LocalisedStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_LocalisedStrings.h -------------------------------------------------------------------------------- /modules/juce_core/text/juce_NewLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_NewLine.h -------------------------------------------------------------------------------- /modules/juce_core/text/juce_String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_String.cpp -------------------------------------------------------------------------------- /modules/juce_core/text/juce_String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_String.h -------------------------------------------------------------------------------- /modules/juce_core/text/juce_StringArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_StringArray.cpp -------------------------------------------------------------------------------- /modules/juce_core/text/juce_StringArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_StringArray.h -------------------------------------------------------------------------------- /modules/juce_core/text/juce_StringPairArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_StringPairArray.cpp -------------------------------------------------------------------------------- /modules/juce_core/text/juce_StringPairArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_StringPairArray.h -------------------------------------------------------------------------------- /modules/juce_core/text/juce_StringPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_StringPool.cpp -------------------------------------------------------------------------------- /modules/juce_core/text/juce_StringPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_StringPool.h -------------------------------------------------------------------------------- /modules/juce_core/text/juce_StringRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_StringRef.h -------------------------------------------------------------------------------- /modules/juce_core/text/juce_TextDiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_TextDiff.cpp -------------------------------------------------------------------------------- /modules/juce_core/text/juce_TextDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/text/juce_TextDiff.h -------------------------------------------------------------------------------- /modules/juce_core/threads/juce_ChildProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/threads/juce_ChildProcess.cpp -------------------------------------------------------------------------------- /modules/juce_core/threads/juce_ChildProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/threads/juce_ChildProcess.h -------------------------------------------------------------------------------- /modules/juce_core/threads/juce_DynamicLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/threads/juce_DynamicLibrary.h -------------------------------------------------------------------------------- /modules/juce_core/threads/juce_Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/threads/juce_Process.h -------------------------------------------------------------------------------- /modules/juce_core/threads/juce_ReadWriteLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/threads/juce_ReadWriteLock.h -------------------------------------------------------------------------------- /modules/juce_core/threads/juce_ScopedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/threads/juce_ScopedLock.h -------------------------------------------------------------------------------- /modules/juce_core/threads/juce_ScopedReadLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/threads/juce_ScopedReadLock.h -------------------------------------------------------------------------------- /modules/juce_core/threads/juce_SpinLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/threads/juce_SpinLock.h -------------------------------------------------------------------------------- /modules/juce_core/threads/juce_Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/threads/juce_Thread.cpp -------------------------------------------------------------------------------- /modules/juce_core/threads/juce_Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/threads/juce_Thread.h -------------------------------------------------------------------------------- /modules/juce_core/threads/juce_ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/threads/juce_ThreadPool.cpp -------------------------------------------------------------------------------- /modules/juce_core/threads/juce_ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/threads/juce_ThreadPool.h -------------------------------------------------------------------------------- /modules/juce_core/threads/juce_WaitableEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/threads/juce_WaitableEvent.h -------------------------------------------------------------------------------- /modules/juce_core/time/juce_RelativeTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/time/juce_RelativeTime.cpp -------------------------------------------------------------------------------- /modules/juce_core/time/juce_RelativeTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/time/juce_RelativeTime.h -------------------------------------------------------------------------------- /modules/juce_core/time/juce_Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/time/juce_Time.cpp -------------------------------------------------------------------------------- /modules/juce_core/time/juce_Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/time/juce_Time.h -------------------------------------------------------------------------------- /modules/juce_core/unit_tests/juce_UnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/unit_tests/juce_UnitTest.cpp -------------------------------------------------------------------------------- /modules/juce_core/unit_tests/juce_UnitTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/unit_tests/juce_UnitTest.h -------------------------------------------------------------------------------- /modules/juce_core/xml/juce_XmlDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/xml/juce_XmlDocument.cpp -------------------------------------------------------------------------------- /modules/juce_core/xml/juce_XmlDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/xml/juce_XmlDocument.h -------------------------------------------------------------------------------- /modules/juce_core/xml/juce_XmlElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/xml/juce_XmlElement.cpp -------------------------------------------------------------------------------- /modules/juce_core/xml/juce_XmlElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/xml/juce_XmlElement.h -------------------------------------------------------------------------------- /modules/juce_core/zip/juce_ZipFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/juce_ZipFile.cpp -------------------------------------------------------------------------------- /modules/juce_core/zip/juce_ZipFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/juce_ZipFile.h -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/README -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/adler32.c -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/compress.c -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/crc32.c -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/crc32.h -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/deflate.c -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/deflate.h -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/infback.c -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/inffast.c -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/inffast.h -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/inffixed.h -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/inflate.c -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/inflate.h -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/inftrees.c -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/inftrees.h -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/trees.c -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/trees.h -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/uncompr.c -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/zconf.h -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/zconf.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/zconf.in.h -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/zlib.h -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/zutil.c -------------------------------------------------------------------------------- /modules/juce_core/zip/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_core/zip/zlib/zutil.h -------------------------------------------------------------------------------- /modules/juce_cryptography/hashing/juce_MD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_cryptography/hashing/juce_MD5.cpp -------------------------------------------------------------------------------- /modules/juce_cryptography/hashing/juce_MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_cryptography/hashing/juce_MD5.h -------------------------------------------------------------------------------- /modules/juce_cryptography/hashing/juce_SHA256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_cryptography/hashing/juce_SHA256.h -------------------------------------------------------------------------------- /modules/juce_cryptography/juce_cryptography.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_cryptography/juce_cryptography.cpp -------------------------------------------------------------------------------- /modules/juce_cryptography/juce_cryptography.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_cryptography/juce_cryptography.h -------------------------------------------------------------------------------- /modules/juce_cryptography/juce_cryptography.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_cryptography/juce_cryptography.mm -------------------------------------------------------------------------------- /modules/juce_dsp/containers/juce_AudioBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/containers/juce_AudioBlock.h -------------------------------------------------------------------------------- /modules/juce_dsp/containers/juce_SIMDRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/containers/juce_SIMDRegister.h -------------------------------------------------------------------------------- /modules/juce_dsp/frequency/juce_Convolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/frequency/juce_Convolution.cpp -------------------------------------------------------------------------------- /modules/juce_dsp/frequency/juce_Convolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/frequency/juce_Convolution.h -------------------------------------------------------------------------------- /modules/juce_dsp/frequency/juce_FFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/frequency/juce_FFT.cpp -------------------------------------------------------------------------------- /modules/juce_dsp/frequency/juce_FFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/frequency/juce_FFT.h -------------------------------------------------------------------------------- /modules/juce_dsp/frequency/juce_FFT_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/frequency/juce_FFT_test.cpp -------------------------------------------------------------------------------- /modules/juce_dsp/frequency/juce_Windowing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/frequency/juce_Windowing.cpp -------------------------------------------------------------------------------- /modules/juce_dsp/frequency/juce_Windowing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/frequency/juce_Windowing.h -------------------------------------------------------------------------------- /modules/juce_dsp/juce_dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/juce_dsp.cpp -------------------------------------------------------------------------------- /modules/juce_dsp/juce_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/juce_dsp.h -------------------------------------------------------------------------------- /modules/juce_dsp/juce_dsp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/juce_dsp.mm -------------------------------------------------------------------------------- /modules/juce_dsp/maths/juce_LogRampedValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/maths/juce_LogRampedValue.h -------------------------------------------------------------------------------- /modules/juce_dsp/maths/juce_LookupTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/maths/juce_LookupTable.cpp -------------------------------------------------------------------------------- /modules/juce_dsp/maths/juce_LookupTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/maths/juce_LookupTable.h -------------------------------------------------------------------------------- /modules/juce_dsp/maths/juce_Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/maths/juce_Matrix.cpp -------------------------------------------------------------------------------- /modules/juce_dsp/maths/juce_Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/maths/juce_Matrix.h -------------------------------------------------------------------------------- /modules/juce_dsp/maths/juce_Matrix_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/maths/juce_Matrix_test.cpp -------------------------------------------------------------------------------- /modules/juce_dsp/maths/juce_Phase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/maths/juce_Phase.h -------------------------------------------------------------------------------- /modules/juce_dsp/maths/juce_Polynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/maths/juce_Polynomial.h -------------------------------------------------------------------------------- /modules/juce_dsp/maths/juce_SpecialFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/maths/juce_SpecialFunctions.h -------------------------------------------------------------------------------- /modules/juce_dsp/processors/juce_DelayLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/processors/juce_DelayLine.cpp -------------------------------------------------------------------------------- /modules/juce_dsp/processors/juce_DelayLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/processors/juce_DelayLine.h -------------------------------------------------------------------------------- /modules/juce_dsp/processors/juce_DryWetMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/processors/juce_DryWetMixer.h -------------------------------------------------------------------------------- /modules/juce_dsp/processors/juce_FIRFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/processors/juce_FIRFilter.cpp -------------------------------------------------------------------------------- /modules/juce_dsp/processors/juce_FIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/processors/juce_FIRFilter.h -------------------------------------------------------------------------------- /modules/juce_dsp/processors/juce_IIRFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/processors/juce_IIRFilter.cpp -------------------------------------------------------------------------------- /modules/juce_dsp/processors/juce_IIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/processors/juce_IIRFilter.h -------------------------------------------------------------------------------- /modules/juce_dsp/processors/juce_Oversampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/processors/juce_Oversampling.h -------------------------------------------------------------------------------- /modules/juce_dsp/processors/juce_Panner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/processors/juce_Panner.cpp -------------------------------------------------------------------------------- /modules/juce_dsp/processors/juce_Panner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/processors/juce_Panner.h -------------------------------------------------------------------------------- /modules/juce_dsp/widgets/juce_Bias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/widgets/juce_Bias.h -------------------------------------------------------------------------------- /modules/juce_dsp/widgets/juce_Chorus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/widgets/juce_Chorus.cpp -------------------------------------------------------------------------------- /modules/juce_dsp/widgets/juce_Chorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/widgets/juce_Chorus.h -------------------------------------------------------------------------------- /modules/juce_dsp/widgets/juce_Compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/widgets/juce_Compressor.cpp -------------------------------------------------------------------------------- /modules/juce_dsp/widgets/juce_Compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/widgets/juce_Compressor.h -------------------------------------------------------------------------------- /modules/juce_dsp/widgets/juce_Gain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/widgets/juce_Gain.h -------------------------------------------------------------------------------- /modules/juce_dsp/widgets/juce_LadderFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/widgets/juce_LadderFilter.cpp -------------------------------------------------------------------------------- /modules/juce_dsp/widgets/juce_LadderFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/widgets/juce_LadderFilter.h -------------------------------------------------------------------------------- /modules/juce_dsp/widgets/juce_Limiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/widgets/juce_Limiter.cpp -------------------------------------------------------------------------------- /modules/juce_dsp/widgets/juce_Limiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/widgets/juce_Limiter.h -------------------------------------------------------------------------------- /modules/juce_dsp/widgets/juce_NoiseGate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/widgets/juce_NoiseGate.cpp -------------------------------------------------------------------------------- /modules/juce_dsp/widgets/juce_NoiseGate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/widgets/juce_NoiseGate.h -------------------------------------------------------------------------------- /modules/juce_dsp/widgets/juce_Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/widgets/juce_Oscillator.h -------------------------------------------------------------------------------- /modules/juce_dsp/widgets/juce_Phaser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/widgets/juce_Phaser.cpp -------------------------------------------------------------------------------- /modules/juce_dsp/widgets/juce_Phaser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/widgets/juce_Phaser.h -------------------------------------------------------------------------------- /modules/juce_dsp/widgets/juce_Reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/widgets/juce_Reverb.h -------------------------------------------------------------------------------- /modules/juce_dsp/widgets/juce_WaveShaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_dsp/widgets/juce_WaveShaper.h -------------------------------------------------------------------------------- /modules/juce_events/juce_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_events/juce_events.cpp -------------------------------------------------------------------------------- /modules/juce_events/juce_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_events/juce_events.h -------------------------------------------------------------------------------- /modules/juce_events/juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_events/juce_events.mm -------------------------------------------------------------------------------- /modules/juce_events/messages/juce_Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_events/messages/juce_Message.h -------------------------------------------------------------------------------- /modules/juce_events/timers/juce_MultiTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_events/timers/juce_MultiTimer.cpp -------------------------------------------------------------------------------- /modules/juce_events/timers/juce_MultiTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_events/timers/juce_MultiTimer.h -------------------------------------------------------------------------------- /modules/juce_events/timers/juce_Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_events/timers/juce_Timer.cpp -------------------------------------------------------------------------------- /modules/juce_events/timers/juce_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_events/timers/juce_Timer.h -------------------------------------------------------------------------------- /modules/juce_graphics/colour/juce_Colour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/colour/juce_Colour.cpp -------------------------------------------------------------------------------- /modules/juce_graphics/colour/juce_Colour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/colour/juce_Colour.h -------------------------------------------------------------------------------- /modules/juce_graphics/colour/juce_Colours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/colour/juce_Colours.cpp -------------------------------------------------------------------------------- /modules/juce_graphics/colour/juce_Colours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/colour/juce_Colours.h -------------------------------------------------------------------------------- /modules/juce_graphics/colour/juce_FillType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/colour/juce_FillType.cpp -------------------------------------------------------------------------------- /modules/juce_graphics/colour/juce_FillType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/colour/juce_FillType.h -------------------------------------------------------------------------------- /modules/juce_graphics/effects/juce_GlowEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/effects/juce_GlowEffect.h -------------------------------------------------------------------------------- /modules/juce_graphics/fonts/juce_Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/fonts/juce_Font.cpp -------------------------------------------------------------------------------- /modules/juce_graphics/fonts/juce_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/fonts/juce_Font.h -------------------------------------------------------------------------------- /modules/juce_graphics/fonts/juce_TextLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/fonts/juce_TextLayout.cpp -------------------------------------------------------------------------------- /modules/juce_graphics/fonts/juce_TextLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/fonts/juce_TextLayout.h -------------------------------------------------------------------------------- /modules/juce_graphics/fonts/juce_Typeface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/fonts/juce_Typeface.cpp -------------------------------------------------------------------------------- /modules/juce_graphics/fonts/juce_Typeface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/fonts/juce_Typeface.h -------------------------------------------------------------------------------- /modules/juce_graphics/geometry/juce_EdgeTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/geometry/juce_EdgeTable.h -------------------------------------------------------------------------------- /modules/juce_graphics/geometry/juce_Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/geometry/juce_Line.h -------------------------------------------------------------------------------- /modules/juce_graphics/geometry/juce_Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/geometry/juce_Path.cpp -------------------------------------------------------------------------------- /modules/juce_graphics/geometry/juce_Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/geometry/juce_Path.h -------------------------------------------------------------------------------- /modules/juce_graphics/geometry/juce_Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/geometry/juce_Point.h -------------------------------------------------------------------------------- /modules/juce_graphics/geometry/juce_Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/geometry/juce_Rectangle.h -------------------------------------------------------------------------------- /modules/juce_graphics/images/juce_Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/images/juce_Image.cpp -------------------------------------------------------------------------------- /modules/juce_graphics/images/juce_Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/images/juce_Image.h -------------------------------------------------------------------------------- /modules/juce_graphics/images/juce_ImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/images/juce_ImageCache.h -------------------------------------------------------------------------------- /modules/juce_graphics/images/juce_ScaledImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/images/juce_ScaledImage.h -------------------------------------------------------------------------------- /modules/juce_graphics/juce_graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/juce_graphics.cpp -------------------------------------------------------------------------------- /modules/juce_graphics/juce_graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/juce_graphics.h -------------------------------------------------------------------------------- /modules/juce_graphics/juce_graphics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/juce_graphics.mm -------------------------------------------------------------------------------- /modules/juce_graphics/native/juce_Fonts_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_graphics/native/juce_Fonts_mac.mm -------------------------------------------------------------------------------- /modules/juce_gui_basics/buttons/juce_Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/buttons/juce_Button.cpp -------------------------------------------------------------------------------- /modules/juce_gui_basics/buttons/juce_Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/buttons/juce_Button.h -------------------------------------------------------------------------------- /modules/juce_gui_basics/desktop/juce_Desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/desktop/juce_Desktop.h -------------------------------------------------------------------------------- /modules/juce_gui_basics/desktop/juce_Displays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/desktop/juce_Displays.h -------------------------------------------------------------------------------- /modules/juce_gui_basics/juce_gui_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/juce_gui_basics.cpp -------------------------------------------------------------------------------- /modules/juce_gui_basics/juce_gui_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/juce_gui_basics.h -------------------------------------------------------------------------------- /modules/juce_gui_basics/juce_gui_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/juce_gui_basics.mm -------------------------------------------------------------------------------- /modules/juce_gui_basics/layout/juce_FlexBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/layout/juce_FlexBox.cpp -------------------------------------------------------------------------------- /modules/juce_gui_basics/layout/juce_FlexBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/layout/juce_FlexBox.h -------------------------------------------------------------------------------- /modules/juce_gui_basics/layout/juce_FlexItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/layout/juce_FlexItem.h -------------------------------------------------------------------------------- /modules/juce_gui_basics/layout/juce_Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/layout/juce_Grid.cpp -------------------------------------------------------------------------------- /modules/juce_gui_basics/layout/juce_Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/layout/juce_Grid.h -------------------------------------------------------------------------------- /modules/juce_gui_basics/layout/juce_GridItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/layout/juce_GridItem.h -------------------------------------------------------------------------------- /modules/juce_gui_basics/layout/juce_ScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/layout/juce_ScrollBar.h -------------------------------------------------------------------------------- /modules/juce_gui_basics/layout/juce_SidePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/layout/juce_SidePanel.h -------------------------------------------------------------------------------- /modules/juce_gui_basics/layout/juce_Viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/layout/juce_Viewport.h -------------------------------------------------------------------------------- /modules/juce_gui_basics/menus/juce_PopupMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/menus/juce_PopupMenu.h -------------------------------------------------------------------------------- /modules/juce_gui_basics/mouse/juce_MouseEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/mouse/juce_MouseEvent.h -------------------------------------------------------------------------------- /modules/juce_gui_basics/widgets/juce_ComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/widgets/juce_ComboBox.h -------------------------------------------------------------------------------- /modules/juce_gui_basics/widgets/juce_Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/widgets/juce_Label.cpp -------------------------------------------------------------------------------- /modules/juce_gui_basics/widgets/juce_Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/widgets/juce_Label.h -------------------------------------------------------------------------------- /modules/juce_gui_basics/widgets/juce_ListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/widgets/juce_ListBox.h -------------------------------------------------------------------------------- /modules/juce_gui_basics/widgets/juce_Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/widgets/juce_Slider.cpp -------------------------------------------------------------------------------- /modules/juce_gui_basics/widgets/juce_Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/widgets/juce_Slider.h -------------------------------------------------------------------------------- /modules/juce_gui_basics/widgets/juce_Toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/widgets/juce_Toolbar.h -------------------------------------------------------------------------------- /modules/juce_gui_basics/widgets/juce_TreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_basics/widgets/juce_TreeView.h -------------------------------------------------------------------------------- /modules/juce_gui_extra/juce_gui_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_extra/juce_gui_extra.cpp -------------------------------------------------------------------------------- /modules/juce_gui_extra/juce_gui_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_extra/juce_gui_extra.h -------------------------------------------------------------------------------- /modules/juce_gui_extra/juce_gui_extra.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_extra/juce_gui_extra.mm -------------------------------------------------------------------------------- /modules/juce_gui_extra/misc/juce_AppleRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_extra/misc/juce_AppleRemote.h -------------------------------------------------------------------------------- /modules/juce_gui_extra/misc/juce_SplashScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_gui_extra/misc/juce_SplashScreen.h -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CIChannelAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CIChannelAddress.h -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CIDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CIDevice.cpp -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CIDevice.h -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CIDeviceFeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CIDeviceFeatures.h -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CIDeviceListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CIDeviceListener.h -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CIDeviceOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CIDeviceOptions.h -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CIEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CIEncoding.h -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CIEncodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CIEncodings.cpp -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CIEncodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CIEncodings.h -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CIFunctionBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CIFunctionBlock.h -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CIMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CIMessages.h -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CIMuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CIMuid.h -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CIParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CIParser.cpp -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CIParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CIParser.h -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CIProfileHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CIProfileHost.cpp -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CIProfileHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CIProfileHost.h -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CIProfileStates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CIProfileStates.h -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CIPropertyHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CIPropertyHost.cpp -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CIPropertyHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CIPropertyHost.h -------------------------------------------------------------------------------- /modules/juce_midi_ci/ci/juce_CISubscription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/ci/juce_CISubscription.h -------------------------------------------------------------------------------- /modules/juce_midi_ci/detail/juce_CIResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/detail/juce_CIResponder.h -------------------------------------------------------------------------------- /modules/juce_midi_ci/juce_midi_ci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/juce_midi_ci.cpp -------------------------------------------------------------------------------- /modules/juce_midi_ci/juce_midi_ci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_midi_ci/juce_midi_ci.h -------------------------------------------------------------------------------- /modules/juce_opengl/geometry/juce_Matrix3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/geometry/juce_Matrix3D.h -------------------------------------------------------------------------------- /modules/juce_opengl/geometry/juce_Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/geometry/juce_Quaternion.h -------------------------------------------------------------------------------- /modules/juce_opengl/geometry/juce_Vector3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/geometry/juce_Vector3D.h -------------------------------------------------------------------------------- /modules/juce_opengl/juce_opengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/juce_opengl.cpp -------------------------------------------------------------------------------- /modules/juce_opengl/juce_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/juce_opengl.h -------------------------------------------------------------------------------- /modules/juce_opengl/juce_opengl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/juce_opengl.mm -------------------------------------------------------------------------------- /modules/juce_opengl/native/juce_OpenGL_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/native/juce_OpenGL_ios.h -------------------------------------------------------------------------------- /modules/juce_opengl/native/juce_OpenGL_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/native/juce_OpenGL_linux.h -------------------------------------------------------------------------------- /modules/juce_opengl/native/juce_OpenGL_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/native/juce_OpenGL_mac.h -------------------------------------------------------------------------------- /modules/juce_opengl/opengl/juce_OpenGLContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/opengl/juce_OpenGLContext.h -------------------------------------------------------------------------------- /modules/juce_opengl/opengl/juce_OpenGLHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/opengl/juce_OpenGLHelpers.h -------------------------------------------------------------------------------- /modules/juce_opengl/opengl/juce_OpenGLImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/opengl/juce_OpenGLImage.cpp -------------------------------------------------------------------------------- /modules/juce_opengl/opengl/juce_OpenGLImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/opengl/juce_OpenGLImage.h -------------------------------------------------------------------------------- /modules/juce_opengl/opengl/juce_OpenGLTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/opengl/juce_OpenGLTexture.h -------------------------------------------------------------------------------- /modules/juce_opengl/opengl/juce_gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/opengl/juce_gl.cpp -------------------------------------------------------------------------------- /modules/juce_opengl/opengl/juce_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/opengl/juce_gl.h -------------------------------------------------------------------------------- /modules/juce_opengl/opengl/juce_gles2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/opengl/juce_gles2.cpp -------------------------------------------------------------------------------- /modules/juce_opengl/opengl/juce_gles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/opengl/juce_gles2.h -------------------------------------------------------------------------------- /modules/juce_opengl/opengl/juce_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/opengl/juce_khrplatform.h -------------------------------------------------------------------------------- /modules/juce_opengl/opengl/juce_wgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_opengl/opengl/juce_wgl.h -------------------------------------------------------------------------------- /modules/juce_osc/juce_osc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_osc/juce_osc.cpp -------------------------------------------------------------------------------- /modules/juce_osc/juce_osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_osc/juce_osc.h -------------------------------------------------------------------------------- /modules/juce_osc/osc/juce_OSCAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_osc/osc/juce_OSCAddress.cpp -------------------------------------------------------------------------------- /modules/juce_osc/osc/juce_OSCAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_osc/osc/juce_OSCAddress.h -------------------------------------------------------------------------------- /modules/juce_osc/osc/juce_OSCArgument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_osc/osc/juce_OSCArgument.cpp -------------------------------------------------------------------------------- /modules/juce_osc/osc/juce_OSCArgument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_osc/osc/juce_OSCArgument.h -------------------------------------------------------------------------------- /modules/juce_osc/osc/juce_OSCBundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_osc/osc/juce_OSCBundle.cpp -------------------------------------------------------------------------------- /modules/juce_osc/osc/juce_OSCBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_osc/osc/juce_OSCBundle.h -------------------------------------------------------------------------------- /modules/juce_osc/osc/juce_OSCMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_osc/osc/juce_OSCMessage.cpp -------------------------------------------------------------------------------- /modules/juce_osc/osc/juce_OSCMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_osc/osc/juce_OSCMessage.h -------------------------------------------------------------------------------- /modules/juce_osc/osc/juce_OSCReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_osc/osc/juce_OSCReceiver.cpp -------------------------------------------------------------------------------- /modules/juce_osc/osc/juce_OSCReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_osc/osc/juce_OSCReceiver.h -------------------------------------------------------------------------------- /modules/juce_osc/osc/juce_OSCSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_osc/osc/juce_OSCSender.cpp -------------------------------------------------------------------------------- /modules/juce_osc/osc/juce_OSCSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_osc/osc/juce_OSCSender.h -------------------------------------------------------------------------------- /modules/juce_osc/osc/juce_OSCTimeTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_osc/osc/juce_OSCTimeTag.cpp -------------------------------------------------------------------------------- /modules/juce_osc/osc/juce_OSCTimeTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_osc/osc/juce_OSCTimeTag.h -------------------------------------------------------------------------------- /modules/juce_osc/osc/juce_OSCTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_osc/osc/juce_OSCTypes.cpp -------------------------------------------------------------------------------- /modules/juce_osc/osc/juce_OSCTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_osc/osc/juce_OSCTypes.h -------------------------------------------------------------------------------- /modules/juce_video/capture/juce_CameraDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_video/capture/juce_CameraDevice.h -------------------------------------------------------------------------------- /modules/juce_video/juce_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_video/juce_video.cpp -------------------------------------------------------------------------------- /modules/juce_video/juce_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_video/juce_video.h -------------------------------------------------------------------------------- /modules/juce_video/juce_video.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_video/juce_video.mm -------------------------------------------------------------------------------- /modules/juce_video/native/juce_Video_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_video/native/juce_Video_android.h -------------------------------------------------------------------------------- /modules/juce_video/native/juce_Video_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_video/native/juce_Video_mac.h -------------------------------------------------------------------------------- /modules/juce_video/native/juce_Video_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DISTRHO/JUCE/HEAD/modules/juce_video/native/juce_Video_windows.h --------------------------------------------------------------------------------