├── .DS_Store ├── .gitignore ├── Images ├── Fader.png ├── Knob_64.png ├── adder.png ├── adsr.png ├── apicon.png ├── appicon.psd ├── audiorecorder.png ├── auxmodule.png ├── backward-solid.png ├── chorus.png ├── circle-solid.png ├── clock.png ├── close.png ├── delete.png ├── display.png ├── divider.png ├── fast-backward-solid.png ├── fast-forward-solid.png ├── forward-solid.png ├── hp.png ├── icons.psd ├── infinity.png ├── inverter.png ├── knob.png ├── led_off.png ├── led_on.png ├── lock.png ├── logic_and.png ├── logic_not.png ├── logic_or.png ├── lp.png ├── magnitue.png ├── merge.png ├── micro.png ├── midiin.png ├── midiout.png ├── mixer.png ├── mixer_128px.png ├── module.png ├── multiplier.png ├── new.png ├── note.png ├── open.png ├── p2f.png ├── pause-solid.png ├── play-solid.png ├── plugin.png ├── pulse.png ├── random.png ├── record.png ├── record_active.png ├── redo.png ├── round_button.jpg ├── round_button.png ├── round_button_pushed.png ├── sampler.png ├── save.png ├── saw.png ├── sawtooth.png ├── scope.png ├── sequence.png ├── settings.png ├── sine.png ├── snapshot.png ├── speaker.png ├── stereodelay.png ├── stop.png ├── synthlab.png ├── transform.png ├── tri.png ├── undo.png ├── unlock.png ├── vector.png └── whitenoise.png ├── JUCE ├── .github │ └── ISSUE_TEMPLATE.txt ├── .gitignore ├── .gitlab-ci.yml ├── BREAKING-CHANGES.txt ├── CMakeLists.txt ├── ChangeList.txt ├── LICENSE.md ├── README.md ├── docs │ ├── CMake API.md │ ├── JUCE Module Format.md │ ├── Linux Dependencies.md │ ├── README.md │ └── doxygen │ │ ├── Doxyfile │ │ ├── Makefile │ │ ├── make.bat │ │ └── process_source_files.py ├── examples │ ├── Assets │ │ ├── AudioLiveScrollingDisplay.h │ │ ├── Box2DTests │ │ │ ├── AddPair.h │ │ │ ├── ApplyForce.h │ │ │ ├── BodyTypes.h │ │ │ ├── Breakable.h │ │ │ ├── Bridge.h │ │ │ ├── BulletTest.h │ │ │ ├── Cantilever.h │ │ │ ├── Car.h │ │ │ ├── Chain.h │ │ │ ├── CharacterCollision.h │ │ │ ├── CollisionFiltering.h │ │ │ ├── CollisionProcessing.h │ │ │ ├── CompoundShapes.h │ │ │ ├── Confined.h │ │ │ ├── ContinuousTest.h │ │ │ ├── DistanceTest.h │ │ │ ├── Dominos.h │ │ │ ├── DumpShell.h │ │ │ ├── DynamicTreeTest.h │ │ │ ├── EdgeShapes.h │ │ │ ├── EdgeTest.h │ │ │ ├── Gears.h │ │ │ ├── OneSidedPlatform.h │ │ │ ├── Pinball.h │ │ │ ├── PolyCollision.h │ │ │ ├── PolyShapes.h │ │ │ ├── Prismatic.h │ │ │ ├── Pulleys.h │ │ │ ├── Pyramid.h │ │ │ ├── RayCast.h │ │ │ ├── Revolute.h │ │ │ ├── Rope.h │ │ │ ├── RopeJoint.h │ │ │ ├── SensorTest.h │ │ │ ├── ShapeEditing.h │ │ │ ├── SliderCrank.h │ │ │ ├── SphereStack.h │ │ │ ├── TestEntries.cpp │ │ │ ├── TheoJansen.h │ │ │ ├── Tiles.h │ │ │ ├── TimeOfImpact.h │ │ │ ├── Tumbler.h │ │ │ ├── VaryingFriction.h │ │ │ ├── VaryingRestitution.h │ │ │ ├── VerticalStack.h │ │ │ └── Web.h │ │ ├── DSPDemos_Common.h │ │ ├── DemoUtilities.h │ │ ├── Notifications │ │ │ ├── images │ │ │ │ ├── ic_stat_name.png │ │ │ │ ├── ic_stat_name10.png │ │ │ │ ├── ic_stat_name2.png │ │ │ │ ├── ic_stat_name3.png │ │ │ │ ├── ic_stat_name4.png │ │ │ │ ├── ic_stat_name5.png │ │ │ │ ├── ic_stat_name6.png │ │ │ │ ├── ic_stat_name7.png │ │ │ │ ├── ic_stat_name8.png │ │ │ │ └── ic_stat_name9.png │ │ │ └── sounds │ │ │ │ ├── demonstrative.caf │ │ │ │ ├── demonstrative.mp3 │ │ │ │ ├── isntit.caf │ │ │ │ ├── isntit.mp3 │ │ │ │ ├── jinglebellssms.caf │ │ │ │ ├── jinglebellssms.mp3 │ │ │ │ ├── served.caf │ │ │ │ ├── served.mp3 │ │ │ │ ├── solemn.caf │ │ │ │ └── solemn.mp3 │ │ ├── Purchases │ │ │ ├── Ed.png │ │ │ ├── Ed0.ogg │ │ │ ├── Ed1.ogg │ │ │ ├── Ed2.ogg │ │ │ ├── Fabian.png │ │ │ ├── Fabian0.ogg │ │ │ ├── Fabian1.ogg │ │ │ ├── Fabian2.ogg │ │ │ ├── JB.png │ │ │ ├── JB0.ogg │ │ │ ├── JB1.ogg │ │ │ ├── JB2.ogg │ │ │ ├── Jules.png │ │ │ ├── Jules0.ogg │ │ │ ├── Jules1.ogg │ │ │ ├── Jules2.ogg │ │ │ ├── Lukasz.png │ │ │ ├── Lukasz0.ogg │ │ │ ├── Lukasz1.ogg │ │ │ ├── Lukasz2.ogg │ │ │ ├── Robot.png │ │ │ ├── Robot0.ogg │ │ │ ├── Robot1.ogg │ │ │ ├── Robot2.ogg │ │ │ └── icon.png │ │ ├── Signing │ │ │ ├── InAppPurchase.keystore │ │ │ └── README.txt │ │ ├── WavefrontObjParser.h │ │ ├── cassette_recorder.wav │ │ ├── cello.wav │ │ ├── demo table data.xml │ │ ├── google-services.json │ │ ├── guitar_amp.wav │ │ ├── icons.zip │ │ ├── juce_icon.png │ │ ├── juce_icon_template.png │ │ ├── juce_module_info │ │ ├── portmeirion.jpg │ │ ├── power.png │ │ ├── proaudio.path │ │ ├── reverb_ir.wav │ │ ├── singing.ogg │ │ ├── teapot.obj │ │ ├── tile_background.png │ │ └── treedemo.xml │ ├── Audio │ │ ├── AudioAppDemo.h │ │ ├── AudioLatencyDemo.h │ │ ├── AudioPlaybackDemo.h │ │ ├── AudioRecordingDemo.h │ │ ├── AudioSettingsDemo.h │ │ ├── AudioSynthesiserDemo.h │ │ ├── CMakeLists.txt │ │ ├── MPEDemo.h │ │ ├── MidiDemo.h │ │ ├── PluckedStringsDemo.h │ │ └── SimpleFFTDemo.h │ ├── BLOCKS │ │ ├── BlocksDrawingDemo.h │ │ ├── BlocksMonitorDemo.h │ │ ├── BlocksSynthDemo.h │ │ └── CMakeLists.txt │ ├── CMake │ │ ├── AudioPlugin │ │ │ ├── CMakeLists.txt │ │ │ ├── PluginEditor.cpp │ │ │ ├── PluginEditor.h │ │ │ ├── PluginProcessor.cpp │ │ │ └── PluginProcessor.h │ │ ├── CMakeLists.txt │ │ ├── ConsoleApp │ │ │ ├── CMakeLists.txt │ │ │ └── Main.cpp │ │ └── GuiApp │ │ │ ├── CMakeLists.txt │ │ │ ├── Main.cpp │ │ │ ├── MainComponent.cpp │ │ │ └── MainComponent.h │ ├── CMakeLists.txt │ ├── DSP │ │ ├── CMakeLists.txt │ │ ├── ConvolutionDemo.h │ │ ├── FIRFilterDemo.h │ │ ├── GainDemo.h │ │ ├── IIRFilterDemo.h │ │ ├── OscillatorDemo.h │ │ ├── OverdriveDemo.h │ │ ├── SIMDRegisterDemo.h │ │ ├── StateVariableFilterDemo.h │ │ └── WaveShaperTanhDemo.h │ ├── DemoRunner │ │ ├── Builds │ │ │ ├── Android │ │ │ │ ├── app │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── build.gradle │ │ │ │ │ └── src │ │ │ │ │ │ ├── debug │ │ │ │ │ │ └── res │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── string.xml │ │ │ │ │ │ ├── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ ├── AudioLiveScrollingDisplay.h │ │ │ │ │ │ │ ├── Box2DTests │ │ │ │ │ │ │ │ ├── AddPair.h │ │ │ │ │ │ │ │ ├── ApplyForce.h │ │ │ │ │ │ │ │ ├── BodyTypes.h │ │ │ │ │ │ │ │ ├── Breakable.h │ │ │ │ │ │ │ │ ├── Bridge.h │ │ │ │ │ │ │ │ ├── BulletTest.h │ │ │ │ │ │ │ │ ├── Cantilever.h │ │ │ │ │ │ │ │ ├── Car.h │ │ │ │ │ │ │ │ ├── Chain.h │ │ │ │ │ │ │ │ ├── CharacterCollision.h │ │ │ │ │ │ │ │ ├── CollisionFiltering.h │ │ │ │ │ │ │ │ ├── CollisionProcessing.h │ │ │ │ │ │ │ │ ├── CompoundShapes.h │ │ │ │ │ │ │ │ ├── Confined.h │ │ │ │ │ │ │ │ ├── ContinuousTest.h │ │ │ │ │ │ │ │ ├── DistanceTest.h │ │ │ │ │ │ │ │ ├── Dominos.h │ │ │ │ │ │ │ │ ├── DumpShell.h │ │ │ │ │ │ │ │ ├── DynamicTreeTest.h │ │ │ │ │ │ │ │ ├── EdgeShapes.h │ │ │ │ │ │ │ │ ├── EdgeTest.h │ │ │ │ │ │ │ │ ├── Gears.h │ │ │ │ │ │ │ │ ├── OneSidedPlatform.h │ │ │ │ │ │ │ │ ├── Pinball.h │ │ │ │ │ │ │ │ ├── PolyCollision.h │ │ │ │ │ │ │ │ ├── PolyShapes.h │ │ │ │ │ │ │ │ ├── Prismatic.h │ │ │ │ │ │ │ │ ├── Pulleys.h │ │ │ │ │ │ │ │ ├── Pyramid.h │ │ │ │ │ │ │ │ ├── RayCast.h │ │ │ │ │ │ │ │ ├── Revolute.h │ │ │ │ │ │ │ │ ├── Rope.h │ │ │ │ │ │ │ │ ├── RopeJoint.h │ │ │ │ │ │ │ │ ├── SensorTest.h │ │ │ │ │ │ │ │ ├── ShapeEditing.h │ │ │ │ │ │ │ │ ├── SliderCrank.h │ │ │ │ │ │ │ │ ├── SphereStack.h │ │ │ │ │ │ │ │ ├── TestEntries.cpp │ │ │ │ │ │ │ │ ├── TheoJansen.h │ │ │ │ │ │ │ │ ├── Tiles.h │ │ │ │ │ │ │ │ ├── TimeOfImpact.h │ │ │ │ │ │ │ │ ├── Tumbler.h │ │ │ │ │ │ │ │ ├── VaryingFriction.h │ │ │ │ │ │ │ │ ├── VaryingRestitution.h │ │ │ │ │ │ │ │ ├── VerticalStack.h │ │ │ │ │ │ │ │ └── Web.h │ │ │ │ │ │ │ ├── DSPDemos_Common.h │ │ │ │ │ │ │ ├── DemoUtilities.h │ │ │ │ │ │ │ ├── Notifications │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ │ ├── ic_stat_name.png │ │ │ │ │ │ │ │ │ ├── ic_stat_name10.png │ │ │ │ │ │ │ │ │ ├── ic_stat_name2.png │ │ │ │ │ │ │ │ │ ├── ic_stat_name3.png │ │ │ │ │ │ │ │ │ ├── ic_stat_name4.png │ │ │ │ │ │ │ │ │ ├── ic_stat_name5.png │ │ │ │ │ │ │ │ │ ├── ic_stat_name6.png │ │ │ │ │ │ │ │ │ ├── ic_stat_name7.png │ │ │ │ │ │ │ │ │ ├── ic_stat_name8.png │ │ │ │ │ │ │ │ │ └── ic_stat_name9.png │ │ │ │ │ │ │ │ └── sounds │ │ │ │ │ │ │ │ │ ├── demonstrative.caf │ │ │ │ │ │ │ │ │ ├── demonstrative.mp3 │ │ │ │ │ │ │ │ │ ├── isntit.caf │ │ │ │ │ │ │ │ │ ├── isntit.mp3 │ │ │ │ │ │ │ │ │ ├── jinglebellssms.caf │ │ │ │ │ │ │ │ │ ├── jinglebellssms.mp3 │ │ │ │ │ │ │ │ │ ├── served.caf │ │ │ │ │ │ │ │ │ ├── served.mp3 │ │ │ │ │ │ │ │ │ ├── solemn.caf │ │ │ │ │ │ │ │ │ └── solemn.mp3 │ │ │ │ │ │ │ ├── Purchases │ │ │ │ │ │ │ │ ├── Ed.png │ │ │ │ │ │ │ │ ├── Ed0.ogg │ │ │ │ │ │ │ │ ├── Ed1.ogg │ │ │ │ │ │ │ │ ├── Ed2.ogg │ │ │ │ │ │ │ │ ├── Fabian.png │ │ │ │ │ │ │ │ ├── Fabian0.ogg │ │ │ │ │ │ │ │ ├── Fabian1.ogg │ │ │ │ │ │ │ │ ├── Fabian2.ogg │ │ │ │ │ │ │ │ ├── JB.png │ │ │ │ │ │ │ │ ├── JB0.ogg │ │ │ │ │ │ │ │ ├── JB1.ogg │ │ │ │ │ │ │ │ ├── JB2.ogg │ │ │ │ │ │ │ │ ├── Jules.png │ │ │ │ │ │ │ │ ├── Jules0.ogg │ │ │ │ │ │ │ │ ├── Jules1.ogg │ │ │ │ │ │ │ │ ├── Jules2.ogg │ │ │ │ │ │ │ │ ├── Lukasz.png │ │ │ │ │ │ │ │ ├── Lukasz0.ogg │ │ │ │ │ │ │ │ ├── Lukasz1.ogg │ │ │ │ │ │ │ │ ├── Lukasz2.ogg │ │ │ │ │ │ │ │ ├── Robot.png │ │ │ │ │ │ │ │ ├── Robot0.ogg │ │ │ │ │ │ │ │ ├── Robot1.ogg │ │ │ │ │ │ │ │ ├── Robot2.ogg │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ ├── Signing │ │ │ │ │ │ │ │ ├── InAppPurchase.keystore │ │ │ │ │ │ │ │ └── README.txt │ │ │ │ │ │ │ ├── WavefrontObjParser.h │ │ │ │ │ │ │ ├── cassette_recorder.wav │ │ │ │ │ │ │ ├── cello.wav │ │ │ │ │ │ │ ├── demo table data.xml │ │ │ │ │ │ │ ├── google-services.json │ │ │ │ │ │ │ ├── guitar_amp.wav │ │ │ │ │ │ │ ├── icons.zip │ │ │ │ │ │ │ ├── juce_icon.png │ │ │ │ │ │ │ ├── juce_icon_template.png │ │ │ │ │ │ │ ├── juce_module_info │ │ │ │ │ │ │ ├── portmeirion.jpg │ │ │ │ │ │ │ ├── power.png │ │ │ │ │ │ │ ├── proaudio.path │ │ │ │ │ │ │ ├── reverb_ir.wav │ │ │ │ │ │ │ ├── singing.ogg │ │ │ │ │ │ │ ├── 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 │ │ │ ├── VisualStudio2015 │ │ │ │ ├── DemoRunner.sln │ │ │ │ ├── DemoRunner_App.vcxproj │ │ │ │ ├── DemoRunner_App.vcxproj.filters │ │ │ │ ├── icon.ico │ │ │ │ └── resources.rc │ │ │ ├── VisualStudio2017 │ │ │ │ ├── DemoRunner.sln │ │ │ │ ├── DemoRunner_App.vcxproj │ │ │ │ ├── DemoRunner_App.vcxproj.filters │ │ │ │ ├── icon.ico │ │ │ │ └── resources.rc │ │ │ ├── VisualStudio2019 │ │ │ │ ├── DemoRunner.sln │ │ │ │ ├── DemoRunner_App.vcxproj │ │ │ │ ├── DemoRunner_App.vcxproj.filters │ │ │ │ ├── icon.ico │ │ │ │ └── resources.rc │ │ │ └── iOS │ │ │ │ ├── App.entitlements │ │ │ │ ├── DemoRunner.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── DemoRunner │ │ │ │ └── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-29.png │ │ │ │ │ ├── Icon-29@2x.png │ │ │ │ │ ├── Icon-29@3x.png │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ ├── Icon-72.png │ │ │ │ │ ├── Icon-72@2x.png │ │ │ │ │ ├── Icon-76.png │ │ │ │ │ ├── Icon-76@2x.png │ │ │ │ │ ├── Icon-83.5@2x.png │ │ │ │ │ ├── Icon-@3x.png │ │ │ │ │ ├── Icon-AppStore-1024.png │ │ │ │ │ ├── Icon-Notification-20@2x.png │ │ │ │ │ ├── Icon-Notification-20@3x.png │ │ │ │ │ ├── Icon-Notifications-20.png │ │ │ │ │ ├── Icon-Notifications-20@2x.png │ │ │ │ │ ├── Icon-Small-1.png │ │ │ │ │ ├── Icon-Small-50.png │ │ │ │ │ ├── Icon-Small-50@2x.png │ │ │ │ │ ├── Icon-Small@2x-1.png │ │ │ │ │ ├── Icon-Spotlight-40.png │ │ │ │ │ ├── Icon-Spotlight-40@2x-1.png │ │ │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ │ │ ├── Icon-Spotlight-40@3x.png │ │ │ │ │ ├── Icon.png │ │ │ │ │ └── Icon@2x.png │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage-ipad-landscape-1x.png │ │ │ │ │ ├── LaunchImage-ipad-landscape-2x.png │ │ │ │ │ ├── LaunchImage-ipad-portrait-1x.png │ │ │ │ │ ├── LaunchImage-ipad-portrait-2x.png │ │ │ │ │ ├── LaunchImage-iphone-2x.png │ │ │ │ │ └── LaunchImage-iphone-retina4.png │ │ │ │ ├── Icon.icns │ │ │ │ ├── Info-App.plist │ │ │ │ └── LaunchScreen.storyboard │ │ ├── CMakeLists.txt │ │ ├── DemoRunner.jucer │ │ ├── JuceLibraryCode │ │ │ ├── JuceHeader.h │ │ │ ├── ReadMe.txt │ │ │ ├── include_juce_analytics.cpp │ │ │ ├── include_juce_audio_basics.cpp │ │ │ ├── include_juce_audio_basics.mm │ │ │ ├── include_juce_audio_devices.cpp │ │ │ ├── include_juce_audio_devices.mm │ │ │ ├── include_juce_audio_formats.cpp │ │ │ ├── include_juce_audio_formats.mm │ │ │ ├── include_juce_audio_processors.cpp │ │ │ ├── include_juce_audio_processors.mm │ │ │ ├── include_juce_audio_utils.cpp │ │ │ ├── include_juce_audio_utils.mm │ │ │ ├── include_juce_blocks_basics.cpp │ │ │ ├── include_juce_box2d.cpp │ │ │ ├── include_juce_core.cpp │ │ │ ├── include_juce_core.mm │ │ │ ├── include_juce_cryptography.cpp │ │ │ ├── include_juce_cryptography.mm │ │ │ ├── include_juce_data_structures.cpp │ │ │ ├── include_juce_data_structures.mm │ │ │ ├── include_juce_dsp.cpp │ │ │ ├── include_juce_dsp.mm │ │ │ ├── include_juce_events.cpp │ │ │ ├── include_juce_events.mm │ │ │ ├── include_juce_graphics.cpp │ │ │ ├── include_juce_graphics.mm │ │ │ ├── include_juce_gui_basics.cpp │ │ │ ├── include_juce_gui_basics.mm │ │ │ ├── include_juce_gui_extra.cpp │ │ │ ├── include_juce_gui_extra.mm │ │ │ ├── include_juce_opengl.cpp │ │ │ ├── include_juce_opengl.mm │ │ │ ├── include_juce_osc.cpp │ │ │ ├── include_juce_product_unlocking.cpp │ │ │ ├── include_juce_product_unlocking.mm │ │ │ ├── include_juce_video.cpp │ │ │ └── include_juce_video.mm │ │ └── Source │ │ │ ├── Demos │ │ │ ├── DemoPIPs1.cpp │ │ │ ├── DemoPIPs2.cpp │ │ │ ├── IntroScreen.h │ │ │ ├── JUCEDemos.cpp │ │ │ └── JUCEDemos.h │ │ │ ├── JUCEAppIcon.png │ │ │ ├── Main.cpp │ │ │ └── UI │ │ │ ├── DemoContentComponent.cpp │ │ │ ├── DemoContentComponent.h │ │ │ ├── MainComponent.cpp │ │ │ ├── MainComponent.h │ │ │ └── SettingsContent.h │ ├── GUI │ │ ├── AnimationAppDemo.h │ │ ├── AnimationDemo.h │ │ ├── BouncingBallWavetableDemo.h │ │ ├── CMakeLists.txt │ │ ├── CameraDemo.h │ │ ├── CodeEditorDemo.h │ │ ├── ComponentDemo.h │ │ ├── ComponentTransformsDemo.h │ │ ├── DialogsDemo.h │ │ ├── FlexBoxDemo.h │ │ ├── FontsDemo.h │ │ ├── GraphicsDemo.h │ │ ├── GridDemo.h │ │ ├── HelloWorldDemo.h │ │ ├── ImagesDemo.h │ │ ├── KeyMappingsDemo.h │ │ ├── LookAndFeelDemo.h │ │ ├── MDIDemo.h │ │ ├── MenusDemo.h │ │ ├── MultiTouchDemo.h │ │ ├── OpenGLAppDemo.h │ │ ├── OpenGLDemo.h │ │ ├── OpenGLDemo2D.h │ │ ├── PropertiesDemo.h │ │ ├── VideoDemo.h │ │ ├── WebBrowserDemo.h │ │ ├── WidgetsDemo.h │ │ └── WindowsDemo.h │ ├── Plugins │ │ ├── AUv3SynthPluginDemo.h │ │ ├── ArpeggiatorPluginDemo.h │ │ ├── AudioPluginDemo.h │ │ ├── CMakeLists.txt │ │ ├── DSPModulePluginDemo.h │ │ ├── GainPluginDemo.h │ │ ├── InterAppAudioEffectPluginDemo.h │ │ ├── MidiLoggerPluginDemo.h │ │ ├── MultiOutSynthPluginDemo.h │ │ ├── NoiseGatePluginDemo.h │ │ ├── SamplerPluginDemo.h │ │ └── SurroundPluginDemo.h │ └── Utilities │ │ ├── AnalyticsCollectionDemo.h │ │ ├── Box2DDemo.h │ │ ├── CMakeLists.txt │ │ ├── ChildProcessDemo.h │ │ ├── CryptographyDemo.h │ │ ├── InAppPurchasesDemo.h │ │ ├── JavaScriptDemo.h │ │ ├── LiveConstantDemo.h │ │ ├── MultithreadingDemo.h │ │ ├── NetworkingDemo.h │ │ ├── OSCDemo.h │ │ ├── PushNotificationsDemo.h │ │ ├── SystemInfoDemo.h │ │ ├── TimersAndEventsDemo.h │ │ ├── UnitTestsDemo.h │ │ ├── ValueTreesDemo.h │ │ └── XMLandJSONDemo.h ├── extras │ ├── AudioPerformanceTest │ │ ├── AudioPerformanceTest.jucer │ │ ├── Builds │ │ │ ├── Android │ │ │ │ ├── app │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── build.gradle │ │ │ │ │ └── src │ │ │ │ │ │ ├── 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 │ │ │ ├── VisualStudio2019 │ │ │ │ ├── AudioPerformanceTest.sln │ │ │ │ ├── AudioPerformanceTest_App.vcxproj │ │ │ │ ├── AudioPerformanceTest_App.vcxproj.filters │ │ │ │ └── resources.rc │ │ │ └── iOS │ │ │ │ ├── AudioPerformanceTest.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── AudioPerformanceTest │ │ │ │ └── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage-ipad-landscape-1x.png │ │ │ │ │ ├── LaunchImage-ipad-landscape-2x.png │ │ │ │ │ ├── LaunchImage-ipad-portrait-1x.png │ │ │ │ │ ├── LaunchImage-ipad-portrait-2x.png │ │ │ │ │ ├── LaunchImage-iphone-2x.png │ │ │ │ │ └── LaunchImage-iphone-retina4.png │ │ │ │ ├── Info-App.plist │ │ │ │ └── LaunchScreen.storyboard │ │ ├── CMakeLists.txt │ │ ├── JuceLibraryCode │ │ │ ├── JuceHeader.h │ │ │ ├── ReadMe.txt │ │ │ ├── include_juce_audio_basics.cpp │ │ │ ├── include_juce_audio_basics.mm │ │ │ ├── include_juce_audio_devices.cpp │ │ │ ├── include_juce_audio_devices.mm │ │ │ ├── include_juce_audio_formats.cpp │ │ │ ├── include_juce_audio_formats.mm │ │ │ ├── include_juce_audio_processors.cpp │ │ │ ├── include_juce_audio_processors.mm │ │ │ ├── include_juce_audio_utils.cpp │ │ │ ├── include_juce_audio_utils.mm │ │ │ ├── include_juce_core.cpp │ │ │ ├── include_juce_core.mm │ │ │ ├── include_juce_data_structures.cpp │ │ │ ├── include_juce_data_structures.mm │ │ │ ├── include_juce_events.cpp │ │ │ ├── include_juce_events.mm │ │ │ ├── include_juce_graphics.cpp │ │ │ ├── include_juce_graphics.mm │ │ │ ├── include_juce_gui_basics.cpp │ │ │ ├── include_juce_gui_basics.mm │ │ │ ├── include_juce_gui_extra.cpp │ │ │ └── include_juce_gui_extra.mm │ │ └── Source │ │ │ ├── Main.cpp │ │ │ └── MainComponent.h │ ├── AudioPluginHost │ │ ├── AudioPluginHost.jucer │ │ ├── Builds │ │ │ ├── Android │ │ │ │ ├── app │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── build.gradle │ │ │ │ │ └── src │ │ │ │ │ │ ├── debug │ │ │ │ │ │ └── res │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── string.xml │ │ │ │ │ │ ├── main │ │ │ │ │ │ ├── AndroidManifest.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 │ │ │ ├── VisualStudio2015 │ │ │ │ ├── AudioPluginHost.sln │ │ │ │ ├── AudioPluginHost_App.vcxproj │ │ │ │ ├── AudioPluginHost_App.vcxproj.filters │ │ │ │ ├── icon.ico │ │ │ │ └── resources.rc │ │ │ ├── VisualStudio2017 │ │ │ │ ├── AudioPluginHost.sln │ │ │ │ ├── AudioPluginHost_App.vcxproj │ │ │ │ ├── AudioPluginHost_App.vcxproj.filters │ │ │ │ ├── icon.ico │ │ │ │ └── resources.rc │ │ │ ├── VisualStudio2019 │ │ │ │ ├── AudioPluginHost.sln │ │ │ │ ├── AudioPluginHost_App.vcxproj │ │ │ │ ├── AudioPluginHost_App.vcxproj.filters │ │ │ │ ├── icon.ico │ │ │ │ └── resources.rc │ │ │ └── iOS │ │ │ │ ├── AudioPluginHost.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── AudioPluginHost │ │ │ │ └── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-29.png │ │ │ │ │ ├── Icon-29@2x.png │ │ │ │ │ ├── Icon-29@3x.png │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ ├── Icon-72.png │ │ │ │ │ ├── Icon-72@2x.png │ │ │ │ │ ├── Icon-76.png │ │ │ │ │ ├── Icon-76@2x.png │ │ │ │ │ ├── Icon-83.5@2x.png │ │ │ │ │ ├── Icon-@3x.png │ │ │ │ │ ├── Icon-AppStore-1024.png │ │ │ │ │ ├── Icon-Notification-20@2x.png │ │ │ │ │ ├── Icon-Notification-20@3x.png │ │ │ │ │ ├── Icon-Notifications-20.png │ │ │ │ │ ├── Icon-Notifications-20@2x.png │ │ │ │ │ ├── Icon-Small-1.png │ │ │ │ │ ├── Icon-Small-50.png │ │ │ │ │ ├── Icon-Small-50@2x.png │ │ │ │ │ ├── Icon-Small@2x-1.png │ │ │ │ │ ├── Icon-Spotlight-40.png │ │ │ │ │ ├── Icon-Spotlight-40@2x-1.png │ │ │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ │ │ ├── Icon-Spotlight-40@3x.png │ │ │ │ │ ├── Icon.png │ │ │ │ │ └── Icon@2x.png │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage-ipad-landscape-1x.png │ │ │ │ │ ├── LaunchImage-ipad-landscape-2x.png │ │ │ │ │ ├── LaunchImage-ipad-portrait-1x.png │ │ │ │ │ ├── LaunchImage-ipad-portrait-2x.png │ │ │ │ │ ├── LaunchImage-iphone-2x.png │ │ │ │ │ └── LaunchImage-iphone-retina4.png │ │ │ │ ├── Icon.icns │ │ │ │ ├── Info-App.plist │ │ │ │ └── LaunchScreen.storyboard │ │ ├── CMakeLists.txt │ │ ├── JuceLibraryCode │ │ │ ├── BinaryData.cpp │ │ │ ├── BinaryData.h │ │ │ ├── JuceHeader.h │ │ │ ├── ReadMe.txt │ │ │ ├── include_juce_audio_basics.cpp │ │ │ ├── include_juce_audio_basics.mm │ │ │ ├── include_juce_audio_devices.cpp │ │ │ ├── include_juce_audio_devices.mm │ │ │ ├── include_juce_audio_formats.cpp │ │ │ ├── include_juce_audio_formats.mm │ │ │ ├── include_juce_audio_processors.cpp │ │ │ ├── include_juce_audio_processors.mm │ │ │ ├── include_juce_audio_utils.cpp │ │ │ ├── include_juce_audio_utils.mm │ │ │ ├── include_juce_core.cpp │ │ │ ├── include_juce_core.mm │ │ │ ├── include_juce_cryptography.cpp │ │ │ ├── include_juce_cryptography.mm │ │ │ ├── include_juce_data_structures.cpp │ │ │ ├── include_juce_data_structures.mm │ │ │ ├── include_juce_dsp.cpp │ │ │ ├── include_juce_dsp.mm │ │ │ ├── include_juce_events.cpp │ │ │ ├── include_juce_events.mm │ │ │ ├── include_juce_graphics.cpp │ │ │ ├── include_juce_graphics.mm │ │ │ ├── include_juce_gui_basics.cpp │ │ │ ├── include_juce_gui_basics.mm │ │ │ ├── include_juce_gui_extra.cpp │ │ │ ├── include_juce_gui_extra.mm │ │ │ ├── include_juce_opengl.cpp │ │ │ └── include_juce_opengl.mm │ │ └── Source │ │ │ ├── HostStartup.cpp │ │ │ ├── JUCEAppIcon.png │ │ │ ├── Plugins │ │ │ ├── IOConfigurationWindow.cpp │ │ │ ├── IOConfigurationWindow.h │ │ │ ├── InternalPlugins.cpp │ │ │ ├── InternalPlugins.h │ │ │ ├── PluginGraph.cpp │ │ │ └── PluginGraph.h │ │ │ └── UI │ │ │ ├── GraphEditorPanel.cpp │ │ │ ├── GraphEditorPanel.h │ │ │ ├── MainHostWindow.cpp │ │ │ ├── MainHostWindow.h │ │ │ └── PluginWindow.h │ ├── BLOCKS │ │ ├── Makefile │ │ └── standalone_sdk │ │ │ ├── README.md │ │ │ ├── SDK │ │ │ ├── BlocksHeader.h │ │ │ └── Build │ │ │ │ ├── Linux │ │ │ │ └── Makefile │ │ │ │ ├── MacOS │ │ │ │ └── BLOCKS-SDK.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── Windows │ │ │ │ ├── BLOCKS-SDK.sln │ │ │ │ └── BLOCKS-SDK.vcxproj │ │ │ └── examples │ │ │ └── BlockFinder │ │ │ ├── BlockFinder.cpp │ │ │ ├── BlockFinder.h │ │ │ ├── Linux │ │ │ ├── Makefile │ │ │ └── main.cpp │ │ │ ├── MacOS │ │ │ ├── BlockFinder.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── Makefile │ │ │ └── main.mm │ │ │ └── Windows │ │ │ ├── BlockFinder.sln │ │ │ ├── BlockFinder.vcxproj │ │ │ └── main.cpp │ ├── BinaryBuilder │ │ ├── BinaryBuilder.jucer │ │ ├── Builds │ │ │ ├── LinuxMakefile │ │ │ │ └── Makefile │ │ │ ├── MacOSX │ │ │ │ ├── BinaryBuilder.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── RecentFilesMenuTemplate.nib │ │ │ └── VisualStudio2019 │ │ │ │ ├── BinaryBuilder.sln │ │ │ │ ├── BinaryBuilder_ConsoleApp.vcxproj │ │ │ │ ├── BinaryBuilder_ConsoleApp.vcxproj.filters │ │ │ │ └── resources.rc │ │ ├── CMakeLists.txt │ │ ├── JuceLibraryCode │ │ │ ├── JuceHeader.h │ │ │ ├── ReadMe.txt │ │ │ ├── include_juce_core.cpp │ │ │ └── include_juce_core.mm │ │ └── Source │ │ │ └── Main.cpp │ ├── Build │ │ ├── CMake │ │ │ ├── JUCECheckAtomic.cmake │ │ │ ├── JUCEConfig.cmake.in │ │ │ ├── JUCEHelperTargets.cmake │ │ │ ├── JUCEUtils.cmake │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── PIPAudioProcessor.cpp.in │ │ │ ├── PIPComponent.cpp.in │ │ │ ├── PIPConsole.cpp.in │ │ │ ├── RecentFilesMenuTemplate.nib │ │ │ ├── UnityPluginGUIScript.cs.in │ │ │ ├── copyDir.cmake │ │ │ └── juce_runtime_arch_detection.cpp │ │ ├── CMakeLists.txt │ │ ├── juce_build_tools │ │ │ ├── juce_build_tools.cpp │ │ │ ├── juce_build_tools.h │ │ │ └── utils │ │ │ │ ├── juce_BinaryResourceFile.cpp │ │ │ │ ├── juce_BinaryResourceFile.h │ │ │ │ ├── juce_BuildHelperFunctions.cpp │ │ │ │ ├── juce_BuildHelperFunctions.h │ │ │ │ ├── juce_CppTokeniserFunctions.cpp │ │ │ │ ├── juce_Entitlements.cpp │ │ │ │ ├── juce_Entitlements.h │ │ │ │ ├── juce_Icons.cpp │ │ │ │ ├── juce_Icons.h │ │ │ │ ├── juce_PlistOptions.cpp │ │ │ │ ├── juce_PlistOptions.h │ │ │ │ ├── juce_ProjectType.h │ │ │ │ ├── juce_RelativePath.h │ │ │ │ ├── juce_ResourceFileHelpers.cpp │ │ │ │ ├── juce_ResourceFileHelpers.h │ │ │ │ ├── juce_ResourceRc.cpp │ │ │ │ ├── juce_ResourceRc.h │ │ │ │ ├── juce_VersionNumbers.cpp │ │ │ │ └── juce_VersionNumbers.h │ │ └── juceaide │ │ │ ├── CMakeLists.txt │ │ │ └── Main.cpp │ ├── CMakeLists.txt │ ├── NetworkGraphicsDemo │ │ ├── Builds │ │ │ ├── Android │ │ │ │ ├── app │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── build.gradle │ │ │ │ │ └── src │ │ │ │ │ │ ├── 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 │ │ │ ├── VisualStudio2019 │ │ │ │ ├── NetworkGraphicsDemo.sln │ │ │ │ ├── NetworkGraphicsDemo_App.vcxproj │ │ │ │ ├── NetworkGraphicsDemo_App.vcxproj.filters │ │ │ │ └── resources.rc │ │ │ └── iOS │ │ │ │ ├── Icon.icns │ │ │ │ ├── Info-App.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ ├── NetworkGraphicsDemo.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ └── NetworkGraphicsDemo │ │ │ │ └── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-29.png │ │ │ │ ├── Icon-29@2x.png │ │ │ │ ├── Icon-29@3x.png │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-72.png │ │ │ │ ├── Icon-72@2x.png │ │ │ │ ├── Icon-76.png │ │ │ │ ├── Icon-76@2x.png │ │ │ │ ├── Icon-83.5@2x.png │ │ │ │ ├── Icon-@3x.png │ │ │ │ ├── Icon-AppStore-1024.png │ │ │ │ ├── Icon-Notification-20@2x.png │ │ │ │ ├── Icon-Notification-20@3x.png │ │ │ │ ├── Icon-Notifications-20.png │ │ │ │ ├── Icon-Notifications-20@2x.png │ │ │ │ ├── Icon-Small-1.png │ │ │ │ ├── Icon-Small-50.png │ │ │ │ ├── Icon-Small-50@2x.png │ │ │ │ ├── Icon-Small@2x-1.png │ │ │ │ ├── Icon-Spotlight-40.png │ │ │ │ ├── Icon-Spotlight-40@2x-1.png │ │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ │ ├── Icon-Spotlight-40@3x.png │ │ │ │ ├── Icon.png │ │ │ │ └── Icon@2x.png │ │ │ │ └── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage-ipad-landscape-1x.png │ │ │ │ ├── LaunchImage-ipad-landscape-2x.png │ │ │ │ ├── LaunchImage-ipad-portrait-1x.png │ │ │ │ ├── LaunchImage-ipad-portrait-2x.png │ │ │ │ ├── LaunchImage-iphone-2x.png │ │ │ │ └── LaunchImage-iphone-retina4.png │ │ ├── CMakeLists.txt │ │ ├── JuceLibraryCode │ │ │ ├── BinaryData.cpp │ │ │ ├── BinaryData.h │ │ │ ├── JuceHeader.h │ │ │ ├── ReadMe.txt │ │ │ ├── include_juce_audio_basics.cpp │ │ │ ├── include_juce_audio_basics.mm │ │ │ ├── include_juce_audio_devices.cpp │ │ │ ├── include_juce_audio_devices.mm │ │ │ ├── include_juce_audio_formats.cpp │ │ │ ├── include_juce_audio_formats.mm │ │ │ ├── include_juce_audio_processors.cpp │ │ │ ├── include_juce_audio_processors.mm │ │ │ ├── include_juce_audio_utils.cpp │ │ │ ├── include_juce_audio_utils.mm │ │ │ ├── include_juce_core.cpp │ │ │ ├── include_juce_core.mm │ │ │ ├── include_juce_cryptography.cpp │ │ │ ├── include_juce_cryptography.mm │ │ │ ├── include_juce_data_structures.cpp │ │ │ ├── include_juce_data_structures.mm │ │ │ ├── include_juce_events.cpp │ │ │ ├── include_juce_events.mm │ │ │ ├── include_juce_graphics.cpp │ │ │ ├── include_juce_graphics.mm │ │ │ ├── include_juce_gui_basics.cpp │ │ │ ├── include_juce_gui_basics.mm │ │ │ ├── include_juce_gui_extra.cpp │ │ │ ├── include_juce_gui_extra.mm │ │ │ ├── include_juce_opengl.cpp │ │ │ ├── include_juce_opengl.mm │ │ │ └── include_juce_osc.cpp │ │ ├── NetworkGraphicsDemo.jucer │ │ ├── README.txt │ │ └── Source │ │ │ ├── Demos.h │ │ │ ├── Main.cpp │ │ │ ├── MasterComponent.h │ │ │ ├── SharedCanvas.h │ │ │ ├── SlaveComponent.h │ │ │ └── juce_icon.png │ ├── Projucer │ │ ├── Builds │ │ │ ├── LinuxMakefile │ │ │ │ └── Makefile │ │ │ ├── MacOSX │ │ │ │ ├── Icon.icns │ │ │ │ ├── Info-App.plist │ │ │ │ ├── Projucer.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── RecentFilesMenuTemplate.nib │ │ │ ├── VisualStudio2015 │ │ │ │ ├── Projucer.sln │ │ │ │ ├── Projucer_App.vcxproj │ │ │ │ ├── Projucer_App.vcxproj.filters │ │ │ │ ├── icon.ico │ │ │ │ └── resources.rc │ │ │ ├── VisualStudio2017 │ │ │ │ ├── Projucer.sln │ │ │ │ ├── Projucer_App.vcxproj │ │ │ │ ├── Projucer_App.vcxproj.filters │ │ │ │ ├── icon.ico │ │ │ │ └── resources.rc │ │ │ └── VisualStudio2019 │ │ │ │ ├── Projucer.sln │ │ │ │ ├── Projucer_App.vcxproj │ │ │ │ ├── Projucer_App.vcxproj.filters │ │ │ │ ├── icon.ico │ │ │ │ └── resources.rc │ │ ├── CMakeLists.txt │ │ ├── JuceLibraryCode │ │ │ ├── BinaryData.cpp │ │ │ ├── BinaryData.h │ │ │ ├── JuceHeader.h │ │ │ ├── ReadMe.txt │ │ │ ├── include_juce_build_tools.cpp │ │ │ ├── include_juce_core.cpp │ │ │ ├── include_juce_core.mm │ │ │ ├── include_juce_cryptography.cpp │ │ │ ├── include_juce_cryptography.mm │ │ │ ├── include_juce_data_structures.cpp │ │ │ ├── include_juce_data_structures.mm │ │ │ ├── include_juce_events.cpp │ │ │ ├── include_juce_events.mm │ │ │ ├── include_juce_graphics.cpp │ │ │ ├── include_juce_graphics.mm │ │ │ ├── include_juce_gui_basics.cpp │ │ │ ├── include_juce_gui_basics.mm │ │ │ ├── include_juce_gui_extra.cpp │ │ │ └── include_juce_gui_extra.mm │ │ ├── Projucer.jucer │ │ └── Source │ │ │ ├── Application │ │ │ ├── StartPage │ │ │ │ ├── jucer_ContentComponents.h │ │ │ │ ├── jucer_NewProjectTemplates.h │ │ │ │ ├── jucer_NewProjectWizard.cpp │ │ │ │ ├── jucer_NewProjectWizard.h │ │ │ │ ├── jucer_StartPageComponent.cpp │ │ │ │ ├── jucer_StartPageComponent.h │ │ │ │ └── jucer_StartPageTreeHolder.h │ │ │ ├── UserAccount │ │ │ │ ├── jucer_LicenseController.h │ │ │ │ ├── jucer_LicenseQueryThread.h │ │ │ │ ├── jucer_LicenseState.h │ │ │ │ └── jucer_LoginFormComponent.h │ │ │ ├── Windows │ │ │ │ ├── jucer_AboutWindowComponent.h │ │ │ │ ├── jucer_EditorColourSchemeWindowComponent.h │ │ │ │ ├── jucer_FloatingToolWindow.h │ │ │ │ ├── jucer_GlobalPathsWindowComponent.h │ │ │ │ ├── jucer_PIPCreatorWindowComponent.h │ │ │ │ ├── jucer_SVGPathDataWindowComponent.h │ │ │ │ ├── jucer_TranslationToolWindowComponent.h │ │ │ │ └── jucer_UTF8WindowComponent.h │ │ │ ├── jucer_Application.cpp │ │ │ ├── jucer_Application.h │ │ │ ├── jucer_AutoUpdater.cpp │ │ │ ├── jucer_AutoUpdater.h │ │ │ ├── jucer_CommandIDs.h │ │ │ ├── jucer_CommandLine.cpp │ │ │ ├── jucer_CommandLine.h │ │ │ ├── jucer_CommonHeaders.h │ │ │ ├── jucer_Headers.h │ │ │ ├── jucer_Main.cpp │ │ │ ├── jucer_MainWindow.cpp │ │ │ └── jucer_MainWindow.h │ │ │ ├── BinaryData │ │ │ ├── Icons │ │ │ │ ├── background_logo.svg │ │ │ │ ├── export_android.svg │ │ │ │ ├── export_clion.svg │ │ │ │ ├── export_codeBlocks.svg │ │ │ │ ├── export_linux.svg │ │ │ │ ├── export_visualStudio.svg │ │ │ │ ├── export_xcode.svg │ │ │ │ ├── gpl_logo.svg │ │ │ │ ├── juce-logo-with-text.svg │ │ │ │ ├── juce_icon.png │ │ │ │ ├── wizard_AnimatedApp.svg │ │ │ │ ├── wizard_AudioApp.svg │ │ │ │ ├── wizard_AudioPlugin.svg │ │ │ │ ├── wizard_ConsoleApp.svg │ │ │ │ ├── wizard_DLL.svg │ │ │ │ ├── wizard_GUI.svg │ │ │ │ ├── wizard_Highlight.svg │ │ │ │ ├── wizard_OpenGL.svg │ │ │ │ ├── wizard_Openfile.svg │ │ │ │ └── wizard_StaticLibrary.svg │ │ │ ├── Templates │ │ │ │ ├── jucer_AnimatedComponentSimpleTemplate.h │ │ │ │ ├── jucer_AnimatedComponentTemplate.cpp │ │ │ │ ├── jucer_AnimatedComponentTemplate.h │ │ │ │ ├── jucer_AudioComponentSimpleTemplate.h │ │ │ │ ├── jucer_AudioComponentTemplate.cpp │ │ │ │ ├── jucer_AudioComponentTemplate.h │ │ │ │ ├── jucer_AudioPluginEditorTemplate.cpp │ │ │ │ ├── jucer_AudioPluginEditorTemplate.h │ │ │ │ ├── jucer_AudioPluginFilterTemplate.cpp │ │ │ │ ├── jucer_AudioPluginFilterTemplate.h │ │ │ │ ├── jucer_ComponentTemplate.cpp │ │ │ │ ├── jucer_ComponentTemplate.h │ │ │ │ ├── jucer_ContentCompSimpleTemplate.h │ │ │ │ ├── jucer_ContentCompTemplate.cpp │ │ │ │ ├── jucer_ContentCompTemplate.h │ │ │ │ ├── jucer_InlineComponentTemplate.h │ │ │ │ ├── jucer_MainConsoleAppTemplate.cpp │ │ │ │ ├── jucer_MainTemplate_NoWindow.cpp │ │ │ │ ├── jucer_MainTemplate_Window.cpp │ │ │ │ ├── jucer_NewComponentTemplate.cpp │ │ │ │ ├── jucer_NewComponentTemplate.h │ │ │ │ ├── jucer_NewCppFileTemplate.cpp │ │ │ │ ├── jucer_NewCppFileTemplate.h │ │ │ │ ├── jucer_NewInlineComponentTemplate.h │ │ │ │ ├── jucer_OpenGLComponentSimpleTemplate.h │ │ │ │ ├── jucer_OpenGLComponentTemplate.cpp │ │ │ │ ├── jucer_OpenGLComponentTemplate.h │ │ │ │ ├── jucer_PIPAudioProcessorTemplate.h │ │ │ │ └── jucer_PIPTemplate.h │ │ │ ├── colourscheme_dark.xml │ │ │ ├── colourscheme_light.xml │ │ │ └── gradle │ │ │ │ ├── LICENSE │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ ├── gradlew │ │ │ │ └── gradlew.bat │ │ │ ├── CodeEditor │ │ │ ├── jucer_DocumentEditorComponent.cpp │ │ │ ├── jucer_DocumentEditorComponent.h │ │ │ ├── jucer_ItemPreviewComponent.h │ │ │ ├── jucer_LiveBuildCodeEditor.h │ │ │ ├── jucer_OpenDocumentManager.cpp │ │ │ ├── jucer_OpenDocumentManager.h │ │ │ ├── jucer_SourceCodeEditor.cpp │ │ │ └── jucer_SourceCodeEditor.h │ │ │ ├── ComponentEditor │ │ │ ├── Components │ │ │ │ ├── jucer_ButtonHandler.h │ │ │ │ ├── jucer_ComboBoxHandler.h │ │ │ │ ├── jucer_ComponentNameProperty.h │ │ │ │ ├── jucer_ComponentTypeHandler.cpp │ │ │ │ ├── jucer_ComponentTypeHandler.h │ │ │ │ ├── jucer_ComponentUndoableAction.h │ │ │ │ ├── jucer_GenericComponentHandler.h │ │ │ │ ├── jucer_GroupComponentHandler.h │ │ │ │ ├── jucer_HyperlinkButtonHandler.h │ │ │ │ ├── jucer_ImageButtonHandler.h │ │ │ │ ├── jucer_JucerComponentHandler.h │ │ │ │ ├── jucer_LabelHandler.h │ │ │ │ ├── jucer_SliderHandler.h │ │ │ │ ├── jucer_TabbedComponentHandler.h │ │ │ │ ├── jucer_TextButtonHandler.h │ │ │ │ ├── jucer_TextEditorHandler.h │ │ │ │ ├── jucer_ToggleButtonHandler.h │ │ │ │ ├── jucer_TreeViewHandler.h │ │ │ │ └── jucer_ViewportHandler.h │ │ │ ├── Documents │ │ │ │ ├── jucer_ButtonDocument.cpp │ │ │ │ ├── jucer_ButtonDocument.h │ │ │ │ ├── jucer_ComponentDocument.cpp │ │ │ │ └── jucer_ComponentDocument.h │ │ │ ├── PaintElements │ │ │ │ ├── jucer_ColouredElement.cpp │ │ │ │ ├── jucer_ColouredElement.h │ │ │ │ ├── jucer_ElementSiblingComponent.h │ │ │ │ ├── jucer_FillType.h │ │ │ │ ├── jucer_GradientPointComponent.h │ │ │ │ ├── jucer_ImageResourceProperty.h │ │ │ │ ├── jucer_PaintElement.cpp │ │ │ │ ├── jucer_PaintElement.h │ │ │ │ ├── jucer_PaintElementEllipse.h │ │ │ │ ├── jucer_PaintElementGroup.cpp │ │ │ │ ├── jucer_PaintElementGroup.h │ │ │ │ ├── jucer_PaintElementImage.cpp │ │ │ │ ├── jucer_PaintElementImage.h │ │ │ │ ├── jucer_PaintElementPath.cpp │ │ │ │ ├── jucer_PaintElementPath.h │ │ │ │ ├── jucer_PaintElementRectangle.h │ │ │ │ ├── jucer_PaintElementRoundedRectangle.h │ │ │ │ ├── jucer_PaintElementText.h │ │ │ │ ├── jucer_PaintElementUndoableAction.h │ │ │ │ ├── jucer_PointComponent.h │ │ │ │ └── jucer_StrokeType.h │ │ │ ├── Properties │ │ │ │ ├── jucer_ColourPropertyComponent.h │ │ │ │ ├── jucer_ComponentBooleanProperty.h │ │ │ │ ├── jucer_ComponentChoiceProperty.h │ │ │ │ ├── jucer_ComponentColourProperty.h │ │ │ │ ├── jucer_ComponentTextProperty.h │ │ │ │ ├── jucer_FilePropertyComponent.h │ │ │ │ ├── jucer_FontPropertyComponent.h │ │ │ │ ├── jucer_JustificationProperty.h │ │ │ │ └── jucer_PositionPropertyBase.h │ │ │ ├── UI │ │ │ │ ├── jucer_ComponentLayoutEditor.cpp │ │ │ │ ├── jucer_ComponentLayoutEditor.h │ │ │ │ ├── jucer_ComponentLayoutPanel.h │ │ │ │ ├── jucer_ComponentOverlayComponent.cpp │ │ │ │ ├── jucer_ComponentOverlayComponent.h │ │ │ │ ├── jucer_EditingPanelBase.cpp │ │ │ │ ├── jucer_EditingPanelBase.h │ │ │ │ ├── jucer_JucerCommandIDs.h │ │ │ │ ├── jucer_JucerDocumentEditor.cpp │ │ │ │ ├── jucer_JucerDocumentEditor.h │ │ │ │ ├── jucer_PaintRoutineEditor.cpp │ │ │ │ ├── jucer_PaintRoutineEditor.h │ │ │ │ ├── jucer_PaintRoutinePanel.cpp │ │ │ │ ├── jucer_PaintRoutinePanel.h │ │ │ │ ├── jucer_RelativePositionedRectangle.h │ │ │ │ ├── jucer_ResourceEditorPanel.cpp │ │ │ │ ├── jucer_ResourceEditorPanel.h │ │ │ │ ├── jucer_SnapGridPainter.h │ │ │ │ ├── jucer_TestComponent.cpp │ │ │ │ └── jucer_TestComponent.h │ │ │ ├── jucer_BinaryResources.cpp │ │ │ ├── jucer_BinaryResources.h │ │ │ ├── jucer_ComponentLayout.cpp │ │ │ ├── jucer_ComponentLayout.h │ │ │ ├── jucer_GeneratedCode.cpp │ │ │ ├── jucer_GeneratedCode.h │ │ │ ├── jucer_JucerDocument.cpp │ │ │ ├── jucer_JucerDocument.h │ │ │ ├── jucer_ObjectTypes.cpp │ │ │ ├── jucer_ObjectTypes.h │ │ │ ├── jucer_PaintRoutine.cpp │ │ │ ├── jucer_PaintRoutine.h │ │ │ └── jucer_UtilityFunctions.h │ │ │ ├── Licenses │ │ │ └── jucer_LicenseController.cpp │ │ │ ├── LiveBuildEngine │ │ │ ├── UI │ │ │ │ ├── jucer_ActivityListComponent.h │ │ │ │ ├── jucer_BuildTabStatusComponent.h │ │ │ │ ├── jucer_ComponentListComponent.h │ │ │ │ └── jucer_ErrorListComponent.h │ │ │ ├── jucer_ActivityList.h │ │ │ ├── jucer_ClassDatabase.h │ │ │ ├── jucer_ClientServerMessages.h │ │ │ ├── jucer_CompileEngineClient.cpp │ │ │ ├── jucer_CompileEngineClient.h │ │ │ ├── jucer_CompileEngineDLL.h │ │ │ ├── jucer_CompileEngineServer.cpp │ │ │ ├── jucer_CompileEngineServer.h │ │ │ ├── jucer_CompileEngineSettings.h │ │ │ ├── jucer_CppHelpers.h │ │ │ ├── jucer_DiagnosticMessage.h │ │ │ ├── jucer_DownloadCompileEngineThread.cpp │ │ │ ├── jucer_DownloadCompileEngineThread.h │ │ │ ├── jucer_ErrorList.h │ │ │ ├── jucer_LiveCodeBuilderDLL.h │ │ │ ├── jucer_MessageIDs.h │ │ │ ├── jucer_ProjectBuildInfo.h │ │ │ └── jucer_SourceCodeRange.h │ │ │ ├── Project │ │ │ ├── Modules │ │ │ │ ├── jucer_AvailableModulesList.h │ │ │ │ ├── jucer_ModuleDescription.h │ │ │ │ ├── jucer_Modules.cpp │ │ │ │ └── jucer_Modules.h │ │ │ ├── UI │ │ │ │ ├── Sidebar │ │ │ │ │ ├── jucer_ExporterTreeItems.h │ │ │ │ │ ├── jucer_FileTreeItems.h │ │ │ │ │ ├── jucer_LiveBuildTab.h │ │ │ │ │ ├── jucer_ModuleTreeItems.h │ │ │ │ │ ├── jucer_ProjectTab.h │ │ │ │ │ ├── jucer_ProjectTreeItemBase.h │ │ │ │ │ ├── jucer_TabComponents.h │ │ │ │ │ └── jucer_TreeItemTypes.h │ │ │ │ ├── jucer_ContentViewComponents.h │ │ │ │ ├── jucer_FileGroupInformationComponent.h │ │ │ │ ├── jucer_HeaderComponent.cpp │ │ │ │ ├── jucer_HeaderComponent.h │ │ │ │ ├── jucer_ModulesInformationComponent.h │ │ │ │ ├── jucer_ProjectContentComponent.cpp │ │ │ │ ├── jucer_ProjectContentComponent.h │ │ │ │ ├── jucer_ProjectMessagesComponent.h │ │ │ │ └── jucer_UserAvatarComponent.h │ │ │ ├── jucer_Project.cpp │ │ │ └── jucer_Project.h │ │ │ ├── ProjectSaving │ │ │ ├── jucer_ProjectExport_Android.h │ │ │ ├── jucer_ProjectExport_CLion.h │ │ │ ├── jucer_ProjectExport_CodeBlocks.h │ │ │ ├── jucer_ProjectExport_MSVC.h │ │ │ ├── jucer_ProjectExport_Make.h │ │ │ ├── jucer_ProjectExport_Xcode.h │ │ │ ├── jucer_ProjectExporter.cpp │ │ │ ├── jucer_ProjectExporter.h │ │ │ ├── jucer_ProjectSaver.cpp │ │ │ ├── jucer_ProjectSaver.h │ │ │ ├── jucer_ResourceFile.cpp │ │ │ ├── jucer_ResourceFile.h │ │ │ └── jucer_XcodeProjectParser.h │ │ │ ├── Settings │ │ │ ├── jucer_AppearanceSettings.cpp │ │ │ ├── jucer_AppearanceSettings.h │ │ │ ├── jucer_StoredSettings.cpp │ │ │ └── jucer_StoredSettings.h │ │ │ └── Utility │ │ │ ├── Helpers │ │ │ ├── jucer_CodeHelpers.cpp │ │ │ ├── jucer_CodeHelpers.h │ │ │ ├── jucer_Colours.h │ │ │ ├── jucer_FileHelpers.cpp │ │ │ ├── jucer_FileHelpers.h │ │ │ ├── jucer_MiscUtilities.cpp │ │ │ ├── jucer_MiscUtilities.h │ │ │ ├── jucer_NewFileWizard.cpp │ │ │ ├── jucer_NewFileWizard.h │ │ │ ├── jucer_PresetIDs.h │ │ │ ├── jucer_TranslationHelpers.h │ │ │ ├── jucer_ValueSourceHelpers.h │ │ │ ├── jucer_ValueWithDefaultWrapper.h │ │ │ ├── jucer_VersionInfo.cpp │ │ │ └── jucer_VersionInfo.h │ │ │ ├── PIPs │ │ │ ├── jucer_PIPGenerator.cpp │ │ │ └── jucer_PIPGenerator.h │ │ │ └── UI │ │ │ ├── PropertyComponents │ │ │ ├── jucer_ColourPropertyComponent.h │ │ │ ├── jucer_FilePathPropertyComponent.h │ │ │ ├── jucer_LabelPropertyComponent.h │ │ │ └── jucer_PropertyComponentsWithEnablement.h │ │ │ ├── jucer_IconButton.h │ │ │ ├── jucer_Icons.cpp │ │ │ ├── jucer_Icons.h │ │ │ ├── jucer_JucerTreeViewBase.cpp │ │ │ ├── jucer_JucerTreeViewBase.h │ │ │ ├── jucer_ProjucerLookAndFeel.cpp │ │ │ ├── jucer_ProjucerLookAndFeel.h │ │ │ ├── jucer_SlidingPanelComponent.cpp │ │ │ └── jucer_SlidingPanelComponent.h │ ├── UnitTestRunner │ │ ├── Builds │ │ │ ├── LinuxMakefile │ │ │ │ └── Makefile │ │ │ ├── MacOSX │ │ │ │ ├── RecentFilesMenuTemplate.nib │ │ │ │ └── UnitTestRunner.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ ├── VisualStudio2017 │ │ │ │ ├── UnitTestRunner.sln │ │ │ │ ├── UnitTestRunner_ConsoleApp.vcxproj │ │ │ │ ├── UnitTestRunner_ConsoleApp.vcxproj.filters │ │ │ │ └── resources.rc │ │ │ └── VisualStudio2019 │ │ │ │ ├── UnitTestRunner.sln │ │ │ │ ├── UnitTestRunner_ConsoleApp.vcxproj │ │ │ │ ├── UnitTestRunner_ConsoleApp.vcxproj.filters │ │ │ │ └── resources.rc │ │ ├── CMakeLists.txt │ │ ├── JuceLibraryCode │ │ │ ├── JuceHeader.h │ │ │ ├── ReadMe.txt │ │ │ ├── include_juce_analytics.cpp │ │ │ ├── include_juce_audio_basics.cpp │ │ │ ├── include_juce_audio_basics.mm │ │ │ ├── include_juce_audio_devices.cpp │ │ │ ├── include_juce_audio_devices.mm │ │ │ ├── include_juce_audio_formats.cpp │ │ │ ├── include_juce_audio_formats.mm │ │ │ ├── include_juce_audio_processors.cpp │ │ │ ├── include_juce_audio_processors.mm │ │ │ ├── include_juce_audio_utils.cpp │ │ │ ├── include_juce_audio_utils.mm │ │ │ ├── include_juce_blocks_basics.cpp │ │ │ ├── include_juce_core.cpp │ │ │ ├── include_juce_core.mm │ │ │ ├── include_juce_cryptography.cpp │ │ │ ├── include_juce_cryptography.mm │ │ │ ├── include_juce_data_structures.cpp │ │ │ ├── include_juce_data_structures.mm │ │ │ ├── include_juce_dsp.cpp │ │ │ ├── include_juce_dsp.mm │ │ │ ├── include_juce_events.cpp │ │ │ ├── include_juce_events.mm │ │ │ ├── include_juce_graphics.cpp │ │ │ ├── include_juce_graphics.mm │ │ │ ├── include_juce_gui_basics.cpp │ │ │ ├── include_juce_gui_basics.mm │ │ │ ├── include_juce_gui_extra.cpp │ │ │ ├── include_juce_gui_extra.mm │ │ │ ├── include_juce_opengl.cpp │ │ │ ├── include_juce_opengl.mm │ │ │ ├── include_juce_osc.cpp │ │ │ ├── include_juce_product_unlocking.cpp │ │ │ ├── include_juce_product_unlocking.mm │ │ │ ├── include_juce_video.cpp │ │ │ └── include_juce_video.mm │ │ ├── Source │ │ │ └── Main.cpp │ │ └── UnitTestRunner.jucer │ └── WindowsDLL │ │ ├── Builds │ │ └── VisualStudio2019 │ │ │ ├── WindowsDLL.sln │ │ │ ├── WindowsDLL_StaticLibrary.vcxproj │ │ │ └── WindowsDLL_StaticLibrary.vcxproj.filters │ │ ├── JuceLibraryCode │ │ ├── JuceHeader.h │ │ ├── ReadMe.txt │ │ ├── include_juce_audio_basics.cpp │ │ ├── include_juce_audio_basics.mm │ │ ├── include_juce_audio_devices.cpp │ │ ├── include_juce_audio_devices.mm │ │ ├── include_juce_audio_formats.cpp │ │ ├── include_juce_audio_formats.mm │ │ ├── include_juce_audio_processors.cpp │ │ ├── include_juce_audio_processors.mm │ │ ├── include_juce_audio_utils.cpp │ │ ├── include_juce_audio_utils.mm │ │ ├── include_juce_core.cpp │ │ ├── include_juce_core.mm │ │ ├── include_juce_cryptography.cpp │ │ ├── include_juce_cryptography.mm │ │ ├── include_juce_data_structures.cpp │ │ ├── include_juce_data_structures.mm │ │ ├── include_juce_events.cpp │ │ ├── include_juce_events.mm │ │ ├── include_juce_graphics.cpp │ │ ├── include_juce_graphics.mm │ │ ├── include_juce_gui_basics.cpp │ │ ├── include_juce_gui_basics.mm │ │ ├── include_juce_gui_extra.cpp │ │ ├── include_juce_gui_extra.mm │ │ ├── include_juce_opengl.cpp │ │ ├── include_juce_opengl.mm │ │ ├── include_juce_video.cpp │ │ └── include_juce_video.mm │ │ └── WindowsDLL.jucer └── modules │ ├── CMakeLists.txt │ ├── juce_analytics │ ├── analytics │ │ ├── juce_Analytics.cpp │ │ ├── juce_Analytics.h │ │ ├── juce_ButtonTracker.cpp │ │ └── juce_ButtonTracker.h │ ├── destinations │ │ ├── juce_AnalyticsDestination.h │ │ ├── juce_ThreadedAnalyticsDestination.cpp │ │ └── juce_ThreadedAnalyticsDestination.h │ ├── juce_analytics.cpp │ └── juce_analytics.h │ ├── juce_audio_basics │ ├── audio_play_head │ │ └── juce_AudioPlayHead.h │ ├── buffers │ │ ├── juce_AudioChannelSet.cpp │ │ ├── juce_AudioChannelSet.h │ │ ├── juce_AudioDataConverters.cpp │ │ ├── juce_AudioDataConverters.h │ │ ├── juce_AudioProcessLoadMeasurer.cpp │ │ ├── juce_AudioProcessLoadMeasurer.h │ │ ├── juce_AudioSampleBuffer.h │ │ ├── juce_FloatVectorOperations.cpp │ │ └── juce_FloatVectorOperations.h │ ├── juce_audio_basics.cpp │ ├── juce_audio_basics.h │ ├── juce_audio_basics.mm │ ├── midi │ │ ├── juce_MidiBuffer.cpp │ │ ├── juce_MidiBuffer.h │ │ ├── juce_MidiFile.cpp │ │ ├── juce_MidiFile.h │ │ ├── juce_MidiKeyboardState.cpp │ │ ├── juce_MidiKeyboardState.h │ │ ├── juce_MidiMessage.cpp │ │ ├── juce_MidiMessage.h │ │ ├── juce_MidiMessageSequence.cpp │ │ ├── juce_MidiMessageSequence.h │ │ ├── juce_MidiRPN.cpp │ │ └── juce_MidiRPN.h │ ├── mpe │ │ ├── juce_MPEInstrument.cpp │ │ ├── juce_MPEInstrument.h │ │ ├── juce_MPEMessages.cpp │ │ ├── juce_MPEMessages.h │ │ ├── juce_MPENote.cpp │ │ ├── juce_MPENote.h │ │ ├── juce_MPESynthesiser.cpp │ │ ├── juce_MPESynthesiser.h │ │ ├── juce_MPESynthesiserBase.cpp │ │ ├── juce_MPESynthesiserBase.h │ │ ├── juce_MPESynthesiserVoice.cpp │ │ ├── juce_MPESynthesiserVoice.h │ │ ├── juce_MPEUtils.cpp │ │ ├── juce_MPEUtils.h │ │ ├── juce_MPEValue.cpp │ │ ├── juce_MPEValue.h │ │ ├── juce_MPEZoneLayout.cpp │ │ └── juce_MPEZoneLayout.h │ ├── native │ │ └── juce_mac_CoreAudioLayouts.h │ ├── sources │ │ ├── juce_AudioSource.h │ │ ├── juce_BufferingAudioSource.cpp │ │ ├── juce_BufferingAudioSource.h │ │ ├── juce_ChannelRemappingAudioSource.cpp │ │ ├── juce_ChannelRemappingAudioSource.h │ │ ├── juce_IIRFilterAudioSource.cpp │ │ ├── juce_IIRFilterAudioSource.h │ │ ├── juce_MemoryAudioSource.cpp │ │ ├── juce_MemoryAudioSource.h │ │ ├── juce_MixerAudioSource.cpp │ │ ├── juce_MixerAudioSource.h │ │ ├── juce_PositionableAudioSource.h │ │ ├── juce_ResamplingAudioSource.cpp │ │ ├── juce_ResamplingAudioSource.h │ │ ├── juce_ReverbAudioSource.cpp │ │ ├── juce_ReverbAudioSource.h │ │ ├── juce_ToneGeneratorAudioSource.cpp │ │ └── juce_ToneGeneratorAudioSource.h │ ├── synthesisers │ │ ├── juce_Synthesiser.cpp │ │ └── juce_Synthesiser.h │ └── utilities │ │ ├── juce_ADSR.h │ │ ├── juce_Decibels.h │ │ ├── juce_GenericInterpolator.h │ │ ├── juce_IIRFilter.cpp │ │ ├── juce_IIRFilter.h │ │ ├── juce_Interpolators.cpp │ │ ├── juce_Interpolators.h │ │ ├── juce_LagrangeInterpolator.cpp │ │ ├── juce_Reverb.h │ │ ├── juce_SmoothedValue.cpp │ │ ├── juce_SmoothedValue.h │ │ └── juce_WindowedSincInterpolator.cpp │ ├── juce_audio_devices │ ├── audio_io │ │ ├── juce_AudioDeviceManager.cpp │ │ ├── juce_AudioDeviceManager.h │ │ ├── juce_AudioIODevice.cpp │ │ ├── juce_AudioIODevice.h │ │ ├── juce_AudioIODeviceType.cpp │ │ ├── juce_AudioIODeviceType.h │ │ └── juce_SystemAudioVolume.h │ ├── juce_audio_devices.cpp │ ├── juce_audio_devices.h │ ├── juce_audio_devices.mm │ ├── midi_io │ │ ├── juce_MidiDevices.cpp │ │ ├── juce_MidiDevices.h │ │ ├── juce_MidiMessageCollector.cpp │ │ ├── juce_MidiMessageCollector.h │ │ └── ump │ │ │ ├── juce_UMPBytestreamInputHandler.h │ │ │ ├── juce_UMPConversion.h │ │ │ ├── juce_UMPConverters.h │ │ │ ├── juce_UMPDispatcher.h │ │ │ ├── juce_UMPFactory.h │ │ │ ├── juce_UMPIterator.h │ │ │ ├── juce_UMPMidi1ToBytestreamTranslator.h │ │ │ ├── juce_UMPMidi1ToMidi2DefaultTranslator.cpp │ │ │ ├── juce_UMPMidi1ToMidi2DefaultTranslator.h │ │ │ ├── juce_UMPProtocols.h │ │ │ ├── juce_UMPReceiver.h │ │ │ ├── juce_UMPSysEx7.cpp │ │ │ ├── juce_UMPSysEx7.h │ │ │ ├── juce_UMPTests.cpp │ │ │ ├── juce_UMPU32InputHandler.h │ │ │ ├── juce_UMPUtils.cpp │ │ │ ├── juce_UMPUtils.h │ │ │ ├── juce_UMPView.cpp │ │ │ ├── juce_UMPView.h │ │ │ ├── juce_UMPacket.h │ │ │ └── juce_UMPackets.h │ ├── native │ │ ├── java │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ └── JuceMidiSupport.java │ │ ├── juce_MidiDataConcatenator.h │ │ ├── juce_android_Audio.cpp │ │ ├── juce_android_HighPerformanceAudioHelpers.h │ │ ├── juce_android_Midi.cpp │ │ ├── juce_android_Oboe.cpp │ │ ├── juce_android_OpenSL.cpp │ │ ├── juce_ios_Audio.cpp │ │ ├── juce_ios_Audio.h │ │ ├── juce_linux_ALSA.cpp │ │ ├── juce_linux_Bela.cpp │ │ ├── juce_linux_JackAudio.cpp │ │ ├── juce_linux_Midi.cpp │ │ ├── juce_mac_CoreAudio.cpp │ │ ├── juce_mac_CoreMidi.mm │ │ ├── juce_win32_ASIO.cpp │ │ ├── juce_win32_DirectSound.cpp │ │ ├── juce_win32_Midi.cpp │ │ ├── juce_win32_WASAPI.cpp │ │ └── oboe │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── include │ │ │ └── oboe │ │ │ │ ├── AudioStream.h │ │ │ │ ├── AudioStreamBase.h │ │ │ │ ├── AudioStreamBuilder.h │ │ │ │ ├── AudioStreamCallback.h │ │ │ │ ├── Definitions.h │ │ │ │ ├── LatencyTuner.h │ │ │ │ ├── Oboe.h │ │ │ │ ├── ResultWithValue.h │ │ │ │ ├── StabilizedCallback.h │ │ │ │ ├── Utilities.h │ │ │ │ └── Version.h │ │ │ ├── readme.md │ │ │ └── src │ │ │ ├── aaudio │ │ │ ├── AAudioLoader.cpp │ │ │ ├── AAudioLoader.h │ │ │ ├── AudioStreamAAudio.cpp │ │ │ └── AudioStreamAAudio.h │ │ │ ├── common │ │ │ ├── AudioClock.h │ │ │ ├── AudioSourceCaller.cpp │ │ │ ├── AudioSourceCaller.h │ │ │ ├── AudioStream.cpp │ │ │ ├── AudioStreamBuilder.cpp │ │ │ ├── DataConversionFlowGraph.cpp │ │ │ ├── DataConversionFlowGraph.h │ │ │ ├── FilterAudioStream.cpp │ │ │ ├── FilterAudioStream.h │ │ │ ├── FixedBlockAdapter.cpp │ │ │ ├── FixedBlockAdapter.h │ │ │ ├── FixedBlockReader.cpp │ │ │ ├── FixedBlockReader.h │ │ │ ├── FixedBlockWriter.cpp │ │ │ ├── FixedBlockWriter.h │ │ │ ├── LatencyTuner.cpp │ │ │ ├── MonotonicCounter.h │ │ │ ├── OboeDebug.h │ │ │ ├── QuirksManager.cpp │ │ │ ├── QuirksManager.h │ │ │ ├── SourceFloatCaller.cpp │ │ │ ├── SourceFloatCaller.h │ │ │ ├── SourceI16Caller.cpp │ │ │ ├── SourceI16Caller.h │ │ │ ├── StabilizedCallback.cpp │ │ │ ├── Trace.cpp │ │ │ ├── Trace.h │ │ │ ├── Utilities.cpp │ │ │ └── Version.cpp │ │ │ ├── fifo │ │ │ ├── FifoBuffer.cpp │ │ │ ├── FifoBuffer.h │ │ │ ├── FifoController.cpp │ │ │ ├── FifoController.h │ │ │ ├── FifoControllerBase.cpp │ │ │ ├── FifoControllerBase.h │ │ │ ├── FifoControllerIndirect.cpp │ │ │ └── FifoControllerIndirect.h │ │ │ ├── flowgraph │ │ │ ├── ChannelCountConverter.cpp │ │ │ ├── ChannelCountConverter.h │ │ │ ├── ClipToRange.cpp │ │ │ ├── ClipToRange.h │ │ │ ├── FlowGraphNode.cpp │ │ │ ├── FlowGraphNode.h │ │ │ ├── ManyToMultiConverter.cpp │ │ │ ├── ManyToMultiConverter.h │ │ │ ├── MonoToMultiConverter.cpp │ │ │ ├── MonoToMultiConverter.h │ │ │ ├── MultiToMonoConverter.cpp │ │ │ ├── MultiToMonoConverter.h │ │ │ ├── RampLinear.cpp │ │ │ ├── RampLinear.h │ │ │ ├── SampleRateConverter.cpp │ │ │ ├── SampleRateConverter.h │ │ │ ├── SinkFloat.cpp │ │ │ ├── SinkFloat.h │ │ │ ├── SinkI16.cpp │ │ │ ├── SinkI16.h │ │ │ ├── SinkI24.cpp │ │ │ ├── SinkI24.h │ │ │ ├── SourceFloat.cpp │ │ │ ├── SourceFloat.h │ │ │ ├── SourceI16.cpp │ │ │ ├── SourceI16.h │ │ │ ├── SourceI24.cpp │ │ │ ├── SourceI24.h │ │ │ └── resampler │ │ │ │ ├── HyperbolicCosineWindow.h │ │ │ │ ├── IntegerRatio.cpp │ │ │ │ ├── IntegerRatio.h │ │ │ │ ├── KaiserWindow.h │ │ │ │ ├── LinearResampler.cpp │ │ │ │ ├── LinearResampler.h │ │ │ │ ├── MultiChannelResampler.cpp │ │ │ │ ├── MultiChannelResampler.h │ │ │ │ ├── PolyphaseResampler.cpp │ │ │ │ ├── PolyphaseResampler.h │ │ │ │ ├── PolyphaseResamplerMono.cpp │ │ │ │ ├── PolyphaseResamplerMono.h │ │ │ │ ├── PolyphaseResamplerStereo.cpp │ │ │ │ ├── PolyphaseResamplerStereo.h │ │ │ │ ├── SincResampler.cpp │ │ │ │ ├── SincResampler.h │ │ │ │ ├── SincResamplerStereo.cpp │ │ │ │ └── SincResamplerStereo.h │ │ │ └── opensles │ │ │ ├── AudioInputStreamOpenSLES.cpp │ │ │ ├── AudioInputStreamOpenSLES.h │ │ │ ├── AudioOutputStreamOpenSLES.cpp │ │ │ ├── AudioOutputStreamOpenSLES.h │ │ │ ├── AudioStreamBuffered.cpp │ │ │ ├── AudioStreamBuffered.h │ │ │ ├── AudioStreamOpenSLES.cpp │ │ │ ├── AudioStreamOpenSLES.h │ │ │ ├── EngineOpenSLES.cpp │ │ │ ├── EngineOpenSLES.h │ │ │ ├── OpenSLESUtilities.cpp │ │ │ ├── OpenSLESUtilities.h │ │ │ ├── OutputMixerOpenSLES.cpp │ │ │ └── OutputMixerOpenSLES.h │ └── sources │ │ ├── juce_AudioSourcePlayer.cpp │ │ ├── juce_AudioSourcePlayer.h │ │ ├── juce_AudioTransportSource.cpp │ │ └── juce_AudioTransportSource.h │ ├── juce_audio_formats │ ├── codecs │ │ ├── flac │ │ │ ├── Flac Licence.txt │ │ │ ├── all.h │ │ │ ├── alloc.h │ │ │ ├── assert.h │ │ │ ├── callback.h │ │ │ ├── compat.h │ │ │ ├── endswap.h │ │ │ ├── export.h │ │ │ ├── format.h │ │ │ ├── libFLAC │ │ │ │ ├── bitmath.c │ │ │ │ ├── bitreader.c │ │ │ │ ├── bitwriter.c │ │ │ │ ├── cpu.c │ │ │ │ ├── crc.c │ │ │ │ ├── fixed.c │ │ │ │ ├── float.c │ │ │ │ ├── format.c │ │ │ │ ├── include │ │ │ │ │ ├── private │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── bitmath.h │ │ │ │ │ │ ├── bitreader.h │ │ │ │ │ │ ├── bitwriter.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── crc.h │ │ │ │ │ │ ├── fixed.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── lpc.h │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ ├── stream_encoder.h │ │ │ │ │ │ ├── stream_encoder_framing.h │ │ │ │ │ │ └── window.h │ │ │ │ │ └── protected │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ ├── lpc_flac.c │ │ │ │ ├── md5.c │ │ │ │ ├── memory.c │ │ │ │ ├── stream_decoder.c │ │ │ │ ├── stream_encoder.c │ │ │ │ ├── stream_encoder_framing.c │ │ │ │ └── window_flac.c │ │ │ ├── metadata.h │ │ │ ├── ordinals.h │ │ │ ├── stream_decoder.h │ │ │ ├── stream_encoder.h │ │ │ └── win_utf8_io.h │ │ ├── juce_AiffAudioFormat.cpp │ │ ├── juce_AiffAudioFormat.h │ │ ├── juce_CoreAudioFormat.cpp │ │ ├── juce_CoreAudioFormat.h │ │ ├── juce_FlacAudioFormat.cpp │ │ ├── juce_FlacAudioFormat.h │ │ ├── juce_LAMEEncoderAudioFormat.cpp │ │ ├── juce_LAMEEncoderAudioFormat.h │ │ ├── juce_MP3AudioFormat.cpp │ │ ├── juce_MP3AudioFormat.h │ │ ├── juce_OggVorbisAudioFormat.cpp │ │ ├── juce_OggVorbisAudioFormat.h │ │ ├── juce_WavAudioFormat.cpp │ │ ├── juce_WavAudioFormat.h │ │ ├── juce_WindowsMediaAudioFormat.cpp │ │ ├── juce_WindowsMediaAudioFormat.h │ │ └── oggvorbis │ │ │ ├── Ogg Vorbis Licence.txt │ │ │ ├── bitwise.c │ │ │ ├── codec.h │ │ │ ├── config_types.h │ │ │ ├── crctable.h │ │ │ ├── framing.c │ │ │ ├── libvorbis-1.3.7 │ │ │ ├── AUTHORS │ │ │ ├── CHANGES │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ └── lib │ │ │ │ ├── analysis.c │ │ │ │ ├── backends.h │ │ │ │ ├── bitrate.c │ │ │ │ ├── bitrate.h │ │ │ │ ├── block.c │ │ │ │ ├── books │ │ │ │ ├── coupled │ │ │ │ │ ├── res_books_51.h │ │ │ │ │ └── res_books_stereo.h │ │ │ │ ├── floor │ │ │ │ │ └── floor_books.h │ │ │ │ └── uncoupled │ │ │ │ │ └── res_books_uncoupled.h │ │ │ │ ├── codebook.c │ │ │ │ ├── codebook.h │ │ │ │ ├── codec_internal.h │ │ │ │ ├── envelope.c │ │ │ │ ├── envelope.h │ │ │ │ ├── floor0.c │ │ │ │ ├── floor1.c │ │ │ │ ├── highlevel.h │ │ │ │ ├── info.c │ │ │ │ ├── lookup.c │ │ │ │ ├── lookup.h │ │ │ │ ├── lookup_data.h │ │ │ │ ├── lpc.c │ │ │ │ ├── lpc.h │ │ │ │ ├── lsp.c │ │ │ │ ├── lsp.h │ │ │ │ ├── mapping0.c │ │ │ │ ├── masking.h │ │ │ │ ├── mdct.c │ │ │ │ ├── mdct.h │ │ │ │ ├── misc.c │ │ │ │ ├── misc.h │ │ │ │ ├── modes │ │ │ │ ├── floor_all.h │ │ │ │ ├── psych_11.h │ │ │ │ ├── psych_16.h │ │ │ │ ├── psych_44.h │ │ │ │ ├── psych_8.h │ │ │ │ ├── residue_16.h │ │ │ │ ├── residue_44.h │ │ │ │ ├── residue_44p51.h │ │ │ │ ├── residue_44u.h │ │ │ │ ├── residue_8.h │ │ │ │ ├── setup_11.h │ │ │ │ ├── setup_16.h │ │ │ │ ├── setup_22.h │ │ │ │ ├── setup_32.h │ │ │ │ ├── setup_44.h │ │ │ │ ├── setup_44p51.h │ │ │ │ ├── setup_44u.h │ │ │ │ ├── setup_8.h │ │ │ │ └── setup_X.h │ │ │ │ ├── os.h │ │ │ │ ├── psy.c │ │ │ │ ├── psy.h │ │ │ │ ├── registry.c │ │ │ │ ├── registry.h │ │ │ │ ├── res0.c │ │ │ │ ├── scales.h │ │ │ │ ├── sharedbook.c │ │ │ │ ├── smallft.c │ │ │ │ ├── smallft.h │ │ │ │ ├── synthesis.c │ │ │ │ ├── vorbisenc.c │ │ │ │ ├── vorbisfile.c │ │ │ │ ├── window.c │ │ │ │ └── window.h │ │ │ ├── ogg.h │ │ │ ├── os_types.h │ │ │ ├── vorbisenc.h │ │ │ └── vorbisfile.h │ ├── format │ │ ├── juce_AudioFormat.cpp │ │ ├── juce_AudioFormat.h │ │ ├── juce_AudioFormatManager.cpp │ │ ├── juce_AudioFormatManager.h │ │ ├── juce_AudioFormatReader.cpp │ │ ├── juce_AudioFormatReader.h │ │ ├── juce_AudioFormatReaderSource.cpp │ │ ├── juce_AudioFormatReaderSource.h │ │ ├── juce_AudioFormatWriter.cpp │ │ ├── juce_AudioFormatWriter.h │ │ ├── juce_AudioSubsectionReader.cpp │ │ ├── juce_AudioSubsectionReader.h │ │ ├── juce_BufferingAudioFormatReader.cpp │ │ ├── juce_BufferingAudioFormatReader.h │ │ └── juce_MemoryMappedAudioFormatReader.h │ ├── juce_audio_formats.cpp │ ├── juce_audio_formats.h │ ├── juce_audio_formats.mm │ └── sampler │ │ ├── juce_Sampler.cpp │ │ └── juce_Sampler.h │ ├── juce_audio_plugin_client │ ├── AAX │ │ ├── juce_AAX_Modifier_Injector.h │ │ └── juce_AAX_Wrapper.cpp │ ├── AU │ │ ├── AUResources.r │ │ ├── CoreAudioUtilityClasses │ │ │ ├── AUBase.cpp │ │ │ ├── AUBase.h │ │ │ ├── AUBaseHelper.h │ │ │ ├── AUBuffer.cpp │ │ │ ├── AUBuffer.h │ │ │ ├── AUCarbonViewBase.cpp │ │ │ ├── AUCarbonViewBase.h │ │ │ ├── AUCarbonViewControl.cpp │ │ │ ├── AUCarbonViewControl.h │ │ │ ├── AUCarbonViewDispatch.cpp │ │ │ ├── AUDispatch.cpp │ │ │ ├── AUDispatch.h │ │ │ ├── AUInputElement.cpp │ │ │ ├── AUInputElement.h │ │ │ ├── AUInputFormatConverter.h │ │ │ ├── AUMIDIBase.cpp │ │ │ ├── AUMIDIBase.h │ │ │ ├── AUOutputBase.cpp │ │ │ ├── AUOutputBase.h │ │ │ ├── AUOutputElement.cpp │ │ │ ├── AUOutputElement.h │ │ │ ├── AUPlugInDispatch.cpp │ │ │ ├── AUPlugInDispatch.h │ │ │ ├── AUScopeElement.cpp │ │ │ ├── AUScopeElement.h │ │ │ ├── AUSilentTimeout.h │ │ │ ├── AUTimestampGenerator.h │ │ │ ├── AUViewLocalizedStringKeys.h │ │ │ ├── CAAUParameter.cpp │ │ │ ├── CAAUParameter.h │ │ │ ├── CAAtomic.h │ │ │ ├── CAAtomicStack.h │ │ │ ├── CAAudioChannelLayout.cpp │ │ │ ├── CAAudioChannelLayout.h │ │ │ ├── CAAutoDisposer.h │ │ │ ├── CADebugMacros.h │ │ │ ├── CADebugPrintf.h │ │ │ ├── CAException.h │ │ │ ├── CAHostTimeBase.h │ │ │ ├── CAMath.h │ │ │ ├── CAMutex.cpp │ │ │ ├── CAMutex.h │ │ │ ├── CAReferenceCounted.h │ │ │ ├── CAStreamBasicDescription.cpp │ │ │ ├── CAStreamBasicDescription.h │ │ │ ├── CAThreadSafeList.h │ │ │ ├── CAVectorUnit.cpp │ │ │ ├── CAVectorUnit.h │ │ │ ├── CAVectorUnitTypes.h │ │ │ ├── CAXException.h │ │ │ ├── CarbonEventHandler.cpp │ │ │ ├── CarbonEventHandler.h │ │ │ ├── ComponentBase.cpp │ │ │ ├── ComponentBase.h │ │ │ ├── MusicDeviceBase.cpp │ │ │ └── MusicDeviceBase.h │ │ ├── juce_AU_Wrapper.mm │ │ └── juce_AUv3_Wrapper.mm │ ├── AUResources.r │ ├── RTAS │ │ ├── juce_RTAS_DigiCode1.cpp │ │ ├── juce_RTAS_DigiCode2.cpp │ │ ├── juce_RTAS_DigiCode3.cpp │ │ ├── juce_RTAS_DigiCode_Header.h │ │ ├── juce_RTAS_MacUtilities.mm │ │ ├── juce_RTAS_WinExports.def │ │ ├── juce_RTAS_WinResources.rsr │ │ ├── juce_RTAS_WinUtilities.cpp │ │ └── juce_RTAS_Wrapper.cpp │ ├── Standalone │ │ ├── juce_StandaloneFilterApp.cpp │ │ └── juce_StandaloneFilterWindow.h │ ├── Unity │ │ ├── juce_UnityPluginInterface.h │ │ └── juce_Unity_Wrapper.cpp │ ├── VST │ │ ├── juce_VSTCallbackHandler.h │ │ ├── juce_VST_Wrapper.cpp │ │ └── juce_VST_Wrapper.mm │ ├── VST3 │ │ └── juce_VST3_Wrapper.cpp │ ├── juce_audio_plugin_client.h │ ├── juce_audio_plugin_client_AAX.cpp │ ├── juce_audio_plugin_client_AAX.mm │ ├── juce_audio_plugin_client_AU.r │ ├── juce_audio_plugin_client_AU_1.mm │ ├── juce_audio_plugin_client_AU_2.mm │ ├── juce_audio_plugin_client_AUv3.mm │ ├── juce_audio_plugin_client_RTAS.r │ ├── juce_audio_plugin_client_RTAS_1.cpp │ ├── juce_audio_plugin_client_RTAS_2.cpp │ ├── juce_audio_plugin_client_RTAS_3.cpp │ ├── juce_audio_plugin_client_RTAS_4.cpp │ ├── juce_audio_plugin_client_RTAS_utils.cpp │ ├── juce_audio_plugin_client_RTAS_utils.mm │ ├── juce_audio_plugin_client_Standalone.cpp │ ├── juce_audio_plugin_client_Unity.cpp │ ├── juce_audio_plugin_client_VST2.cpp │ ├── juce_audio_plugin_client_VST3.cpp │ ├── juce_audio_plugin_client_VST_utils.mm │ ├── juce_audio_plugin_client_utils.cpp │ └── utility │ │ ├── juce_CarbonVisibility.h │ │ ├── juce_CheckSettingMacros.h │ │ ├── juce_CreatePluginFilter.h │ │ ├── juce_FakeMouseMoveGenerator.h │ │ ├── juce_IncludeModuleHeaders.h │ │ ├── juce_IncludeSystemHeaders.h │ │ ├── juce_PluginHostType.h │ │ ├── juce_PluginUtilities.cpp │ │ └── juce_WindowsHooks.h │ ├── juce_audio_processors │ ├── format │ │ ├── juce_AudioPluginFormat.cpp │ │ ├── juce_AudioPluginFormat.h │ │ ├── juce_AudioPluginFormatManager.cpp │ │ └── juce_AudioPluginFormatManager.h │ ├── format_types │ │ ├── VST3_SDK │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── VST3_License_Agreement.pdf │ │ │ ├── VST3_Usage_Guidelines.pdf │ │ │ ├── base │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── source │ │ │ │ │ ├── baseiids.cpp │ │ │ │ │ ├── classfactoryhelpers.h │ │ │ │ │ ├── fbuffer.cpp │ │ │ │ │ ├── fbuffer.h │ │ │ │ │ ├── fdebug.cpp │ │ │ │ │ ├── fdebug.h │ │ │ │ │ ├── fobject.cpp │ │ │ │ │ ├── fobject.h │ │ │ │ │ ├── fstreamer.cpp │ │ │ │ │ ├── fstreamer.h │ │ │ │ │ ├── fstring.cpp │ │ │ │ │ ├── fstring.h │ │ │ │ │ ├── updatehandler.cpp │ │ │ │ │ └── updatehandler.h │ │ │ │ └── thread │ │ │ │ │ ├── include │ │ │ │ │ └── flock.h │ │ │ │ │ └── source │ │ │ │ │ └── flock.cpp │ │ │ ├── pluginterfaces │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── base │ │ │ │ │ ├── conststringtable.cpp │ │ │ │ │ ├── conststringtable.h │ │ │ │ │ ├── coreiids.cpp │ │ │ │ │ ├── falignpop.h │ │ │ │ │ ├── falignpush.h │ │ │ │ │ ├── fplatform.h │ │ │ │ │ ├── fstrdefs.h │ │ │ │ │ ├── ftypes.h │ │ │ │ │ ├── funknown.cpp │ │ │ │ │ ├── funknown.h │ │ │ │ │ ├── futils.h │ │ │ │ │ ├── fvariant.h │ │ │ │ │ ├── ibstream.h │ │ │ │ │ ├── icloneable.h │ │ │ │ │ ├── ipersistent.h │ │ │ │ │ ├── ipluginbase.h │ │ │ │ │ ├── istringresult.h │ │ │ │ │ ├── iupdatehandler.h │ │ │ │ │ ├── smartpointer.h │ │ │ │ │ ├── typesizecheck.h │ │ │ │ │ ├── ustring.cpp │ │ │ │ │ └── ustring.h │ │ │ │ ├── gui │ │ │ │ │ ├── iplugview.h │ │ │ │ │ └── iplugviewcontentscalesupport.h │ │ │ │ └── vst │ │ │ │ │ ├── ivstattributes.h │ │ │ │ │ ├── ivstaudioprocessor.h │ │ │ │ │ ├── ivstautomationstate.h │ │ │ │ │ ├── ivstchannelcontextinfo.h │ │ │ │ │ ├── ivstcomponent.h │ │ │ │ │ ├── ivstcontextmenu.h │ │ │ │ │ ├── ivsteditcontroller.h │ │ │ │ │ ├── ivstevents.h │ │ │ │ │ ├── ivsthostapplication.h │ │ │ │ │ ├── ivstinterappaudio.h │ │ │ │ │ ├── ivstmessage.h │ │ │ │ │ ├── ivstmidicontrollers.h │ │ │ │ │ ├── ivstmidilearn.h │ │ │ │ │ ├── ivstnoteexpression.h │ │ │ │ │ ├── ivstparameterchanges.h │ │ │ │ │ ├── ivstphysicalui.h │ │ │ │ │ ├── ivstpluginterfacesupport.h │ │ │ │ │ ├── ivstplugview.h │ │ │ │ │ ├── ivstprefetchablesupport.h │ │ │ │ │ ├── ivstprocesscontext.h │ │ │ │ │ ├── ivstrepresentation.h │ │ │ │ │ ├── ivsttestplugprovider.h │ │ │ │ │ ├── ivstunits.h │ │ │ │ │ ├── vstpshpack4.h │ │ │ │ │ ├── vstspeaker.h │ │ │ │ │ └── vsttypes.h │ │ │ └── public.sdk │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ └── source │ │ │ │ ├── common │ │ │ │ ├── memorystream.cpp │ │ │ │ ├── memorystream.h │ │ │ │ ├── pluginview.cpp │ │ │ │ └── pluginview.h │ │ │ │ └── vst │ │ │ │ ├── hosting │ │ │ │ ├── hostclasses.cpp │ │ │ │ ├── hostclasses.h │ │ │ │ ├── pluginterfacesupport.cpp │ │ │ │ └── pluginterfacesupport.h │ │ │ │ ├── vstbus.cpp │ │ │ │ ├── vstbus.h │ │ │ │ ├── vstcomponent.cpp │ │ │ │ ├── vstcomponent.h │ │ │ │ ├── vstcomponentbase.cpp │ │ │ │ ├── vstcomponentbase.h │ │ │ │ ├── vsteditcontroller.cpp │ │ │ │ ├── vsteditcontroller.h │ │ │ │ ├── vstinitiids.cpp │ │ │ │ ├── vstparameters.cpp │ │ │ │ ├── vstparameters.h │ │ │ │ ├── vstpresetfile.cpp │ │ │ │ └── vstpresetfile.h │ │ ├── juce_AU_Shared.h │ │ ├── juce_AudioUnitPluginFormat.h │ │ ├── juce_AudioUnitPluginFormat.mm │ │ ├── juce_LADSPAPluginFormat.cpp │ │ ├── juce_LADSPAPluginFormat.h │ │ ├── juce_LegacyAudioParameter.cpp │ │ ├── juce_VST3Common.h │ │ ├── juce_VST3Headers.h │ │ ├── juce_VST3PluginFormat.cpp │ │ ├── juce_VST3PluginFormat.h │ │ ├── juce_VSTCommon.h │ │ ├── juce_VSTMidiEventList.h │ │ ├── juce_VSTPluginFormat.cpp │ │ └── juce_VSTPluginFormat.h │ ├── juce_audio_processors.cpp │ ├── juce_audio_processors.h │ ├── juce_audio_processors.mm │ ├── processors │ │ ├── juce_AudioPluginInstance.cpp │ │ ├── juce_AudioPluginInstance.h │ │ ├── juce_AudioProcessor.cpp │ │ ├── juce_AudioProcessor.h │ │ ├── juce_AudioProcessorEditor.cpp │ │ ├── juce_AudioProcessorEditor.h │ │ ├── juce_AudioProcessorGraph.cpp │ │ ├── juce_AudioProcessorGraph.h │ │ ├── juce_AudioProcessorListener.h │ │ ├── juce_AudioProcessorParameter.h │ │ ├── juce_AudioProcessorParameterGroup.cpp │ │ ├── juce_AudioProcessorParameterGroup.h │ │ ├── juce_GenericAudioProcessorEditor.cpp │ │ ├── juce_GenericAudioProcessorEditor.h │ │ ├── juce_PluginDescription.cpp │ │ └── juce_PluginDescription.h │ ├── scanning │ │ ├── juce_KnownPluginList.cpp │ │ ├── juce_KnownPluginList.h │ │ ├── juce_PluginDirectoryScanner.cpp │ │ ├── juce_PluginDirectoryScanner.h │ │ ├── juce_PluginListComponent.cpp │ │ └── juce_PluginListComponent.h │ └── utilities │ │ ├── juce_AudioParameterBool.cpp │ │ ├── juce_AudioParameterBool.h │ │ ├── juce_AudioParameterChoice.cpp │ │ ├── juce_AudioParameterChoice.h │ │ ├── juce_AudioParameterFloat.cpp │ │ ├── juce_AudioParameterFloat.h │ │ ├── juce_AudioParameterInt.cpp │ │ ├── juce_AudioParameterInt.h │ │ ├── juce_AudioProcessorParameterWithID.cpp │ │ ├── juce_AudioProcessorParameterWithID.h │ │ ├── juce_AudioProcessorValueTreeState.cpp │ │ ├── juce_AudioProcessorValueTreeState.h │ │ ├── juce_ParameterAttachments.cpp │ │ ├── juce_ParameterAttachments.h │ │ ├── juce_RangedAudioParameter.cpp │ │ └── juce_RangedAudioParameter.h │ ├── juce_audio_utils │ ├── audio_cd │ │ ├── juce_AudioCDBurner.h │ │ ├── juce_AudioCDReader.cpp │ │ └── juce_AudioCDReader.h │ ├── gui │ │ ├── juce_AudioAppComponent.cpp │ │ ├── juce_AudioAppComponent.h │ │ ├── juce_AudioDeviceSelectorComponent.cpp │ │ ├── juce_AudioDeviceSelectorComponent.h │ │ ├── juce_AudioThumbnail.cpp │ │ ├── juce_AudioThumbnail.h │ │ ├── juce_AudioThumbnailBase.h │ │ ├── juce_AudioThumbnailCache.cpp │ │ ├── juce_AudioThumbnailCache.h │ │ ├── juce_AudioVisualiserComponent.cpp │ │ ├── juce_AudioVisualiserComponent.h │ │ ├── juce_BluetoothMidiDevicePairingDialogue.h │ │ ├── juce_MidiKeyboardComponent.cpp │ │ └── juce_MidiKeyboardComponent.h │ ├── juce_audio_utils.cpp │ ├── juce_audio_utils.h │ ├── juce_audio_utils.mm │ ├── native │ │ ├── juce_android_BluetoothMidiDevicePairingDialogue.cpp │ │ ├── juce_ios_BluetoothMidiDevicePairingDialogue.mm │ │ ├── juce_linux_AudioCDReader.cpp │ │ ├── juce_linux_BluetoothMidiDevicePairingDialogue.cpp │ │ ├── juce_mac_AudioCDBurner.mm │ │ ├── juce_mac_AudioCDReader.mm │ │ ├── juce_mac_BluetoothMidiDevicePairingDialogue.mm │ │ ├── juce_win32_AudioCDBurner.cpp │ │ ├── juce_win32_AudioCDReader.cpp │ │ └── juce_win_BluetoothMidiDevicePairingDialogue.cpp │ └── players │ │ ├── juce_AudioProcessorPlayer.cpp │ │ ├── juce_AudioProcessorPlayer.h │ │ ├── juce_SoundPlayer.cpp │ │ └── juce_SoundPlayer.h │ ├── juce_blocks_basics │ ├── README.txt │ ├── blocks │ │ ├── juce_Block.cpp │ │ ├── juce_Block.h │ │ ├── juce_BlockConfigManager.h │ │ ├── juce_BlocksVersion.cpp │ │ ├── juce_BlocksVersion.h │ │ ├── juce_ControlButton.h │ │ ├── juce_LEDGrid.h │ │ ├── juce_LEDRow.h │ │ ├── juce_StatusLight.h │ │ ├── juce_TouchList.h │ │ └── juce_TouchSurface.h │ ├── juce_LittleFootFunctions.dox │ ├── juce_blocks_basics.cpp │ ├── juce_blocks_basics.h │ ├── littlefoot │ │ ├── LittleFoot Language README.txt │ │ ├── juce_LittleFootCompiler.h │ │ ├── juce_LittleFootRemoteHeap.h │ │ └── juce_LittleFootRunner.h │ ├── protocol │ │ ├── Protocol Format.txt │ │ ├── juce_BitPackingUtilities.h │ │ ├── juce_BlockModels.h │ │ ├── juce_BlocksProtocolDefinitions.h │ │ ├── juce_HostPacketBuilder.h │ │ └── juce_HostPacketDecoder.h │ ├── topology │ │ ├── internal │ │ │ ├── juce_BandwidthStatsLogger.cpp │ │ │ ├── juce_BlockImplementation.cpp │ │ │ ├── juce_BlockSerialReader.cpp │ │ │ ├── juce_ConnectedDeviceGroup.cpp │ │ │ ├── juce_DepreciatedVersionReader.cpp │ │ │ ├── juce_Detector.cpp │ │ │ ├── juce_DetectorHolder.cpp │ │ │ ├── juce_DeviceInfo.cpp │ │ │ ├── juce_MIDIDeviceDetector.cpp │ │ │ └── juce_MidiDeviceConnection.cpp │ │ ├── juce_BlockGraph.cpp │ │ ├── juce_BlockGraph.h │ │ ├── juce_PhysicalTopologySource.cpp │ │ ├── juce_PhysicalTopologySource.h │ │ ├── juce_RuleBasedTopologySource.cpp │ │ ├── juce_RuleBasedTopologySource.h │ │ ├── juce_Topology.h │ │ └── juce_TopologySource.h │ └── visualisers │ │ ├── juce_BitmapLEDProgram.cpp │ │ ├── juce_BitmapLEDProgram.h │ │ ├── juce_DrumPadLEDProgram.cpp │ │ └── juce_DrumPadLEDProgram.h │ ├── juce_box2d │ ├── box2d │ │ ├── Box2D.h │ │ ├── Collision │ │ │ ├── Shapes │ │ │ │ ├── b2ChainShape.cpp │ │ │ │ ├── b2ChainShape.h │ │ │ │ ├── b2CircleShape.cpp │ │ │ │ ├── b2CircleShape.h │ │ │ │ ├── b2EdgeShape.cpp │ │ │ │ ├── b2EdgeShape.h │ │ │ │ ├── b2PolygonShape.cpp │ │ │ │ ├── b2PolygonShape.h │ │ │ │ └── b2Shape.h │ │ │ ├── b2BroadPhase.cpp │ │ │ ├── b2BroadPhase.h │ │ │ ├── b2CollideCircle.cpp │ │ │ ├── b2CollideEdge.cpp │ │ │ ├── b2CollidePolygon.cpp │ │ │ ├── b2Collision.cpp │ │ │ ├── b2Collision.h │ │ │ ├── b2Distance.cpp │ │ │ ├── b2Distance.h │ │ │ ├── b2DynamicTree.cpp │ │ │ ├── b2DynamicTree.h │ │ │ ├── b2TimeOfImpact.cpp │ │ │ └── b2TimeOfImpact.h │ │ ├── Common │ │ │ ├── b2BlockAllocator.cpp │ │ │ ├── b2BlockAllocator.h │ │ │ ├── b2Draw.cpp │ │ │ ├── b2Draw.h │ │ │ ├── b2GrowableStack.h │ │ │ ├── b2Math.cpp │ │ │ ├── b2Math.h │ │ │ ├── b2Settings.cpp │ │ │ ├── b2Settings.h │ │ │ ├── b2StackAllocator.cpp │ │ │ ├── b2StackAllocator.h │ │ │ ├── b2Timer.cpp │ │ │ └── b2Timer.h │ │ ├── Dynamics │ │ │ ├── Contacts │ │ │ │ ├── b2ChainAndCircleContact.cpp │ │ │ │ ├── b2ChainAndCircleContact.h │ │ │ │ ├── b2ChainAndPolygonContact.cpp │ │ │ │ ├── b2ChainAndPolygonContact.h │ │ │ │ ├── b2CircleContact.cpp │ │ │ │ ├── b2CircleContact.h │ │ │ │ ├── b2Contact.cpp │ │ │ │ ├── b2Contact.h │ │ │ │ ├── b2ContactSolver.cpp │ │ │ │ ├── b2ContactSolver.h │ │ │ │ ├── b2EdgeAndCircleContact.cpp │ │ │ │ ├── b2EdgeAndCircleContact.h │ │ │ │ ├── b2EdgeAndPolygonContact.cpp │ │ │ │ ├── b2EdgeAndPolygonContact.h │ │ │ │ ├── b2PolygonAndCircleContact.cpp │ │ │ │ ├── b2PolygonAndCircleContact.h │ │ │ │ ├── b2PolygonContact.cpp │ │ │ │ └── b2PolygonContact.h │ │ │ ├── Joints │ │ │ │ ├── b2DistanceJoint.cpp │ │ │ │ ├── b2DistanceJoint.h │ │ │ │ ├── b2FrictionJoint.cpp │ │ │ │ ├── b2FrictionJoint.h │ │ │ │ ├── b2GearJoint.cpp │ │ │ │ ├── b2GearJoint.h │ │ │ │ ├── b2Joint.cpp │ │ │ │ ├── b2Joint.h │ │ │ │ ├── b2MouseJoint.cpp │ │ │ │ ├── b2MouseJoint.h │ │ │ │ ├── b2PrismaticJoint.cpp │ │ │ │ ├── b2PrismaticJoint.h │ │ │ │ ├── b2PulleyJoint.cpp │ │ │ │ ├── b2PulleyJoint.h │ │ │ │ ├── b2RevoluteJoint.cpp │ │ │ │ ├── b2RevoluteJoint.h │ │ │ │ ├── b2RopeJoint.cpp │ │ │ │ ├── b2RopeJoint.h │ │ │ │ ├── b2WeldJoint.cpp │ │ │ │ ├── b2WeldJoint.h │ │ │ │ ├── b2WheelJoint.cpp │ │ │ │ └── b2WheelJoint.h │ │ │ ├── b2Body.cpp │ │ │ ├── b2Body.h │ │ │ ├── b2ContactManager.cpp │ │ │ ├── b2ContactManager.h │ │ │ ├── b2Fixture.cpp │ │ │ ├── b2Fixture.h │ │ │ ├── b2Island.cpp │ │ │ ├── b2Island.h │ │ │ ├── b2TimeStep.h │ │ │ ├── b2World.cpp │ │ │ ├── b2World.h │ │ │ ├── b2WorldCallbacks.cpp │ │ │ └── b2WorldCallbacks.h │ │ ├── README.txt │ │ └── Rope │ │ │ ├── b2Rope.cpp │ │ │ └── b2Rope.h │ ├── juce_box2d.cpp │ ├── juce_box2d.h │ └── utils │ │ ├── juce_Box2DRenderer.cpp │ │ └── juce_Box2DRenderer.h │ ├── juce_core │ ├── containers │ │ ├── juce_AbstractFifo.cpp │ │ ├── juce_AbstractFifo.h │ │ ├── juce_Array.h │ │ ├── juce_ArrayAllocationBase.h │ │ ├── juce_ArrayBase.cpp │ │ ├── juce_ArrayBase.h │ │ ├── juce_DynamicObject.cpp │ │ ├── juce_DynamicObject.h │ │ ├── juce_ElementComparator.h │ │ ├── juce_HashMap.h │ │ ├── juce_HashMap_test.cpp │ │ ├── juce_LinkedListPointer.h │ │ ├── juce_ListenerList.h │ │ ├── juce_NamedValueSet.cpp │ │ ├── juce_NamedValueSet.h │ │ ├── juce_OwnedArray.cpp │ │ ├── juce_OwnedArray.h │ │ ├── juce_PropertySet.cpp │ │ ├── juce_PropertySet.h │ │ ├── juce_ReferenceCountedArray.cpp │ │ ├── juce_ReferenceCountedArray.h │ │ ├── juce_ScopedValueSetter.h │ │ ├── juce_SortedSet.h │ │ ├── juce_SparseSet.cpp │ │ ├── juce_SparseSet.h │ │ ├── juce_Variant.cpp │ │ └── juce_Variant.h │ ├── files │ │ ├── juce_DirectoryIterator.cpp │ │ ├── juce_DirectoryIterator.h │ │ ├── juce_File.cpp │ │ ├── juce_File.h │ │ ├── juce_FileFilter.cpp │ │ ├── juce_FileFilter.h │ │ ├── juce_FileInputStream.cpp │ │ ├── juce_FileInputStream.h │ │ ├── juce_FileOutputStream.cpp │ │ ├── juce_FileOutputStream.h │ │ ├── juce_FileSearchPath.cpp │ │ ├── juce_FileSearchPath.h │ │ ├── juce_MemoryMappedFile.h │ │ ├── juce_RangedDirectoryIterator.cpp │ │ ├── juce_RangedDirectoryIterator.h │ │ ├── juce_TemporaryFile.cpp │ │ ├── juce_TemporaryFile.h │ │ ├── juce_WildcardFileFilter.cpp │ │ └── juce_WildcardFileFilter.h │ ├── javascript │ │ ├── juce_JSON.cpp │ │ ├── juce_JSON.h │ │ ├── juce_Javascript.cpp │ │ └── juce_Javascript.h │ ├── juce_core.cpp │ ├── juce_core.h │ ├── juce_core.mm │ ├── logging │ │ ├── juce_FileLogger.cpp │ │ ├── juce_FileLogger.h │ │ ├── juce_Logger.cpp │ │ └── juce_Logger.h │ ├── maths │ │ ├── juce_BigInteger.cpp │ │ ├── juce_BigInteger.h │ │ ├── juce_Expression.cpp │ │ ├── juce_Expression.h │ │ ├── juce_MathsFunctions.h │ │ ├── juce_NormalisableRange.h │ │ ├── juce_Random.cpp │ │ ├── juce_Random.h │ │ ├── juce_Range.h │ │ └── juce_StatisticsAccumulator.h │ ├── memory │ │ ├── juce_AllocationHooks.cpp │ │ ├── juce_AllocationHooks.h │ │ ├── juce_Atomic.h │ │ ├── juce_ByteOrder.h │ │ ├── juce_ContainerDeletePolicy.h │ │ ├── juce_HeapBlock.h │ │ ├── juce_HeavyweightLeakedObjectDetector.h │ │ ├── juce_LeakedObjectDetector.h │ │ ├── juce_Memory.h │ │ ├── juce_MemoryBlock.cpp │ │ ├── juce_MemoryBlock.h │ │ ├── juce_OptionalScopedPointer.h │ │ ├── juce_ReferenceCountedObject.h │ │ ├── juce_ScopedPointer.h │ │ ├── juce_SharedResourcePointer.h │ │ ├── juce_Singleton.h │ │ └── juce_WeakReference.h │ ├── misc │ │ ├── juce_ConsoleApplication.cpp │ │ ├── juce_ConsoleApplication.h │ │ ├── juce_Result.cpp │ │ ├── juce_Result.h │ │ ├── juce_RuntimePermissions.cpp │ │ ├── juce_RuntimePermissions.h │ │ ├── juce_Uuid.cpp │ │ ├── juce_Uuid.h │ │ └── juce_WindowsRegistry.h │ ├── native │ │ ├── java │ │ │ ├── README.txt │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ ├── FragmentOverlay.java │ │ │ │ ├── JuceHTTPStream.java │ │ │ │ └── JuceInvocationHandler.java │ │ ├── javacore │ │ │ ├── app │ │ │ │ └── com │ │ │ │ │ └── rmsl │ │ │ │ │ └── juce │ │ │ │ │ └── JuceApp.java │ │ │ └── init │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ └── Java.java │ │ ├── juce_BasicNativeHeaders.h │ │ ├── juce_android_Files.cpp │ │ ├── juce_android_JNIHelpers.cpp │ │ ├── juce_android_JNIHelpers.h │ │ ├── juce_android_Misc.cpp │ │ ├── juce_android_Network.cpp │ │ ├── juce_android_RuntimePermissions.cpp │ │ ├── juce_android_SystemStats.cpp │ │ ├── juce_android_Threads.cpp │ │ ├── juce_curl_Network.cpp │ │ ├── juce_linux_CommonFile.cpp │ │ ├── juce_linux_Files.cpp │ │ ├── juce_linux_Network.cpp │ │ ├── juce_linux_SystemStats.cpp │ │ ├── juce_linux_Threads.cpp │ │ ├── juce_mac_ClangBugWorkaround.h │ │ ├── juce_mac_Files.mm │ │ ├── juce_mac_Network.mm │ │ ├── juce_mac_Strings.mm │ │ ├── juce_mac_SystemStats.mm │ │ ├── juce_mac_Threads.mm │ │ ├── juce_osx_ObjCHelpers.h │ │ ├── juce_posix_IPAddress.h │ │ ├── juce_posix_NamedPipe.cpp │ │ ├── juce_posix_SharedCode.h │ │ ├── juce_win32_ComSmartPtr.h │ │ ├── juce_win32_Files.cpp │ │ ├── juce_win32_Network.cpp │ │ ├── juce_win32_Registry.cpp │ │ ├── juce_win32_SystemStats.cpp │ │ └── juce_win32_Threads.cpp │ ├── network │ │ ├── juce_IPAddress.cpp │ │ ├── juce_IPAddress.h │ │ ├── juce_MACAddress.cpp │ │ ├── juce_MACAddress.h │ │ ├── juce_NamedPipe.cpp │ │ ├── juce_NamedPipe.h │ │ ├── juce_Socket.cpp │ │ ├── juce_Socket.h │ │ ├── juce_URL.cpp │ │ ├── juce_URL.h │ │ ├── juce_WebInputStream.cpp │ │ └── juce_WebInputStream.h │ ├── streams │ │ ├── juce_BufferedInputStream.cpp │ │ ├── juce_BufferedInputStream.h │ │ ├── juce_FileInputSource.cpp │ │ ├── juce_FileInputSource.h │ │ ├── juce_InputSource.h │ │ ├── juce_InputStream.cpp │ │ ├── juce_InputStream.h │ │ ├── juce_MemoryInputStream.cpp │ │ ├── juce_MemoryInputStream.h │ │ ├── juce_MemoryOutputStream.cpp │ │ ├── juce_MemoryOutputStream.h │ │ ├── juce_OutputStream.cpp │ │ ├── juce_OutputStream.h │ │ ├── juce_SubregionStream.cpp │ │ ├── juce_SubregionStream.h │ │ ├── juce_URLInputSource.cpp │ │ └── juce_URLInputSource.h │ ├── system │ │ ├── juce_CompilerSupport.h │ │ ├── juce_CompilerWarnings.h │ │ ├── juce_PlatformDefs.h │ │ ├── juce_StandardHeader.h │ │ ├── juce_SystemStats.cpp │ │ ├── juce_SystemStats.h │ │ └── juce_TargetPlatform.h │ ├── text │ │ ├── juce_Base64.cpp │ │ ├── juce_Base64.h │ │ ├── juce_CharPointer_ASCII.h │ │ ├── juce_CharPointer_UTF16.h │ │ ├── juce_CharPointer_UTF32.h │ │ ├── juce_CharPointer_UTF8.h │ │ ├── juce_CharacterFunctions.cpp │ │ ├── juce_CharacterFunctions.h │ │ ├── juce_Identifier.cpp │ │ ├── juce_Identifier.h │ │ ├── juce_LocalisedStrings.cpp │ │ ├── juce_LocalisedStrings.h │ │ ├── juce_NewLine.h │ │ ├── juce_String.cpp │ │ ├── juce_String.h │ │ ├── juce_StringArray.cpp │ │ ├── juce_StringArray.h │ │ ├── juce_StringPairArray.cpp │ │ ├── juce_StringPairArray.h │ │ ├── juce_StringPool.cpp │ │ ├── juce_StringPool.h │ │ ├── juce_StringRef.h │ │ ├── juce_TextDiff.cpp │ │ └── juce_TextDiff.h │ ├── threads │ │ ├── juce_ChildProcess.cpp │ │ ├── juce_ChildProcess.h │ │ ├── juce_CriticalSection.h │ │ ├── juce_DynamicLibrary.h │ │ ├── juce_HighResolutionTimer.cpp │ │ ├── juce_HighResolutionTimer.h │ │ ├── juce_InterProcessLock.h │ │ ├── juce_Process.h │ │ ├── juce_ReadWriteLock.cpp │ │ ├── juce_ReadWriteLock.h │ │ ├── juce_ScopedLock.h │ │ ├── juce_ScopedReadLock.h │ │ ├── juce_ScopedWriteLock.h │ │ ├── juce_SpinLock.h │ │ ├── juce_Thread.cpp │ │ ├── juce_Thread.h │ │ ├── juce_ThreadLocalValue.h │ │ ├── juce_ThreadPool.cpp │ │ ├── juce_ThreadPool.h │ │ ├── juce_TimeSliceThread.cpp │ │ ├── juce_TimeSliceThread.h │ │ ├── juce_WaitableEvent.cpp │ │ └── juce_WaitableEvent.h │ ├── time │ │ ├── juce_PerformanceCounter.cpp │ │ ├── juce_PerformanceCounter.h │ │ ├── juce_RelativeTime.cpp │ │ ├── juce_RelativeTime.h │ │ ├── juce_Time.cpp │ │ └── juce_Time.h │ ├── unit_tests │ │ ├── juce_UnitTest.cpp │ │ ├── juce_UnitTest.h │ │ └── juce_UnitTestCategories.h │ ├── xml │ │ ├── juce_XmlDocument.cpp │ │ ├── juce_XmlDocument.h │ │ ├── juce_XmlElement.cpp │ │ └── juce_XmlElement.h │ └── zip │ │ ├── juce_GZIPCompressorOutputStream.cpp │ │ ├── juce_GZIPCompressorOutputStream.h │ │ ├── juce_GZIPDecompressorInputStream.cpp │ │ ├── juce_GZIPDecompressorInputStream.h │ │ ├── juce_ZipFile.cpp │ │ ├── juce_ZipFile.h │ │ └── zlib │ │ ├── README │ │ ├── adler32.c │ │ ├── compress.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── zconf.h │ │ ├── zconf.in.h │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h │ ├── juce_cryptography │ ├── encryption │ │ ├── juce_BlowFish.cpp │ │ ├── juce_BlowFish.h │ │ ├── juce_Primes.cpp │ │ ├── juce_Primes.h │ │ ├── juce_RSAKey.cpp │ │ └── juce_RSAKey.h │ ├── hashing │ │ ├── juce_MD5.cpp │ │ ├── juce_MD5.h │ │ ├── juce_SHA256.cpp │ │ ├── juce_SHA256.h │ │ ├── juce_Whirlpool.cpp │ │ └── juce_Whirlpool.h │ ├── juce_cryptography.cpp │ ├── juce_cryptography.h │ └── juce_cryptography.mm │ ├── juce_data_structures │ ├── app_properties │ │ ├── juce_ApplicationProperties.cpp │ │ ├── juce_ApplicationProperties.h │ │ ├── juce_PropertiesFile.cpp │ │ └── juce_PropertiesFile.h │ ├── juce_data_structures.cpp │ ├── juce_data_structures.h │ ├── juce_data_structures.mm │ ├── undomanager │ │ ├── juce_UndoManager.cpp │ │ ├── juce_UndoManager.h │ │ └── juce_UndoableAction.h │ └── values │ │ ├── juce_CachedValue.cpp │ │ ├── juce_CachedValue.h │ │ ├── juce_Value.cpp │ │ ├── juce_Value.h │ │ ├── juce_ValueTree.cpp │ │ ├── juce_ValueTree.h │ │ ├── juce_ValueTreeSynchroniser.cpp │ │ ├── juce_ValueTreeSynchroniser.h │ │ ├── juce_ValueWithDefault.cpp │ │ └── juce_ValueWithDefault.h │ ├── juce_dsp │ ├── containers │ │ ├── juce_AudioBlock.h │ │ ├── juce_AudioBlock_test.cpp │ │ ├── juce_FixedSizeFunction.h │ │ ├── juce_FixedSizeFunction_test.cpp │ │ ├── juce_SIMDRegister.h │ │ ├── juce_SIMDRegister_Impl.h │ │ └── juce_SIMDRegister_test.cpp │ ├── filter_design │ │ ├── juce_FilterDesign.cpp │ │ └── juce_FilterDesign.h │ ├── frequency │ │ ├── juce_Convolution.cpp │ │ ├── juce_Convolution.h │ │ ├── juce_Convolution_test.cpp │ │ ├── juce_FFT.cpp │ │ ├── juce_FFT.h │ │ ├── juce_FFT_test.cpp │ │ ├── juce_Windowing.cpp │ │ └── juce_Windowing.h │ ├── juce_dsp.cpp │ ├── juce_dsp.h │ ├── juce_dsp.mm │ ├── maths │ │ ├── juce_FastMathApproximations.h │ │ ├── juce_LogRampedValue.h │ │ ├── juce_LogRampedValue_test.cpp │ │ ├── juce_LookupTable.cpp │ │ ├── juce_LookupTable.h │ │ ├── juce_Matrix.cpp │ │ ├── juce_Matrix.h │ │ ├── juce_Matrix_test.cpp │ │ ├── juce_Phase.h │ │ ├── juce_Polynomial.h │ │ ├── juce_SpecialFunctions.cpp │ │ └── juce_SpecialFunctions.h │ ├── native │ │ ├── juce_avx_SIMDNativeOps.cpp │ │ ├── juce_avx_SIMDNativeOps.h │ │ ├── juce_fallback_SIMDNativeOps.h │ │ ├── juce_neon_SIMDNativeOps.cpp │ │ ├── juce_neon_SIMDNativeOps.h │ │ ├── juce_sse_SIMDNativeOps.cpp │ │ └── juce_sse_SIMDNativeOps.h │ ├── processors │ │ ├── juce_BallisticsFilter.cpp │ │ ├── juce_BallisticsFilter.h │ │ ├── juce_DelayLine.cpp │ │ ├── juce_DelayLine.h │ │ ├── juce_DryWetMixer.cpp │ │ ├── juce_DryWetMixer.h │ │ ├── juce_FIRFilter.cpp │ │ ├── juce_FIRFilter.h │ │ ├── juce_FIRFilter_test.cpp │ │ ├── juce_FirstOrderTPTFilter.cpp │ │ ├── juce_FirstOrderTPTFilter.h │ │ ├── juce_IIRFilter.cpp │ │ ├── juce_IIRFilter.h │ │ ├── juce_IIRFilter_Impl.h │ │ ├── juce_LinkwitzRileyFilter.cpp │ │ ├── juce_LinkwitzRileyFilter.h │ │ ├── juce_Oversampling.cpp │ │ ├── juce_Oversampling.h │ │ ├── juce_Panner.cpp │ │ ├── juce_Panner.h │ │ ├── juce_ProcessContext.h │ │ ├── juce_ProcessorChain.h │ │ ├── juce_ProcessorChain_test.cpp │ │ ├── juce_ProcessorDuplicator.h │ │ ├── juce_ProcessorWrapper.h │ │ ├── juce_StateVariableFilter.h │ │ ├── juce_StateVariableTPTFilter.cpp │ │ └── juce_StateVariableTPTFilter.h │ └── widgets │ │ ├── juce_Bias.h │ │ ├── juce_Chorus.cpp │ │ ├── juce_Chorus.h │ │ ├── juce_Compressor.cpp │ │ ├── juce_Compressor.h │ │ ├── juce_Gain.h │ │ ├── juce_LadderFilter.cpp │ │ ├── juce_LadderFilter.h │ │ ├── juce_Limiter.cpp │ │ ├── juce_Limiter.h │ │ ├── juce_NoiseGate.cpp │ │ ├── juce_NoiseGate.h │ │ ├── juce_Oscillator.h │ │ ├── juce_Phaser.cpp │ │ ├── juce_Phaser.h │ │ ├── juce_Reverb.h │ │ └── juce_WaveShaper.h │ ├── juce_events │ ├── broadcasters │ │ ├── juce_ActionBroadcaster.cpp │ │ ├── juce_ActionBroadcaster.h │ │ ├── juce_ActionListener.h │ │ ├── juce_AsyncUpdater.cpp │ │ ├── juce_AsyncUpdater.h │ │ ├── juce_ChangeBroadcaster.cpp │ │ ├── juce_ChangeBroadcaster.h │ │ └── juce_ChangeListener.h │ ├── interprocess │ │ ├── juce_ConnectedChildProcess.cpp │ │ ├── juce_ConnectedChildProcess.h │ │ ├── juce_InterprocessConnection.cpp │ │ ├── juce_InterprocessConnection.h │ │ ├── juce_InterprocessConnectionServer.cpp │ │ ├── juce_InterprocessConnectionServer.h │ │ ├── juce_NetworkServiceDiscovery.cpp │ │ └── juce_NetworkServiceDiscovery.h │ ├── juce_events.cpp │ ├── juce_events.h │ ├── juce_events.mm │ ├── messages │ │ ├── juce_ApplicationBase.cpp │ │ ├── juce_ApplicationBase.h │ │ ├── juce_CallbackMessage.h │ │ ├── juce_DeletedAtShutdown.cpp │ │ ├── juce_DeletedAtShutdown.h │ │ ├── juce_Initialisation.h │ │ ├── juce_Message.h │ │ ├── juce_MessageListener.cpp │ │ ├── juce_MessageListener.h │ │ ├── juce_MessageManager.cpp │ │ ├── juce_MessageManager.h │ │ ├── juce_MountedVolumeListChangeDetector.h │ │ └── juce_NotificationType.h │ ├── native │ │ ├── juce_android_Messaging.cpp │ │ ├── juce_ios_MessageManager.mm │ │ ├── juce_linux_EventLoop.h │ │ ├── juce_linux_Messaging.cpp │ │ ├── juce_mac_MessageManager.mm │ │ ├── juce_osx_MessageQueue.h │ │ ├── juce_win32_HiddenMessageWindow.h │ │ ├── juce_win32_Messaging.cpp │ │ ├── juce_win32_WinRTWrapper.cpp │ │ └── juce_win32_WinRTWrapper.h │ └── timers │ │ ├── juce_MultiTimer.cpp │ │ ├── juce_MultiTimer.h │ │ ├── juce_Timer.cpp │ │ └── juce_Timer.h │ ├── juce_graphics │ ├── colour │ │ ├── juce_Colour.cpp │ │ ├── juce_Colour.h │ │ ├── juce_ColourGradient.cpp │ │ ├── juce_ColourGradient.h │ │ ├── juce_Colours.cpp │ │ ├── juce_Colours.h │ │ ├── juce_FillType.cpp │ │ ├── juce_FillType.h │ │ └── juce_PixelFormats.h │ ├── contexts │ │ ├── juce_GraphicsContext.cpp │ │ ├── juce_GraphicsContext.h │ │ ├── juce_LowLevelGraphicsContext.h │ │ ├── juce_LowLevelGraphicsPostScriptRenderer.cpp │ │ ├── juce_LowLevelGraphicsPostScriptRenderer.h │ │ ├── juce_LowLevelGraphicsSoftwareRenderer.cpp │ │ └── juce_LowLevelGraphicsSoftwareRenderer.h │ ├── effects │ │ ├── juce_DropShadowEffect.cpp │ │ ├── juce_DropShadowEffect.h │ │ ├── juce_GlowEffect.cpp │ │ ├── juce_GlowEffect.h │ │ └── juce_ImageEffectFilter.h │ ├── fonts │ │ ├── juce_AttributedString.cpp │ │ ├── juce_AttributedString.h │ │ ├── juce_CustomTypeface.cpp │ │ ├── juce_CustomTypeface.h │ │ ├── juce_Font.cpp │ │ ├── juce_Font.h │ │ ├── juce_GlyphArrangement.cpp │ │ ├── juce_GlyphArrangement.h │ │ ├── juce_TextLayout.cpp │ │ ├── juce_TextLayout.h │ │ ├── juce_Typeface.cpp │ │ └── juce_Typeface.h │ ├── geometry │ │ ├── juce_AffineTransform.cpp │ │ ├── juce_AffineTransform.h │ │ ├── juce_BorderSize.h │ │ ├── juce_EdgeTable.cpp │ │ ├── juce_EdgeTable.h │ │ ├── juce_Line.h │ │ ├── juce_Parallelogram.h │ │ ├── juce_Path.cpp │ │ ├── juce_Path.h │ │ ├── juce_PathIterator.cpp │ │ ├── juce_PathIterator.h │ │ ├── juce_PathStrokeType.cpp │ │ ├── juce_PathStrokeType.h │ │ ├── juce_Point.h │ │ ├── juce_Rectangle.h │ │ └── juce_RectangleList.h │ ├── image_formats │ │ ├── jpglib │ │ │ ├── README │ │ │ ├── cderror.h │ │ │ ├── changes to libjpeg for JUCE.txt │ │ │ ├── jcapimin.c │ │ │ ├── jcapistd.c │ │ │ ├── jccoefct.c │ │ │ ├── jccolor.c │ │ │ ├── jcdctmgr.c │ │ │ ├── jchuff.c │ │ │ ├── jchuff.h │ │ │ ├── jcinit.c │ │ │ ├── jcmainct.c │ │ │ ├── jcmarker.c │ │ │ ├── jcmaster.c │ │ │ ├── jcomapi.c │ │ │ ├── jconfig.h │ │ │ ├── jcparam.c │ │ │ ├── jcphuff.c │ │ │ ├── jcprepct.c │ │ │ ├── jcsample.c │ │ │ ├── jctrans.c │ │ │ ├── jdapimin.c │ │ │ ├── jdapistd.c │ │ │ ├── jdatasrc.c │ │ │ ├── jdcoefct.c │ │ │ ├── jdcolor.c │ │ │ ├── jdct.h │ │ │ ├── jddctmgr.c │ │ │ ├── jdhuff.c │ │ │ ├── jdhuff.h │ │ │ ├── jdinput.c │ │ │ ├── jdmainct.c │ │ │ ├── jdmarker.c │ │ │ ├── jdmaster.c │ │ │ ├── jdmerge.c │ │ │ ├── jdphuff.c │ │ │ ├── jdpostct.c │ │ │ ├── jdsample.c │ │ │ ├── jdtrans.c │ │ │ ├── jerror.c │ │ │ ├── jerror.h │ │ │ ├── jfdctflt.c │ │ │ ├── jfdctfst.c │ │ │ ├── jfdctint.c │ │ │ ├── jidctflt.c │ │ │ ├── jidctfst.c │ │ │ ├── jidctint.c │ │ │ ├── jidctred.c │ │ │ ├── jinclude.h │ │ │ ├── jmemmgr.c │ │ │ ├── jmemnobs.c │ │ │ ├── jmemsys.h │ │ │ ├── jmorecfg.h │ │ │ ├── jpegint.h │ │ │ ├── jpeglib.h │ │ │ ├── jquant1.c │ │ │ ├── jquant2.c │ │ │ ├── jutils.c │ │ │ ├── jversion.h │ │ │ ├── transupp.c │ │ │ └── transupp.h │ │ ├── juce_GIFLoader.cpp │ │ ├── juce_JPEGLoader.cpp │ │ ├── juce_PNGLoader.cpp │ │ └── pnglib │ │ │ ├── LICENSE │ │ │ ├── libpng_readme.txt │ │ │ ├── png.c │ │ │ ├── png.h │ │ │ ├── pngconf.h │ │ │ ├── pngdebug.h │ │ │ ├── pngerror.c │ │ │ ├── pngget.c │ │ │ ├── pnginfo.h │ │ │ ├── pngmem.c │ │ │ ├── pngpread.c │ │ │ ├── pngpriv.h │ │ │ ├── pngread.c │ │ │ ├── pngrio.c │ │ │ ├── pngrtran.c │ │ │ ├── pngrutil.c │ │ │ ├── pngset.c │ │ │ ├── pngstruct.h │ │ │ ├── pngtrans.c │ │ │ ├── pngwio.c │ │ │ ├── pngwrite.c │ │ │ ├── pngwtran.c │ │ │ └── pngwutil.c │ ├── images │ │ ├── juce_Image.cpp │ │ ├── juce_Image.h │ │ ├── juce_ImageCache.cpp │ │ ├── juce_ImageCache.h │ │ ├── juce_ImageConvolutionKernel.cpp │ │ ├── juce_ImageConvolutionKernel.h │ │ ├── juce_ImageFileFormat.cpp │ │ └── juce_ImageFileFormat.h │ ├── juce_graphics.cpp │ ├── juce_graphics.h │ ├── juce_graphics.mm │ ├── native │ │ ├── juce_RenderingHelpers.h │ │ ├── juce_android_Fonts.cpp │ │ ├── juce_android_GraphicsContext.cpp │ │ ├── juce_android_IconHelpers.cpp │ │ ├── juce_freetype_Fonts.cpp │ │ ├── juce_linux_Fonts.cpp │ │ ├── juce_linux_IconHelpers.cpp │ │ ├── juce_mac_CoreGraphicsContext.h │ │ ├── juce_mac_CoreGraphicsContext.mm │ │ ├── juce_mac_CoreGraphicsHelpers.h │ │ ├── juce_mac_Fonts.mm │ │ ├── juce_mac_IconHelpers.cpp │ │ ├── juce_win32_Direct2DGraphicsContext.cpp │ │ ├── juce_win32_Direct2DGraphicsContext.h │ │ ├── juce_win32_DirectWriteTypeLayout.cpp │ │ ├── juce_win32_DirectWriteTypeface.cpp │ │ ├── juce_win32_Fonts.cpp │ │ └── juce_win32_IconHelpers.cpp │ └── placement │ │ ├── juce_Justification.h │ │ ├── juce_RectanglePlacement.cpp │ │ └── juce_RectanglePlacement.h │ ├── juce_gui_basics │ ├── application │ │ ├── juce_Application.cpp │ │ └── juce_Application.h │ ├── buttons │ │ ├── juce_ArrowButton.cpp │ │ ├── juce_ArrowButton.h │ │ ├── juce_Button.cpp │ │ ├── juce_Button.h │ │ ├── juce_DrawableButton.cpp │ │ ├── juce_DrawableButton.h │ │ ├── juce_HyperlinkButton.cpp │ │ ├── juce_HyperlinkButton.h │ │ ├── juce_ImageButton.cpp │ │ ├── juce_ImageButton.h │ │ ├── juce_ShapeButton.cpp │ │ ├── juce_ShapeButton.h │ │ ├── juce_TextButton.cpp │ │ ├── juce_TextButton.h │ │ ├── juce_ToggleButton.cpp │ │ ├── juce_ToggleButton.h │ │ ├── juce_ToolbarButton.cpp │ │ └── juce_ToolbarButton.h │ ├── commands │ │ ├── juce_ApplicationCommandID.h │ │ ├── juce_ApplicationCommandInfo.cpp │ │ ├── juce_ApplicationCommandInfo.h │ │ ├── juce_ApplicationCommandManager.cpp │ │ ├── juce_ApplicationCommandManager.h │ │ ├── juce_ApplicationCommandTarget.cpp │ │ ├── juce_ApplicationCommandTarget.h │ │ ├── juce_KeyPressMappingSet.cpp │ │ └── juce_KeyPressMappingSet.h │ ├── components │ │ ├── juce_CachedComponentImage.h │ │ ├── juce_Component.cpp │ │ ├── juce_Component.h │ │ ├── juce_ComponentListener.cpp │ │ ├── juce_ComponentListener.h │ │ ├── juce_ModalComponentManager.cpp │ │ └── juce_ModalComponentManager.h │ ├── desktop │ │ ├── juce_Desktop.cpp │ │ ├── juce_Desktop.h │ │ ├── juce_Displays.cpp │ │ └── juce_Displays.h │ ├── drawables │ │ ├── juce_Drawable.cpp │ │ ├── juce_Drawable.h │ │ ├── juce_DrawableComposite.cpp │ │ ├── juce_DrawableComposite.h │ │ ├── juce_DrawableImage.cpp │ │ ├── juce_DrawableImage.h │ │ ├── juce_DrawablePath.cpp │ │ ├── juce_DrawablePath.h │ │ ├── juce_DrawableRectangle.cpp │ │ ├── juce_DrawableRectangle.h │ │ ├── juce_DrawableShape.cpp │ │ ├── juce_DrawableShape.h │ │ ├── juce_DrawableText.cpp │ │ ├── juce_DrawableText.h │ │ └── juce_SVGParser.cpp │ ├── filebrowser │ │ ├── juce_ContentSharer.cpp │ │ ├── juce_ContentSharer.h │ │ ├── juce_DirectoryContentsDisplayComponent.cpp │ │ ├── juce_DirectoryContentsDisplayComponent.h │ │ ├── juce_DirectoryContentsList.cpp │ │ ├── juce_DirectoryContentsList.h │ │ ├── juce_FileBrowserComponent.cpp │ │ ├── juce_FileBrowserComponent.h │ │ ├── juce_FileBrowserListener.h │ │ ├── juce_FileChooser.cpp │ │ ├── juce_FileChooser.h │ │ ├── juce_FileChooserDialogBox.cpp │ │ ├── juce_FileChooserDialogBox.h │ │ ├── juce_FileListComponent.cpp │ │ ├── juce_FileListComponent.h │ │ ├── juce_FilePreviewComponent.h │ │ ├── juce_FileSearchPathListComponent.cpp │ │ ├── juce_FileSearchPathListComponent.h │ │ ├── juce_FileTreeComponent.cpp │ │ ├── juce_FileTreeComponent.h │ │ ├── juce_FilenameComponent.cpp │ │ ├── juce_FilenameComponent.h │ │ ├── juce_ImagePreviewComponent.cpp │ │ └── juce_ImagePreviewComponent.h │ ├── juce_gui_basics.cpp │ ├── juce_gui_basics.h │ ├── juce_gui_basics.mm │ ├── keyboard │ │ ├── juce_CaretComponent.cpp │ │ ├── juce_CaretComponent.h │ │ ├── juce_KeyListener.cpp │ │ ├── juce_KeyListener.h │ │ ├── juce_KeyPress.cpp │ │ ├── juce_KeyPress.h │ │ ├── juce_KeyboardFocusTraverser.cpp │ │ ├── juce_KeyboardFocusTraverser.h │ │ ├── juce_ModifierKeys.cpp │ │ ├── juce_ModifierKeys.h │ │ ├── juce_SystemClipboard.h │ │ ├── juce_TextEditorKeyMapper.h │ │ └── juce_TextInputTarget.h │ ├── layout │ │ ├── juce_AnimatedPosition.h │ │ ├── juce_AnimatedPositionBehaviours.h │ │ ├── juce_ComponentAnimator.cpp │ │ ├── juce_ComponentAnimator.h │ │ ├── juce_ComponentBoundsConstrainer.cpp │ │ ├── juce_ComponentBoundsConstrainer.h │ │ ├── juce_ComponentBuilder.cpp │ │ ├── juce_ComponentBuilder.h │ │ ├── juce_ComponentMovementWatcher.cpp │ │ ├── juce_ComponentMovementWatcher.h │ │ ├── juce_ConcertinaPanel.cpp │ │ ├── juce_ConcertinaPanel.h │ │ ├── juce_FlexBox.cpp │ │ ├── juce_FlexBox.h │ │ ├── juce_FlexItem.h │ │ ├── juce_Grid.cpp │ │ ├── juce_Grid.h │ │ ├── juce_GridItem.cpp │ │ ├── juce_GridItem.h │ │ ├── juce_GroupComponent.cpp │ │ ├── juce_GroupComponent.h │ │ ├── juce_MultiDocumentPanel.cpp │ │ ├── juce_MultiDocumentPanel.h │ │ ├── juce_ResizableBorderComponent.cpp │ │ ├── juce_ResizableBorderComponent.h │ │ ├── juce_ResizableCornerComponent.cpp │ │ ├── juce_ResizableCornerComponent.h │ │ ├── juce_ResizableEdgeComponent.cpp │ │ ├── juce_ResizableEdgeComponent.h │ │ ├── juce_ScrollBar.cpp │ │ ├── juce_ScrollBar.h │ │ ├── juce_SidePanel.cpp │ │ ├── juce_SidePanel.h │ │ ├── juce_StretchableLayoutManager.cpp │ │ ├── juce_StretchableLayoutManager.h │ │ ├── juce_StretchableLayoutResizerBar.cpp │ │ ├── juce_StretchableLayoutResizerBar.h │ │ ├── juce_StretchableObjectResizer.cpp │ │ ├── juce_StretchableObjectResizer.h │ │ ├── juce_TabbedButtonBar.cpp │ │ ├── juce_TabbedButtonBar.h │ │ ├── juce_TabbedComponent.cpp │ │ ├── juce_TabbedComponent.h │ │ ├── juce_Viewport.cpp │ │ └── juce_Viewport.h │ ├── lookandfeel │ │ ├── juce_LookAndFeel.cpp │ │ ├── juce_LookAndFeel.h │ │ ├── juce_LookAndFeel_V1.cpp │ │ ├── juce_LookAndFeel_V1.h │ │ ├── juce_LookAndFeel_V2.cpp │ │ ├── juce_LookAndFeel_V2.h │ │ ├── juce_LookAndFeel_V3.cpp │ │ ├── juce_LookAndFeel_V3.h │ │ ├── juce_LookAndFeel_V4.cpp │ │ └── juce_LookAndFeel_V4.h │ ├── menus │ │ ├── juce_BurgerMenuComponent.cpp │ │ ├── juce_BurgerMenuComponent.h │ │ ├── juce_MenuBarComponent.cpp │ │ ├── juce_MenuBarComponent.h │ │ ├── juce_MenuBarModel.cpp │ │ ├── juce_MenuBarModel.h │ │ ├── juce_PopupMenu.cpp │ │ └── juce_PopupMenu.h │ ├── misc │ │ ├── juce_BubbleComponent.cpp │ │ ├── juce_BubbleComponent.h │ │ ├── juce_DropShadower.cpp │ │ ├── juce_DropShadower.h │ │ ├── juce_JUCESplashScreen.cpp │ │ └── juce_JUCESplashScreen.h │ ├── mouse │ │ ├── juce_ComponentDragger.cpp │ │ ├── juce_ComponentDragger.h │ │ ├── juce_DragAndDropContainer.cpp │ │ ├── juce_DragAndDropContainer.h │ │ ├── juce_DragAndDropTarget.h │ │ ├── juce_FileDragAndDropTarget.h │ │ ├── juce_LassoComponent.h │ │ ├── juce_MouseCursor.cpp │ │ ├── juce_MouseCursor.h │ │ ├── juce_MouseEvent.cpp │ │ ├── juce_MouseEvent.h │ │ ├── juce_MouseInactivityDetector.cpp │ │ ├── juce_MouseInactivityDetector.h │ │ ├── juce_MouseInputSource.cpp │ │ ├── juce_MouseInputSource.h │ │ ├── juce_MouseListener.cpp │ │ ├── juce_MouseListener.h │ │ ├── juce_SelectedItemSet.h │ │ ├── juce_TextDragAndDropTarget.h │ │ └── juce_TooltipClient.h │ ├── native │ │ ├── java │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ ├── ComponentPeerView.java │ │ │ │ ├── JuceContentProviderCursor.java │ │ │ │ └── JuceContentProviderFileObserver.java │ │ ├── javaopt │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ ├── JuceActivity.java │ │ │ │ └── JuceSharingContentProvider.java │ │ ├── juce_MultiTouchMapper.h │ │ ├── juce_android_ContentSharer.cpp │ │ ├── juce_android_FileChooser.cpp │ │ ├── juce_android_Windowing.cpp │ │ ├── juce_common_MimeTypes.cpp │ │ ├── juce_ios_ContentSharer.cpp │ │ ├── juce_ios_FileChooser.mm │ │ ├── juce_ios_UIViewComponentPeer.mm │ │ ├── juce_ios_Windowing.mm │ │ ├── juce_linux_FileChooser.cpp │ │ ├── juce_linux_Windowing.cpp │ │ ├── juce_mac_FileChooser.mm │ │ ├── juce_mac_MainMenu.mm │ │ ├── juce_mac_MouseCursor.mm │ │ ├── juce_mac_NSViewComponentPeer.mm │ │ ├── juce_mac_Windowing.mm │ │ ├── juce_win32_DragAndDrop.cpp │ │ ├── juce_win32_FileChooser.cpp │ │ ├── juce_win32_Windowing.cpp │ │ └── x11 │ │ │ ├── juce_linux_X11_DragAndDrop.cpp │ │ │ ├── juce_linux_X11_Symbols.cpp │ │ │ ├── juce_linux_X11_Symbols.h │ │ │ ├── juce_linux_XWindowSystem.cpp │ │ │ └── juce_linux_XWindowSystem.h │ ├── positioning │ │ ├── juce_MarkerList.cpp │ │ ├── juce_MarkerList.h │ │ ├── juce_RelativeCoordinate.cpp │ │ ├── juce_RelativeCoordinate.h │ │ ├── juce_RelativeCoordinatePositioner.cpp │ │ ├── juce_RelativeCoordinatePositioner.h │ │ ├── juce_RelativeParallelogram.cpp │ │ ├── juce_RelativeParallelogram.h │ │ ├── juce_RelativePoint.cpp │ │ ├── juce_RelativePoint.h │ │ ├── juce_RelativePointPath.cpp │ │ ├── juce_RelativePointPath.h │ │ ├── juce_RelativeRectangle.cpp │ │ └── juce_RelativeRectangle.h │ ├── properties │ │ ├── juce_BooleanPropertyComponent.cpp │ │ ├── juce_BooleanPropertyComponent.h │ │ ├── juce_ButtonPropertyComponent.cpp │ │ ├── juce_ButtonPropertyComponent.h │ │ ├── juce_ChoicePropertyComponent.cpp │ │ ├── juce_ChoicePropertyComponent.h │ │ ├── juce_MultiChoicePropertyComponent.cpp │ │ ├── juce_MultiChoicePropertyComponent.h │ │ ├── juce_PropertyComponent.cpp │ │ ├── juce_PropertyComponent.h │ │ ├── juce_PropertyPanel.cpp │ │ ├── juce_PropertyPanel.h │ │ ├── juce_SliderPropertyComponent.cpp │ │ ├── juce_SliderPropertyComponent.h │ │ ├── juce_TextPropertyComponent.cpp │ │ └── juce_TextPropertyComponent.h │ ├── widgets │ │ ├── juce_ComboBox.cpp │ │ ├── juce_ComboBox.h │ │ ├── juce_ImageComponent.cpp │ │ ├── juce_ImageComponent.h │ │ ├── juce_Label.cpp │ │ ├── juce_Label.h │ │ ├── juce_ListBox.cpp │ │ ├── juce_ListBox.h │ │ ├── juce_ProgressBar.cpp │ │ ├── juce_ProgressBar.h │ │ ├── juce_Slider.cpp │ │ ├── juce_Slider.h │ │ ├── juce_TableHeaderComponent.cpp │ │ ├── juce_TableHeaderComponent.h │ │ ├── juce_TableListBox.cpp │ │ ├── juce_TableListBox.h │ │ ├── juce_TextEditor.cpp │ │ ├── juce_TextEditor.h │ │ ├── juce_Toolbar.cpp │ │ ├── juce_Toolbar.h │ │ ├── juce_ToolbarItemComponent.cpp │ │ ├── juce_ToolbarItemComponent.h │ │ ├── juce_ToolbarItemFactory.h │ │ ├── juce_ToolbarItemPalette.cpp │ │ ├── juce_ToolbarItemPalette.h │ │ ├── juce_TreeView.cpp │ │ └── juce_TreeView.h │ └── windows │ │ ├── juce_AlertWindow.cpp │ │ ├── juce_AlertWindow.h │ │ ├── juce_CallOutBox.cpp │ │ ├── juce_CallOutBox.h │ │ ├── juce_ComponentPeer.cpp │ │ ├── juce_ComponentPeer.h │ │ ├── juce_DialogWindow.cpp │ │ ├── juce_DialogWindow.h │ │ ├── juce_DocumentWindow.cpp │ │ ├── juce_DocumentWindow.h │ │ ├── juce_NativeMessageBox.h │ │ ├── juce_ResizableWindow.cpp │ │ ├── juce_ResizableWindow.h │ │ ├── juce_ThreadWithProgressWindow.cpp │ │ ├── juce_ThreadWithProgressWindow.h │ │ ├── juce_TooltipWindow.cpp │ │ ├── juce_TooltipWindow.h │ │ ├── juce_TopLevelWindow.cpp │ │ └── juce_TopLevelWindow.h │ ├── juce_gui_extra │ ├── code_editor │ │ ├── juce_CPlusPlusCodeTokeniser.cpp │ │ ├── juce_CPlusPlusCodeTokeniser.h │ │ ├── juce_CPlusPlusCodeTokeniserFunctions.h │ │ ├── juce_CodeDocument.cpp │ │ ├── juce_CodeDocument.h │ │ ├── juce_CodeEditorComponent.cpp │ │ ├── juce_CodeEditorComponent.h │ │ ├── juce_CodeTokeniser.h │ │ ├── juce_LuaCodeTokeniser.cpp │ │ ├── juce_LuaCodeTokeniser.h │ │ ├── juce_XMLCodeTokeniser.cpp │ │ └── juce_XMLCodeTokeniser.h │ ├── documents │ │ ├── juce_FileBasedDocument.cpp │ │ └── juce_FileBasedDocument.h │ ├── embedding │ │ ├── juce_ActiveXControlComponent.h │ │ ├── juce_AndroidViewComponent.h │ │ ├── juce_HWNDComponent.h │ │ ├── juce_NSViewComponent.h │ │ ├── juce_ScopedDPIAwarenessDisabler.h │ │ ├── juce_UIViewComponent.h │ │ └── juce_XEmbedComponent.h │ ├── juce_gui_extra.cpp │ ├── juce_gui_extra.h │ ├── juce_gui_extra.mm │ ├── misc │ │ ├── juce_AnimatedAppComponent.cpp │ │ ├── juce_AnimatedAppComponent.h │ │ ├── juce_AppleRemote.h │ │ ├── juce_BubbleMessageComponent.cpp │ │ ├── juce_BubbleMessageComponent.h │ │ ├── juce_ColourSelector.cpp │ │ ├── juce_ColourSelector.h │ │ ├── juce_KeyMappingEditorComponent.cpp │ │ ├── juce_KeyMappingEditorComponent.h │ │ ├── juce_LiveConstantEditor.cpp │ │ ├── juce_LiveConstantEditor.h │ │ ├── juce_PreferencesPanel.cpp │ │ ├── juce_PreferencesPanel.h │ │ ├── juce_PushNotifications.cpp │ │ ├── juce_PushNotifications.h │ │ ├── juce_RecentlyOpenedFilesList.cpp │ │ ├── juce_RecentlyOpenedFilesList.h │ │ ├── juce_SplashScreen.cpp │ │ ├── juce_SplashScreen.h │ │ ├── juce_SystemTrayIconComponent.cpp │ │ ├── juce_SystemTrayIconComponent.h │ │ └── juce_WebBrowserComponent.h │ └── native │ │ ├── java │ │ └── app │ │ │ └── com │ │ │ └── rmsl │ │ │ └── juce │ │ │ ├── JuceWebView.java │ │ │ └── JuceWebView21.java │ │ ├── javaopt │ │ └── app │ │ │ └── com │ │ │ └── rmsl │ │ │ └── juce │ │ │ ├── JuceFirebaseInstanceIdService.java │ │ │ └── JuceFirebaseMessagingService.java │ │ ├── juce_AndroidViewComponent.cpp │ │ ├── juce_android_PushNotifications.cpp │ │ ├── juce_android_WebBrowserComponent.cpp │ │ ├── juce_ios_PushNotifications.cpp │ │ ├── juce_ios_UIViewComponent.mm │ │ ├── juce_linux_X11_SystemTrayIcon.cpp │ │ ├── juce_linux_X11_WebBrowserComponent.cpp │ │ ├── juce_linux_XEmbedComponent.cpp │ │ ├── juce_mac_AppleRemote.mm │ │ ├── juce_mac_CarbonViewWrapperComponent.h │ │ ├── juce_mac_NSViewComponent.mm │ │ ├── juce_mac_PushNotifications.cpp │ │ ├── juce_mac_SystemTrayIcon.cpp │ │ ├── juce_mac_WebBrowserComponent.mm │ │ ├── juce_win32_ActiveXComponent.cpp │ │ ├── juce_win32_HWNDComponent.cpp │ │ ├── juce_win32_SystemTrayIcon.cpp │ │ └── juce_win32_WebBrowserComponent.cpp │ ├── juce_opengl │ ├── geometry │ │ ├── juce_Draggable3DOrientation.h │ │ ├── juce_Matrix3D.h │ │ ├── juce_Quaternion.h │ │ └── juce_Vector3D.h │ ├── juce_opengl.cpp │ ├── juce_opengl.h │ ├── juce_opengl.mm │ ├── native │ │ ├── java │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ └── JuceOpenGLView.java │ │ ├── juce_MissingGLDefinitions.h │ │ ├── juce_OpenGLExtensions.h │ │ ├── juce_OpenGL_android.h │ │ ├── juce_OpenGL_ios.h │ │ ├── juce_OpenGL_linux_X11.h │ │ ├── juce_OpenGL_osx.h │ │ └── juce_OpenGL_win32.h │ ├── opengl │ │ ├── juce_OpenGLContext.cpp │ │ ├── juce_OpenGLContext.h │ │ ├── juce_OpenGLFrameBuffer.cpp │ │ ├── juce_OpenGLFrameBuffer.h │ │ ├── juce_OpenGLGraphicsContext.cpp │ │ ├── juce_OpenGLGraphicsContext.h │ │ ├── juce_OpenGLHelpers.cpp │ │ ├── juce_OpenGLHelpers.h │ │ ├── juce_OpenGLImage.cpp │ │ ├── juce_OpenGLImage.h │ │ ├── juce_OpenGLPixelFormat.cpp │ │ ├── juce_OpenGLPixelFormat.h │ │ ├── juce_OpenGLRenderer.h │ │ ├── juce_OpenGLShaderProgram.cpp │ │ ├── juce_OpenGLShaderProgram.h │ │ ├── juce_OpenGLTexture.cpp │ │ └── juce_OpenGLTexture.h │ └── utils │ │ ├── juce_OpenGLAppComponent.cpp │ │ └── juce_OpenGLAppComponent.h │ ├── juce_osc │ ├── juce_osc.cpp │ ├── juce_osc.h │ └── osc │ │ ├── juce_OSCAddress.cpp │ │ ├── juce_OSCAddress.h │ │ ├── juce_OSCArgument.cpp │ │ ├── juce_OSCArgument.h │ │ ├── juce_OSCBundle.cpp │ │ ├── juce_OSCBundle.h │ │ ├── juce_OSCMessage.cpp │ │ ├── juce_OSCMessage.h │ │ ├── juce_OSCReceiver.cpp │ │ ├── juce_OSCReceiver.h │ │ ├── juce_OSCSender.cpp │ │ ├── juce_OSCSender.h │ │ ├── juce_OSCTimeTag.cpp │ │ ├── juce_OSCTimeTag.h │ │ ├── juce_OSCTypes.cpp │ │ └── juce_OSCTypes.h │ ├── juce_product_unlocking │ ├── in_app_purchases │ │ ├── juce_InAppPurchases.cpp │ │ └── juce_InAppPurchases.h │ ├── juce_product_unlocking.cpp │ ├── juce_product_unlocking.h │ ├── juce_product_unlocking.mm │ ├── marketplace │ │ ├── juce_KeyFileGeneration.h │ │ ├── juce_OnlineUnlockForm.cpp │ │ ├── juce_OnlineUnlockForm.h │ │ ├── juce_OnlineUnlockStatus.cpp │ │ ├── juce_OnlineUnlockStatus.h │ │ ├── juce_TracktionMarketplaceStatus.cpp │ │ └── juce_TracktionMarketplaceStatus.h │ └── native │ │ ├── javaopt │ │ └── app │ │ │ └── com │ │ │ └── rmsl │ │ │ └── juce │ │ │ └── JuceBillingClient.java │ │ ├── juce_android_InAppPurchases.cpp │ │ └── juce_ios_InAppPurchases.cpp │ └── juce_video │ ├── capture │ ├── juce_CameraDevice.cpp │ └── juce_CameraDevice.h │ ├── juce_video.cpp │ ├── juce_video.h │ ├── juce_video.mm │ ├── native │ ├── java │ │ └── app │ │ │ └── com │ │ │ └── rmsl │ │ │ └── juce │ │ │ ├── CameraCaptureSessionCaptureCallback.java │ │ │ ├── CameraCaptureSessionStateCallback.java │ │ │ ├── CameraDeviceStateCallback.java │ │ │ ├── JuceOrientationEventListener.java │ │ │ ├── MediaControllerCallback.java │ │ │ ├── MediaSessionCallback.java │ │ │ └── SystemVolumeObserver.java │ ├── juce_android_CameraDevice.h │ ├── juce_android_Video.h │ ├── juce_ios_CameraDevice.h │ ├── juce_mac_CameraDevice.h │ ├── juce_mac_Video.h │ ├── juce_win32_CameraDevice.h │ └── juce_win32_Video.h │ └── playback │ ├── juce_VideoComponent.cpp │ └── juce_VideoComponent.h ├── JuceLibraryCode ├── AppConfig.h ├── 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_core_CompilationTime.cpp ├── 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_graphics_Harfbuzz.cpp ├── include_juce_graphics_Sheenbidi.c ├── 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 ├── README.md ├── RandomModule.h ├── Regression ├── 2osc_gate.slb ├── 3OscV10 ├── 3osc ├── 3oscV2.slb ├── 3osc_broad.slb ├── 4osctest.slb ├── 4osctest2.slb ├── all_modules.slb ├── all_modules_audio.xml ├── all_modules_tracks.xml ├── audiorecorder.slb ├── bounce_audio.slb ├── bounce_audio_audio.xml ├── bounce_audio_tracks.xml ├── box.slb ├── box_audio.xml ├── box_tracks.xml ├── bt.slb ├── bt_audio.xml ├── bt_tracks.xml ├── debussy.slb ├── debussy_audio.xml ├── debussy_tracks.xml ├── donut.slb ├── donut_audio.xml ├── donut_tracks.xml ├── dual_macro.slb ├── eq.slb ├── eq_audio.xml ├── eq_tracks.xml ├── geomusic.slb ├── geomusic_audio.xml ├── geomusic_tracks.xml ├── jk_flipflop.slb ├── jk_flipflop_audio.xml ├── jk_flipflop_tracks.xml ├── magnitude.slb ├── magnitude_audio.xml ├── magnitude_tracks.xml ├── midi_controller.slb ├── midi_controller_audio.xml ├── midi_controller_tracks.xml ├── midi_in.slb ├── midi_in_audio.xml ├── midi_in_tracks.xml ├── miditest.slb ├── miditest_audio.xml ├── miditest_tracks.xml ├── padtest.slb ├── pitchbend.slb ├── productiontest1.slb ├── productiontest1_audio.xml ├── productiontest1_tracks.xml ├── scope.slb ├── scope_audio.xml ├── scope_tracks.xml ├── sh_echo.slb ├── sr_flip_flop.slb ├── sr_flip_flop_audio.xml ├── sr_flip_flop_tracks.xml ├── step1.slb ├── step2.slb ├── step3.slb ├── twosongs.slb ├── twosongs_audio.xml ├── twosongs_tracks.xml ├── visualizer.slb ├── visualizer_audio.xml ├── visualizer_tracks.xml ├── viz2.slb ├── viz2_audio.xml └── viz2_tracks.xml ├── Source ├── .DS_Store ├── ADSRModule.cpp ├── ADSRModule.h ├── Actions │ ├── AddConnectionAction.cpp │ ├── AddConnectionAction.h │ ├── AddModuleAction.cpp │ ├── AddModuleAction.h │ ├── AlignHorizontalAction.cpp │ ├── AlignHorizontalAction.h │ ├── AlignVerticalAction.cpp │ ├── AlignVerticalAction.h │ ├── DefaultUndoableAction.h │ ├── DuplicateModuleAction.cpp │ ├── DuplicateModuleAction.h │ ├── FadeRegionAction.cpp │ ├── FadeRegionAction.h │ ├── MoveRegionAction.cpp │ ├── MoveRegionAction.h │ ├── MoveSelectedAction.cpp │ ├── MoveSelectedAction.h │ ├── NormalizeRegionAction.cpp │ ├── NormalizeRegionAction.h │ ├── RemoveSelectedAction.cpp │ ├── RemoveSelectedAction.h │ ├── SetGainForRegionAction.cpp │ └── SetGainForRegionAction.h ├── AddValueModule.cpp ├── AddValueModule.h ├── AdderModule.cpp ├── AdderModule.h ├── AndModule.cpp ├── AndModule.h ├── AudioEngine │ ├── ADSR.cpp │ ├── ADSR.h │ ├── AudioProcessorModule.h │ ├── BPMDetector.h │ ├── BasicDelayLine.cpp │ ├── BasicDelayLine.h │ ├── Compressor.cpp │ ├── Compressor.h │ ├── Distortion.cpp │ ├── Distortion.h │ ├── Event.cpp │ ├── Event.h │ ├── EventListener.h │ ├── Filter.cpp │ ├── Filter.h │ ├── FractionalDelayBuffer.cpp │ ├── FractionalDelayBuffer.h │ ├── HighPassFilter.cpp │ ├── HighPassFilter.h │ ├── LowPassFilter.cpp │ ├── LowPassFilter.h │ ├── ModTarget.cpp │ ├── ModTarget.h │ ├── Modulation.cpp │ ├── Modulation.h │ ├── Modulator.h │ ├── MonoEffect.h │ ├── MultimodeFilter.cpp │ ├── MultimodeFilter.h │ ├── MultimodeOscillator.cpp │ ├── MultimodeOscillator.h │ ├── Note.cpp │ ├── Note.h │ ├── OfflinePlayHead.h │ ├── Oszillator.cpp │ ├── Oszillator.h │ ├── Pulse.cpp │ ├── Pulse.h │ ├── Random.cpp │ ├── Random.h │ ├── Sampler.cpp │ ├── Sampler.h │ ├── Sawtooth.cpp │ ├── Sawtooth.h │ ├── Sine.cpp │ ├── Sine.h │ ├── SmartSample.h │ ├── StereoDelay.cpp │ ├── StereoDelay.h │ ├── StereoEffect.h │ ├── StereoReverb.cpp │ ├── StereoReverb.h │ ├── Voice.cpp │ ├── Voice.h │ ├── WaveTable.cpp │ ├── WaveTable.h │ ├── WhiteNoise.cpp │ └── WhiteNoise.h ├── AudioIn.cpp ├── AudioIn.h ├── AudioLevelMeter.cpp ├── AudioLevelMeter.h ├── AudioManager.cpp ├── AudioManager.h ├── AudioModule.h ├── AudioOut.cpp ├── AudioOut.h ├── AudioRecorderEditor.cpp ├── AudioRecorderEditor.h ├── AudioRecorderModule.cpp ├── AudioRecorderModule.h ├── AudioRecorderPanel.cpp ├── AudioRecorderPanel.h ├── AudioThumbnailComponent.cpp ├── AudioThumbnailComponent.h ├── AudioUtils.h ├── AuxOut.cpp ├── AuxOut.h ├── BounceDialog.cpp ├── BounceDialog.h ├── BounceProgressDialog.h ├── BoxModule.cpp ├── BoxModule.h ├── Cell.cpp ├── Cell.h ├── ChatGPTInterface.h ├── ChorusModule.cpp ├── ChorusModule.h ├── CloseableTabButton.cpp ├── CloseableTabButton.h ├── CommandParser.h ├── CompareModule.cpp ├── CompareModule.h ├── ComponentTreeDebugger.cpp ├── ComponentTreeDebugger.h ├── CompressorModule.cpp ├── CompressorModule.h ├── Connection.cpp ├── Connection.h ├── Constant.cpp ├── Constant.h ├── CustomLookAndFeel.cpp ├── CustomLookAndFeel.h ├── DefaultToolbarItemFactory.h ├── DefaultUndoManager.h ├── DelayModule.cpp ├── DelayModule.h ├── DisplayValueModule.cpp ├── DisplayValueModule.h ├── DistortionModule.cpp ├── DistortionModule.h ├── DonutModule.cpp ├── DonutModule.h ├── DragConstrainer.h ├── EditorComponent.cpp ├── EditorComponent.h ├── EditorListener.h ├── ElegantDarkLookAndFeel.h ├── EventDisplayModule.cpp ├── EventDisplayModule.h ├── ExtendedFileBrowser.cpp ├── ExtendedFileBrowser.h ├── FadeDialog.cpp ├── FadeDialog.h ├── FeedbackModule.cpp ├── FeedbackModule.h ├── FileButtonPropertyComponent.cpp ├── FileButtonPropertyComponent.h ├── GainDialog.cpp ├── GainDialog.h ├── GainModule.cpp ├── GainModule.h ├── GeometryModule.cpp ├── GeometryModule.h ├── GeometryViewComponent.h ├── Graphics │ └── Geometry.h ├── HPFilterModule.cpp ├── HPFilterModule.h ├── HTTPServer.cpp ├── HTTPServer.h ├── IEditor.h ├── ISampleEditor.h ├── ImageModule.cpp ├── ImageModule.h ├── ImageToggleButton.cpp ├── ImageToggleButton.h ├── InverterModule.cpp ├── InverterModule.h ├── KeyboardModule.cpp ├── KeyboardModule.h ├── Knob.cpp ├── Knob.h ├── LPFilterModule.cpp ├── LPFilterModule.h ├── LabelModule.cpp ├── LabelModule.h ├── LedModule.cpp ├── LedModule.h ├── Macros.h ├── MagnitudeModule.cpp ├── MagnitudeModule.h ├── Main.cpp ├── MainComponent.cpp ├── MainComponent.h ├── MainTabbedComponent.cpp ├── MainTabbedComponent.h ├── MergeGeometryModule.cpp ├── MergeGeometryModule.h ├── MessageBus │ ├── BusListener.h │ ├── FastBus.h │ ├── MessageBus.cpp │ ├── MessageBus.h │ ├── Topic.cpp │ └── Topic.h ├── Metronome.cpp ├── Metronome.h ├── MidiClock.cpp ├── MidiClock.h ├── MidiGate.cpp ├── MidiGate.h ├── MidiNote.cpp ├── MidiNote.h ├── MidiOut.cpp ├── MidiOut.h ├── MidiProcessor.cpp ├── MidiProcessor.h ├── MidiRecorder │ ├── Logger.h │ ├── MidiEventEditor.cpp │ ├── MidiEventEditor.h │ ├── MidiRecorder.cpp │ ├── MidiRecorder.h │ ├── MidiRecorderPanel.cpp │ ├── MidiRecorderPanel.h │ └── RecordListener.h ├── MidiRecorderModule.cpp ├── MidiRecorderModule.h ├── MidiRegionEventEditor.h ├── Mixer.cpp ├── Mixer.h ├── MixerModule.cpp ├── MixerModule.h ├── MixerPanel.cpp ├── MixerPanel.h ├── ModernLookAndFeel.cpp ├── ModernLookAndFeel.h ├── Module.cpp ├── Module.h ├── ModuleBrowser.cpp ├── ModuleBrowser.h ├── ModuleBrowserTable.h ├── ModuleUtils.cpp ├── ModuleUtils.h ├── Monophonic.h ├── MultiComponentDragger.h ├── MultiplyModule.cpp ├── MultiplyModule.h ├── NamedItem.h ├── NoiseModule.cpp ├── NoiseModule.h ├── NotModule.cpp ├── NotModule.h ├── OneShotTimer.h ├── OrModule.cpp ├── OrModule.h ├── OscillatorModule.h ├── OscilloscopeModule.cpp ├── OscilloscopeModule.h ├── PadModule.cpp ├── PadModule.h ├── PianoRollComponent.cpp ├── PianoRollComponent.h ├── Pin.cpp ├── Pin.h ├── PitchBendModule.cpp ├── PitchBendModule.h ├── PitchToFrequencyModule.cpp ├── PitchToFrequencyModule.h ├── PluginModule.cpp ├── PluginModule.h ├── PluginSelectorDialog.h ├── Plugins │ ├── PluginManager.cpp │ └── PluginManager.h ├── PrefabFactory.cpp ├── PrefabFactory.h ├── Project │ ├── AudioClip.cpp │ ├── AudioClip.h │ ├── AuxBusConfig.cpp │ ├── AuxBusConfig.h │ ├── AuxSendConfig.cpp │ ├── AuxSendConfig.h │ ├── EffectConfig.cpp │ ├── EffectConfig.h │ ├── InstrumentConfig.cpp │ ├── InstrumentConfig.h │ ├── MixerConfig.cpp │ ├── MixerConfig.h │ ├── Project.cpp │ ├── Project.h │ ├── ProjectConfig.cpp │ ├── ProjectConfig.h │ ├── RegionConfig.cpp │ ├── RegionConfig.h │ ├── TrackConfig.cpp │ └── TrackConfig.h ├── PropertyView.cpp ├── PropertyView.h ├── PublisherModule.cpp ├── PublisherModule.h ├── RandomModule.cpp ├── RandomModule.h ├── ResizeConstrainer.h ├── ReverbModule.cpp ├── ReverbModule.h ├── SampleEditor.cpp ├── SampleEditor.h ├── SamplePropertiesPanel.cpp ├── SamplePropertiesPanel.h ├── SamplerModule.cpp ├── SamplerModule.h ├── SawtoothModule.cpp ├── SawtoothModule.h ├── SelectionModel.cpp ├── SelectionModel.h ├── SequenceEditor.cpp ├── SequenceEditor.h ├── Session.cpp ├── Session.h ├── ShellConsoleComponent.h ├── SilenceDialog.cpp ├── SilenceDialog.h ├── SineModule.cpp ├── SineModule.h ├── SliderModule.cpp ├── SliderModule.h ├── SpektrumAnalyzer.cpp ├── SpektrumAnalyzer.h ├── StepSequencerModule.cpp ├── StepSequencerModule.h ├── SubscriberModule.cpp ├── SubscriberModule.h ├── SwitchSignalModule.cpp ├── SwitchSignalModule.h ├── SwitchValueModule.cpp ├── SwitchValueModule.h ├── SynthEditor.cpp ├── SynthEditor.h ├── SynthlabAudioProcessor.cpp ├── SynthlabAudioProcessor.h ├── Terminal.h ├── TerminalModule.cpp ├── TerminalModule.h ├── TextInputModule.cpp ├── TextInputModule.h ├── ThreeBandEQModule.cpp ├── ThreeBandEQModule.h ├── ToolbarComboBox.cpp ├── ToolbarComboBox.h ├── TrackIn.cpp ├── TrackIn.h ├── TrackUtil.h ├── Tracks │ ├── AudioRegion.cpp │ ├── AudioRegion.h │ ├── BounceThread.cpp │ ├── BounceThread.h │ ├── DragConstrainer.h │ ├── MasterChannelPanel.cpp │ ├── MasterChannelPanel.h │ ├── MidiRegion.cpp │ ├── MidiRegion.h │ ├── MidiThumbnail.cpp │ ├── MidiThumbnail.h │ ├── PositionMarker.cpp │ ├── PositionMarker.h │ ├── Region.cpp │ ├── Region.h │ ├── TimeLine.cpp │ ├── TimeLine.h │ ├── Track.cpp │ ├── Track.h │ ├── TrackNavigator.cpp │ ├── TrackNavigator.h │ ├── TrackPropertyConstrainer.h │ ├── TrackPropertyPanel.cpp │ ├── TrackPropertyPanel.h │ ├── TrackPropertyView.cpp │ ├── TrackPropertyView.h │ ├── TrackResizer.h │ ├── WaveSelector.cpp │ └── WaveSelector.h ├── TransformGeometryModule.cpp ├── TransformGeometryModule.h ├── TransportDisplayComponent.cpp ├── TransportDisplayComponent.h ├── TriggerTimerModule.cpp ├── TriggerTimerModule.h ├── TrimDialog.cpp ├── TrimDialog.h ├── UITools.h ├── ValueToEvent.cpp ├── ValueToEvent.h ├── VectorModule.cpp ├── VectorModule.h ├── VocoderModule.cpp ├── VocoderModule.h ├── VolumeAdjustable.h └── rubberband │ ├── RubberBandStretcher.h │ └── ext │ ├── float_cast │ └── float_cast.h │ ├── getopt │ ├── getopt.c │ ├── getopt.h │ ├── getopt_long.c │ └── unistd.h │ ├── kissfft │ ├── COPYING │ ├── _kiss_fft_guts.h │ ├── kiss_fft.c │ ├── kiss_fft.h │ ├── kiss_fft_log.h │ ├── kiss_fftr.c │ └── kiss_fftr.h │ ├── pommier │ ├── neon_mathfun.h │ └── sse_mathfun.h │ └── speex │ ├── COPYING │ ├── resample.c │ └── speex_resampler.h ├── Synthlab.jucer ├── _config.yml ├── delaytest_env ├── docs ├── ModuleDevelopmentGuide.md ├── SynthlabUserGuide.md ├── adsr.txt ├── highpass.txt ├── images │ ├── synthlab1.jpeg │ ├── synthlab2.jpeg │ ├── synthlab3.jpeg │ ├── synthlab4.jpeg │ ├── synthlab5.png │ ├── synthlab6.png │ └── synthlab7.png ├── lowpass.txt └── oscillator.txt ├── lib ├── .DS_Store ├── debug │ └── librubberband.lib ├── gtest │ ├── internal │ │ ├── custom │ │ │ ├── gtest-port.h │ │ │ ├── gtest-printers.h │ │ │ └── gtest.h │ │ ├── gtest-death-test-internal.h │ │ ├── gtest-filepath.h │ │ ├── gtest-internal.h │ │ ├── gtest-linked_ptr.h │ │ ├── gtest-param-util-generated.h │ │ ├── gtest-param-util.h │ │ ├── gtest-port-arch.h │ │ ├── gtest-port.h │ │ ├── gtest-string.h │ │ ├── gtest-tuple.h │ │ └── gtest-type-util.h │ └── src │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ └── gtest.cc ├── librubberband-debug.lib ├── librubberband.lib └── release │ └── librubberband.lib ├── modules └── libusb │ ├── .DS_Store │ ├── .private │ ├── README.txt │ ├── bd.cmd │ ├── bm.sh │ ├── bwince.cmd │ ├── post-rewrite.sh │ ├── pre-commit.sh │ ├── wbs.txt │ └── wbs_wince.txt │ ├── .travis.yml │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL_WIN.txt │ ├── Makefile.am │ ├── NEWS │ ├── PORTING │ ├── README │ ├── README.git │ ├── README.md │ ├── TODO │ ├── Xcode │ ├── common.xcconfig │ ├── debug.xcconfig │ ├── libusb.xcconfig │ ├── libusb.xcodeproj │ │ └── project.pbxproj │ ├── libusb_debug.xcconfig │ ├── libusb_release.xcconfig │ └── release.xcconfig │ ├── android │ ├── README │ └── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ ├── examples.mk │ │ ├── libusb.mk │ │ └── tests.mk │ ├── appveyor.yml │ ├── appveyor_cygwin.bat │ ├── appveyor_minGW.bat │ ├── autogen.sh │ ├── bootstrap.sh │ ├── configure.ac │ ├── doc │ ├── Makefile.am │ ├── doxygen.cfg.in │ └── libusb.png │ ├── examples │ ├── Makefile.am │ ├── dpfp.c │ ├── dpfp_threaded.c │ ├── ezusb.c │ ├── ezusb.h │ ├── fxload.c │ ├── getopt │ │ ├── getopt.c │ │ ├── getopt.h │ │ └── getopt1.c │ ├── hotplugtest.c │ ├── listdevs.c │ ├── sam3u_benchmark.c │ ├── testlibusb.c │ └── xusb.c │ ├── libusb-1.0.pc.in │ ├── libusb │ ├── Makefile.am │ ├── core.c │ ├── descriptor.c │ ├── hotplug.c │ ├── hotplug.h │ ├── io.c │ ├── libusb-1.0.def │ ├── libusb-1.0.rc │ ├── libusb.h │ ├── libusbi.h │ ├── os │ │ ├── darwin_usb.c │ │ ├── darwin_usb.h │ │ ├── haiku_pollfs.cpp │ │ ├── haiku_usb.h │ │ ├── haiku_usb_backend.cpp │ │ ├── haiku_usb_raw.cpp │ │ ├── haiku_usb_raw.h │ │ ├── linux_netlink.c │ │ ├── linux_udev.c │ │ ├── linux_usbfs.c │ │ ├── linux_usbfs.h │ │ ├── netbsd_usb.c │ │ ├── openbsd_usb.c │ │ ├── poll_posix.c │ │ ├── poll_posix.h │ │ ├── poll_windows.c │ │ ├── poll_windows.h │ │ ├── sunos_usb.c │ │ ├── sunos_usb.h │ │ ├── threads_posix.c │ │ ├── threads_posix.h │ │ ├── threads_windows.c │ │ ├── threads_windows.h │ │ ├── wince_usb.c │ │ ├── wince_usb.h │ │ ├── windows_common.h │ │ ├── windows_nt_common.c │ │ ├── windows_nt_common.h │ │ ├── windows_usbdk.c │ │ ├── windows_usbdk.h │ │ ├── windows_winusb.c │ │ └── windows_winusb.h │ ├── strerror.c │ ├── sync.c │ ├── version.h │ └── version_nano.h │ ├── msvc │ ├── appveyor.bat │ ├── config.h │ ├── ddk_build.cmd │ ├── errno.h │ ├── fxload_2010.vcxproj │ ├── fxload_2010.vcxproj.filters │ ├── fxload_2012.vcxproj │ ├── fxload_2012.vcxproj.filters │ ├── fxload_2013.vcxproj │ ├── fxload_2015.vcxproj │ ├── fxload_sources │ ├── getopt_2005.vcproj │ ├── getopt_2010.vcxproj │ ├── getopt_2010.vcxproj.filters │ ├── getopt_2012.vcxproj │ ├── getopt_2012.vcxproj.filters │ ├── getopt_2013.vcxproj │ ├── getopt_2015.vcxproj │ ├── getopt_sources │ ├── hotplugtest_2010.vcxproj │ ├── hotplugtest_2010.vcxproj.filters │ ├── hotplugtest_2012.vcxproj │ ├── hotplugtest_2012.vcxproj.filters │ ├── hotplugtest_2013.vcxproj │ ├── hotplugtest_2015.vcxproj │ ├── hotplugtest_sources │ ├── inttypes.h │ ├── libusb.dsw │ ├── libusb_2005.sln │ ├── libusb_2010.sln │ ├── libusb_2012.sln │ ├── libusb_2013.sln │ ├── libusb_2015.sln │ ├── libusb_dll.dsp │ ├── libusb_dll_2005.vcproj │ ├── libusb_dll_2010.vcxproj │ ├── libusb_dll_2010.vcxproj.filters │ ├── libusb_dll_2012.vcxproj │ ├── libusb_dll_2012.vcxproj.filters │ ├── libusb_dll_2013.vcxproj │ ├── libusb_dll_2015.vcxproj │ ├── libusb_dll_wince.vcproj │ ├── libusb_sources │ ├── libusb_static.dsp │ ├── libusb_static_2005.vcproj │ ├── libusb_static_2010.vcxproj │ ├── libusb_static_2010.vcxproj.filters │ ├── libusb_static_2012.vcxproj │ ├── libusb_static_2012.vcxproj.filters │ ├── libusb_static_2013.vcxproj │ ├── libusb_static_2015.vcxproj │ ├── libusb_static_wince.vcproj │ ├── libusb_usbdk_dll_2013.vcxproj │ ├── libusb_usbdk_dll_2015.vcxproj │ ├── libusb_usbdk_static_2013.vcxproj │ ├── libusb_usbdk_static_2015.vcxproj │ ├── libusb_wince.sln │ ├── listdevs.dsp │ ├── listdevs_2005.vcproj │ ├── listdevs_2010.vcxproj │ ├── listdevs_2010.vcxproj.filters │ ├── listdevs_2012.vcxproj │ ├── listdevs_2012.vcxproj.filters │ ├── listdevs_2013.vcxproj │ ├── listdevs_2015.vcxproj │ ├── listdevs_sources │ ├── listdevs_wince.vcproj │ ├── missing.c │ ├── missing.h │ ├── stdint.h │ ├── stress_2005.vcproj │ ├── stress_2010.vcxproj │ ├── stress_2010.vcxproj.filters │ ├── stress_2012.vcxproj │ ├── stress_2012.vcxproj.filters │ ├── stress_2013.vcxproj │ ├── stress_2015.vcxproj │ ├── stress_wince.vcproj │ ├── xusb.dsp │ ├── xusb_2005.vcproj │ ├── xusb_2010.vcxproj │ ├── xusb_2010.vcxproj.filters │ ├── xusb_2012.vcxproj │ ├── xusb_2012.vcxproj.filters │ ├── xusb_2013.vcxproj │ ├── xusb_2015.vcxproj │ ├── xusb_sources │ └── xusb_wince.vcproj │ ├── tests │ ├── Makefile.am │ ├── libusb_testlib.h │ ├── stress.c │ └── testlib.c │ └── travis-autogen.sh ├── rubberband ├── RubberBandStretcher.h └── rubberband-c.h └── samples ├── boom.aif ├── sst-24b.wav └── sst.wav /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Builds/** 2 | -------------------------------------------------------------------------------- /Images/Fader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/Fader.png -------------------------------------------------------------------------------- /Images/Knob_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/Knob_64.png -------------------------------------------------------------------------------- /Images/adder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/adder.png -------------------------------------------------------------------------------- /Images/adsr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/adsr.png -------------------------------------------------------------------------------- /Images/apicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/apicon.png -------------------------------------------------------------------------------- /Images/appicon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/appicon.psd -------------------------------------------------------------------------------- /Images/audiorecorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/audiorecorder.png -------------------------------------------------------------------------------- /Images/auxmodule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/auxmodule.png -------------------------------------------------------------------------------- /Images/backward-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/backward-solid.png -------------------------------------------------------------------------------- /Images/chorus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/chorus.png -------------------------------------------------------------------------------- /Images/circle-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/circle-solid.png -------------------------------------------------------------------------------- /Images/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/clock.png -------------------------------------------------------------------------------- /Images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/close.png -------------------------------------------------------------------------------- /Images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/delete.png -------------------------------------------------------------------------------- /Images/display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/display.png -------------------------------------------------------------------------------- /Images/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/divider.png -------------------------------------------------------------------------------- /Images/fast-backward-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/fast-backward-solid.png -------------------------------------------------------------------------------- /Images/fast-forward-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/fast-forward-solid.png -------------------------------------------------------------------------------- /Images/forward-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/forward-solid.png -------------------------------------------------------------------------------- /Images/hp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/hp.png -------------------------------------------------------------------------------- /Images/icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/icons.psd -------------------------------------------------------------------------------- /Images/infinity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/infinity.png -------------------------------------------------------------------------------- /Images/inverter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/inverter.png -------------------------------------------------------------------------------- /Images/knob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/knob.png -------------------------------------------------------------------------------- /Images/led_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/led_off.png -------------------------------------------------------------------------------- /Images/led_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/led_on.png -------------------------------------------------------------------------------- /Images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/lock.png -------------------------------------------------------------------------------- /Images/logic_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/logic_and.png -------------------------------------------------------------------------------- /Images/logic_not.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/logic_not.png -------------------------------------------------------------------------------- /Images/logic_or.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/logic_or.png -------------------------------------------------------------------------------- /Images/lp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/lp.png -------------------------------------------------------------------------------- /Images/magnitue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/magnitue.png -------------------------------------------------------------------------------- /Images/merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/merge.png -------------------------------------------------------------------------------- /Images/micro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/micro.png -------------------------------------------------------------------------------- /Images/midiin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/midiin.png -------------------------------------------------------------------------------- /Images/midiout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/midiout.png -------------------------------------------------------------------------------- /Images/mixer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/mixer.png -------------------------------------------------------------------------------- /Images/mixer_128px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/mixer_128px.png -------------------------------------------------------------------------------- /Images/module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/module.png -------------------------------------------------------------------------------- /Images/multiplier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/multiplier.png -------------------------------------------------------------------------------- /Images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/new.png -------------------------------------------------------------------------------- /Images/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/note.png -------------------------------------------------------------------------------- /Images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/open.png -------------------------------------------------------------------------------- /Images/p2f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/p2f.png -------------------------------------------------------------------------------- /Images/pause-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/pause-solid.png -------------------------------------------------------------------------------- /Images/play-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/play-solid.png -------------------------------------------------------------------------------- /Images/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/plugin.png -------------------------------------------------------------------------------- /Images/pulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/pulse.png -------------------------------------------------------------------------------- /Images/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/random.png -------------------------------------------------------------------------------- /Images/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/record.png -------------------------------------------------------------------------------- /Images/record_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/record_active.png -------------------------------------------------------------------------------- /Images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/redo.png -------------------------------------------------------------------------------- /Images/round_button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/round_button.jpg -------------------------------------------------------------------------------- /Images/round_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/round_button.png -------------------------------------------------------------------------------- /Images/round_button_pushed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/round_button_pushed.png -------------------------------------------------------------------------------- /Images/sampler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/sampler.png -------------------------------------------------------------------------------- /Images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/save.png -------------------------------------------------------------------------------- /Images/saw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/saw.png -------------------------------------------------------------------------------- /Images/sawtooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/sawtooth.png -------------------------------------------------------------------------------- /Images/scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/scope.png -------------------------------------------------------------------------------- /Images/sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/sequence.png -------------------------------------------------------------------------------- /Images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/settings.png -------------------------------------------------------------------------------- /Images/sine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/sine.png -------------------------------------------------------------------------------- /Images/snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/snapshot.png -------------------------------------------------------------------------------- /Images/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/speaker.png -------------------------------------------------------------------------------- /Images/stereodelay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/stereodelay.png -------------------------------------------------------------------------------- /Images/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/stop.png -------------------------------------------------------------------------------- /Images/synthlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/synthlab.png -------------------------------------------------------------------------------- /Images/transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/transform.png -------------------------------------------------------------------------------- /Images/tri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/tri.png -------------------------------------------------------------------------------- /Images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/undo.png -------------------------------------------------------------------------------- /Images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/unlock.png -------------------------------------------------------------------------------- /Images/vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/vector.png -------------------------------------------------------------------------------- /Images/whitenoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Images/whitenoise.png -------------------------------------------------------------------------------- /JUCE/.github/ISSUE_TEMPLATE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/.github/ISSUE_TEMPLATE.txt -------------------------------------------------------------------------------- /JUCE/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/.gitignore -------------------------------------------------------------------------------- /JUCE/.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | include: 2 | - project: 'juce-repos/JUCE-utils' 3 | file: '/CI/gitlab-ci.yml' 4 | 5 | -------------------------------------------------------------------------------- /JUCE/BREAKING-CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/BREAKING-CHANGES.txt -------------------------------------------------------------------------------- /JUCE/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/ChangeList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/ChangeList.txt -------------------------------------------------------------------------------- /JUCE/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/LICENSE.md -------------------------------------------------------------------------------- /JUCE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/README.md -------------------------------------------------------------------------------- /JUCE/docs/CMake API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/docs/CMake API.md -------------------------------------------------------------------------------- /JUCE/docs/JUCE Module Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/docs/JUCE Module Format.md -------------------------------------------------------------------------------- /JUCE/docs/Linux Dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/docs/Linux Dependencies.md -------------------------------------------------------------------------------- /JUCE/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/docs/README.md -------------------------------------------------------------------------------- /JUCE/docs/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/docs/doxygen/Doxyfile -------------------------------------------------------------------------------- /JUCE/docs/doxygen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/docs/doxygen/Makefile -------------------------------------------------------------------------------- /JUCE/docs/doxygen/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/docs/doxygen/make.bat -------------------------------------------------------------------------------- /JUCE/docs/doxygen/process_source_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/docs/doxygen/process_source_files.py -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/AddPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Box2DTests/AddPair.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Box2DTests/Bridge.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Car.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Box2DTests/Car.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Box2DTests/Chain.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Confined.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Box2DTests/Confined.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Dominos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Box2DTests/Dominos.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/EdgeTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Box2DTests/EdgeTest.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Gears.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Box2DTests/Gears.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Pinball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Box2DTests/Pinball.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Pulleys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Box2DTests/Pulleys.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Pyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Box2DTests/Pyramid.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/RayCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Box2DTests/RayCast.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Revolute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Box2DTests/Revolute.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Box2DTests/Rope.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Tiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Box2DTests/Tiles.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Tumbler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Box2DTests/Tumbler.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Box2DTests/Web.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Box2DTests/Web.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/DSPDemos_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/DSPDemos_Common.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/DemoUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/DemoUtilities.h -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Ed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Purchases/Ed.png -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Ed0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Purchases/Ed0.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Ed1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Purchases/Ed1.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Ed2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Purchases/Ed2.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Fabian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Purchases/Fabian.png -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Fabian0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Purchases/Fabian0.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Fabian1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Purchases/Fabian1.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/Fabian2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Purchases/Fabian2.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/JB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Purchases/JB.png -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/JB0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Purchases/JB0.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/JB1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Purchases/JB1.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/JB2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Purchases/JB2.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/Purchases/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Purchases/icon.png -------------------------------------------------------------------------------- /JUCE/examples/Assets/Signing/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/Signing/README.txt -------------------------------------------------------------------------------- /JUCE/examples/Assets/cello.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/cello.wav -------------------------------------------------------------------------------- /JUCE/examples/Assets/guitar_amp.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/guitar_amp.wav -------------------------------------------------------------------------------- /JUCE/examples/Assets/icons.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/icons.zip -------------------------------------------------------------------------------- /JUCE/examples/Assets/juce_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/juce_icon.png -------------------------------------------------------------------------------- /JUCE/examples/Assets/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/juce_module_info -------------------------------------------------------------------------------- /JUCE/examples/Assets/portmeirion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/portmeirion.jpg -------------------------------------------------------------------------------- /JUCE/examples/Assets/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/power.png -------------------------------------------------------------------------------- /JUCE/examples/Assets/proaudio.path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/proaudio.path -------------------------------------------------------------------------------- /JUCE/examples/Assets/reverb_ir.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/reverb_ir.wav -------------------------------------------------------------------------------- /JUCE/examples/Assets/singing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/singing.ogg -------------------------------------------------------------------------------- /JUCE/examples/Assets/teapot.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/teapot.obj -------------------------------------------------------------------------------- /JUCE/examples/Assets/treedemo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Assets/treedemo.xml -------------------------------------------------------------------------------- /JUCE/examples/Audio/AudioAppDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Audio/AudioAppDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Audio/AudioLatencyDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Audio/AudioLatencyDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Audio/AudioPlaybackDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Audio/AudioPlaybackDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Audio/AudioSettingsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Audio/AudioSettingsDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Audio/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/Audio/MPEDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Audio/MPEDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Audio/MidiDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Audio/MidiDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Audio/SimpleFFTDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Audio/SimpleFFTDemo.h -------------------------------------------------------------------------------- /JUCE/examples/BLOCKS/BlocksSynthDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/BLOCKS/BlocksSynthDemo.h -------------------------------------------------------------------------------- /JUCE/examples/BLOCKS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/BLOCKS/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/CMake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/CMake/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/CMake/ConsoleApp/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/CMake/ConsoleApp/Main.cpp -------------------------------------------------------------------------------- /JUCE/examples/CMake/GuiApp/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/CMake/GuiApp/Main.cpp -------------------------------------------------------------------------------- /JUCE/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/DSP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/DSP/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/DSP/ConvolutionDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/DSP/ConvolutionDemo.h -------------------------------------------------------------------------------- /JUCE/examples/DSP/FIRFilterDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/DSP/FIRFilterDemo.h -------------------------------------------------------------------------------- /JUCE/examples/DSP/GainDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/DSP/GainDemo.h -------------------------------------------------------------------------------- /JUCE/examples/DSP/IIRFilterDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/DSP/IIRFilterDemo.h -------------------------------------------------------------------------------- /JUCE/examples/DSP/OscillatorDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/DSP/OscillatorDemo.h -------------------------------------------------------------------------------- /JUCE/examples/DSP/OverdriveDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/DSP/OverdriveDemo.h -------------------------------------------------------------------------------- /JUCE/examples/DSP/SIMDRegisterDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/DSP/SIMDRegisterDemo.h -------------------------------------------------------------------------------- /JUCE/examples/DSP/WaveShaperTanhDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/DSP/WaveShaperTanhDemo.h -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/Builds/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'DemoRunner' 2 | include ':app' -------------------------------------------------------------------------------- /JUCE/examples/DemoRunner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/DemoRunner/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/GUI/AnimationAppDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/AnimationAppDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/AnimationDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/AnimationDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/GUI/CameraDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/CameraDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/CodeEditorDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/CodeEditorDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/ComponentDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/ComponentDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/DialogsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/DialogsDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/FlexBoxDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/FlexBoxDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/FontsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/FontsDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/GraphicsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/GraphicsDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/GridDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/GridDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/HelloWorldDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/HelloWorldDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/ImagesDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/ImagesDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/KeyMappingsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/KeyMappingsDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/LookAndFeelDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/LookAndFeelDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/MDIDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/MDIDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/MenusDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/MenusDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/MultiTouchDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/MultiTouchDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/OpenGLAppDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/OpenGLAppDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/OpenGLDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/OpenGLDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/OpenGLDemo2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/OpenGLDemo2D.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/PropertiesDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/PropertiesDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/VideoDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/VideoDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/WebBrowserDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/WebBrowserDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/WidgetsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/WidgetsDemo.h -------------------------------------------------------------------------------- /JUCE/examples/GUI/WindowsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/GUI/WindowsDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Plugins/AudioPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Plugins/AudioPluginDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Plugins/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/Plugins/GainPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Plugins/GainPluginDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Utilities/Box2DDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Utilities/Box2DDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Utilities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Utilities/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/examples/Utilities/OSCDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Utilities/OSCDemo.h -------------------------------------------------------------------------------- /JUCE/examples/Utilities/UnitTestsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/examples/Utilities/UnitTestsDemo.h -------------------------------------------------------------------------------- /JUCE/extras/AudioPerformanceTest/Builds/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'AudioPerformanceTest' 2 | include ':app' -------------------------------------------------------------------------------- /JUCE/extras/AudioPluginHost/Builds/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'AudioPluginHost' 2 | include ':app' -------------------------------------------------------------------------------- /JUCE/extras/BLOCKS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/extras/BLOCKS/Makefile -------------------------------------------------------------------------------- /JUCE/extras/Build/CMake/JUCEUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/extras/Build/CMake/JUCEUtils.cmake -------------------------------------------------------------------------------- /JUCE/extras/Build/CMake/copyDir.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/extras/Build/CMake/copyDir.cmake -------------------------------------------------------------------------------- /JUCE/extras/Build/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/extras/Build/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/extras/Build/juceaide/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/extras/Build/juceaide/Main.cpp -------------------------------------------------------------------------------- /JUCE/extras/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/extras/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/extras/NetworkGraphicsDemo/Builds/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'NetworkGraphicsDemo' 2 | include ':app' -------------------------------------------------------------------------------- /JUCE/extras/Projucer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/extras/Projucer/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/extras/Projucer/Projucer.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/extras/Projucer/Projucer.jucer -------------------------------------------------------------------------------- /JUCE/extras/WindowsDLL/WindowsDLL.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/extras/WindowsDLL/WindowsDLL.jucer -------------------------------------------------------------------------------- /JUCE/modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/CMakeLists.txt -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/box2d/Box2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_box2d/box2d/Box2D.h -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/juce_box2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_box2d/juce_box2d.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_box2d/juce_box2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_box2d/juce_box2d.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_core/juce_core.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_core/juce_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_core/juce_core.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_core/juce_core.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_core/misc/juce_Uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_core/misc/juce_Uuid.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/time/juce_Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_core/time/juce_Time.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_core/zip/zlib/README -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_core/zip/zlib/crc32.c -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_core/zip/zlib/crc32.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_core/zip/zlib/trees.c -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_core/zip/zlib/trees.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_core/zip/zlib/zconf.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_core/zip/zlib/zlib.h -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_core/zip/zlib/zutil.c -------------------------------------------------------------------------------- /JUCE/modules/juce_core/zip/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_core/zip/zlib/zutil.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/juce_dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_dsp/juce_dsp.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/juce_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_dsp/juce_dsp.h -------------------------------------------------------------------------------- /JUCE/modules/juce_dsp/juce_dsp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_dsp/juce_dsp.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_events/juce_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_events/juce_events.h -------------------------------------------------------------------------------- /JUCE/modules/juce_events/juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_events/juce_events.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_opengl/juce_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_opengl/juce_opengl.h -------------------------------------------------------------------------------- /JUCE/modules/juce_opengl/juce_opengl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_opengl/juce_opengl.mm -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/juce_osc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_osc/juce_osc.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_osc/juce_osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_osc/juce_osc.h -------------------------------------------------------------------------------- /JUCE/modules/juce_video/juce_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_video/juce_video.cpp -------------------------------------------------------------------------------- /JUCE/modules/juce_video/juce_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_video/juce_video.h -------------------------------------------------------------------------------- /JUCE/modules/juce_video/juce_video.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JUCE/modules/juce_video/juce_video.mm -------------------------------------------------------------------------------- /JuceLibraryCode/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JuceLibraryCode/AppConfig.h -------------------------------------------------------------------------------- /JuceLibraryCode/BinaryData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JuceLibraryCode/BinaryData.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/BinaryData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JuceLibraryCode/BinaryData.h -------------------------------------------------------------------------------- /JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JuceLibraryCode/include_juce_core.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JuceLibraryCode/include_juce_core.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JuceLibraryCode/include_juce_dsp.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_dsp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JuceLibraryCode/include_juce_dsp.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JuceLibraryCode/include_juce_events.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JuceLibraryCode/include_juce_events.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_opengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JuceLibraryCode/include_juce_opengl.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_opengl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JuceLibraryCode/include_juce_opengl.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JuceLibraryCode/include_juce_video.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_video.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/JuceLibraryCode/include_juce_video.mm -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/README.md -------------------------------------------------------------------------------- /RandomModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/RandomModule.h -------------------------------------------------------------------------------- /Regression/2osc_gate.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/2osc_gate.slb -------------------------------------------------------------------------------- /Regression/3OscV10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/3OscV10 -------------------------------------------------------------------------------- /Regression/3osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/3osc -------------------------------------------------------------------------------- /Regression/3oscV2.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/3oscV2.slb -------------------------------------------------------------------------------- /Regression/3osc_broad.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/3osc_broad.slb -------------------------------------------------------------------------------- /Regression/4osctest.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/4osctest.slb -------------------------------------------------------------------------------- /Regression/4osctest2.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/4osctest2.slb -------------------------------------------------------------------------------- /Regression/all_modules.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/all_modules.slb -------------------------------------------------------------------------------- /Regression/all_modules_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/all_modules_audio.xml -------------------------------------------------------------------------------- /Regression/all_modules_tracks.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Regression/audiorecorder.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/audiorecorder.slb -------------------------------------------------------------------------------- /Regression/bounce_audio.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/bounce_audio.slb -------------------------------------------------------------------------------- /Regression/bounce_audio_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/bounce_audio_audio.xml -------------------------------------------------------------------------------- /Regression/bounce_audio_tracks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/bounce_audio_tracks.xml -------------------------------------------------------------------------------- /Regression/box.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/box.slb -------------------------------------------------------------------------------- /Regression/box_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/box_audio.xml -------------------------------------------------------------------------------- /Regression/box_tracks.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Regression/bt.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/bt.slb -------------------------------------------------------------------------------- /Regression/bt_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/bt_audio.xml -------------------------------------------------------------------------------- /Regression/bt_tracks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/bt_tracks.xml -------------------------------------------------------------------------------- /Regression/debussy.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/debussy.slb -------------------------------------------------------------------------------- /Regression/debussy_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/debussy_audio.xml -------------------------------------------------------------------------------- /Regression/debussy_tracks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/debussy_tracks.xml -------------------------------------------------------------------------------- /Regression/donut.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/donut.slb -------------------------------------------------------------------------------- /Regression/donut_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/donut_audio.xml -------------------------------------------------------------------------------- /Regression/donut_tracks.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Regression/dual_macro.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/dual_macro.slb -------------------------------------------------------------------------------- /Regression/eq.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/eq.slb -------------------------------------------------------------------------------- /Regression/eq_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/eq_audio.xml -------------------------------------------------------------------------------- /Regression/eq_tracks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/eq_tracks.xml -------------------------------------------------------------------------------- /Regression/geomusic.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/geomusic.slb -------------------------------------------------------------------------------- /Regression/geomusic_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/geomusic_audio.xml -------------------------------------------------------------------------------- /Regression/geomusic_tracks.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Regression/jk_flipflop.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/jk_flipflop.slb -------------------------------------------------------------------------------- /Regression/jk_flipflop_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/jk_flipflop_audio.xml -------------------------------------------------------------------------------- /Regression/jk_flipflop_tracks.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Regression/magnitude.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/magnitude.slb -------------------------------------------------------------------------------- /Regression/magnitude_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/magnitude_audio.xml -------------------------------------------------------------------------------- /Regression/magnitude_tracks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/magnitude_tracks.xml -------------------------------------------------------------------------------- /Regression/midi_controller.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/midi_controller.slb -------------------------------------------------------------------------------- /Regression/midi_controller_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/midi_controller_audio.xml -------------------------------------------------------------------------------- /Regression/midi_controller_tracks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/midi_controller_tracks.xml -------------------------------------------------------------------------------- /Regression/midi_in.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/midi_in.slb -------------------------------------------------------------------------------- /Regression/midi_in_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/midi_in_audio.xml -------------------------------------------------------------------------------- /Regression/midi_in_tracks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/midi_in_tracks.xml -------------------------------------------------------------------------------- /Regression/miditest.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/miditest.slb -------------------------------------------------------------------------------- /Regression/miditest_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/miditest_audio.xml -------------------------------------------------------------------------------- /Regression/miditest_tracks.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Regression/padtest.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/padtest.slb -------------------------------------------------------------------------------- /Regression/pitchbend.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/pitchbend.slb -------------------------------------------------------------------------------- /Regression/productiontest1.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/productiontest1.slb -------------------------------------------------------------------------------- /Regression/productiontest1_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/productiontest1_audio.xml -------------------------------------------------------------------------------- /Regression/productiontest1_tracks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/productiontest1_tracks.xml -------------------------------------------------------------------------------- /Regression/scope.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/scope.slb -------------------------------------------------------------------------------- /Regression/scope_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/scope_audio.xml -------------------------------------------------------------------------------- /Regression/scope_tracks.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Regression/sh_echo.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/sh_echo.slb -------------------------------------------------------------------------------- /Regression/sr_flip_flop.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/sr_flip_flop.slb -------------------------------------------------------------------------------- /Regression/sr_flip_flop_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/sr_flip_flop_audio.xml -------------------------------------------------------------------------------- /Regression/sr_flip_flop_tracks.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Regression/step1.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/step1.slb -------------------------------------------------------------------------------- /Regression/step2.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/step2.slb -------------------------------------------------------------------------------- /Regression/step3.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/step3.slb -------------------------------------------------------------------------------- /Regression/twosongs.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/twosongs.slb -------------------------------------------------------------------------------- /Regression/twosongs_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/twosongs_audio.xml -------------------------------------------------------------------------------- /Regression/twosongs_tracks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/twosongs_tracks.xml -------------------------------------------------------------------------------- /Regression/visualizer.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/visualizer.slb -------------------------------------------------------------------------------- /Regression/visualizer_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/visualizer_audio.xml -------------------------------------------------------------------------------- /Regression/visualizer_tracks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/visualizer_tracks.xml -------------------------------------------------------------------------------- /Regression/viz2.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/viz2.slb -------------------------------------------------------------------------------- /Regression/viz2_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Regression/viz2_audio.xml -------------------------------------------------------------------------------- /Regression/viz2_tracks.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Source/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/.DS_Store -------------------------------------------------------------------------------- /Source/ADSRModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ADSRModule.cpp -------------------------------------------------------------------------------- /Source/ADSRModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ADSRModule.h -------------------------------------------------------------------------------- /Source/Actions/AddConnectionAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Actions/AddConnectionAction.cpp -------------------------------------------------------------------------------- /Source/Actions/AddConnectionAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Actions/AddConnectionAction.h -------------------------------------------------------------------------------- /Source/Actions/AddModuleAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Actions/AddModuleAction.cpp -------------------------------------------------------------------------------- /Source/Actions/AddModuleAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Actions/AddModuleAction.h -------------------------------------------------------------------------------- /Source/Actions/AlignHorizontalAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Actions/AlignHorizontalAction.h -------------------------------------------------------------------------------- /Source/Actions/AlignVerticalAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Actions/AlignVerticalAction.cpp -------------------------------------------------------------------------------- /Source/Actions/AlignVerticalAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Actions/AlignVerticalAction.h -------------------------------------------------------------------------------- /Source/Actions/DefaultUndoableAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Actions/DefaultUndoableAction.h -------------------------------------------------------------------------------- /Source/Actions/DuplicateModuleAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Actions/DuplicateModuleAction.h -------------------------------------------------------------------------------- /Source/Actions/FadeRegionAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Actions/FadeRegionAction.cpp -------------------------------------------------------------------------------- /Source/Actions/FadeRegionAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Actions/FadeRegionAction.h -------------------------------------------------------------------------------- /Source/Actions/MoveRegionAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Actions/MoveRegionAction.cpp -------------------------------------------------------------------------------- /Source/Actions/MoveRegionAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Actions/MoveRegionAction.h -------------------------------------------------------------------------------- /Source/Actions/MoveSelectedAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Actions/MoveSelectedAction.cpp -------------------------------------------------------------------------------- /Source/Actions/MoveSelectedAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Actions/MoveSelectedAction.h -------------------------------------------------------------------------------- /Source/Actions/NormalizeRegionAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Actions/NormalizeRegionAction.h -------------------------------------------------------------------------------- /Source/Actions/RemoveSelectedAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Actions/RemoveSelectedAction.cpp -------------------------------------------------------------------------------- /Source/Actions/RemoveSelectedAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Actions/RemoveSelectedAction.h -------------------------------------------------------------------------------- /Source/Actions/SetGainForRegionAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Actions/SetGainForRegionAction.h -------------------------------------------------------------------------------- /Source/AddValueModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AddValueModule.cpp -------------------------------------------------------------------------------- /Source/AddValueModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AddValueModule.h -------------------------------------------------------------------------------- /Source/AdderModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AdderModule.cpp -------------------------------------------------------------------------------- /Source/AdderModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AdderModule.h -------------------------------------------------------------------------------- /Source/AndModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AndModule.cpp -------------------------------------------------------------------------------- /Source/AndModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AndModule.h -------------------------------------------------------------------------------- /Source/AudioEngine/ADSR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/ADSR.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/ADSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/ADSR.h -------------------------------------------------------------------------------- /Source/AudioEngine/BPMDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/BPMDetector.h -------------------------------------------------------------------------------- /Source/AudioEngine/BasicDelayLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/BasicDelayLine.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/BasicDelayLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/BasicDelayLine.h -------------------------------------------------------------------------------- /Source/AudioEngine/Compressor.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/AudioEngine/Compressor.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/AudioEngine/Distortion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Distortion.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/Distortion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Distortion.h -------------------------------------------------------------------------------- /Source/AudioEngine/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Event.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Event.h -------------------------------------------------------------------------------- /Source/AudioEngine/EventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/EventListener.h -------------------------------------------------------------------------------- /Source/AudioEngine/Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Filter.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Filter.h -------------------------------------------------------------------------------- /Source/AudioEngine/HighPassFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/HighPassFilter.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/HighPassFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/HighPassFilter.h -------------------------------------------------------------------------------- /Source/AudioEngine/LowPassFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/LowPassFilter.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/LowPassFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/LowPassFilter.h -------------------------------------------------------------------------------- /Source/AudioEngine/ModTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/ModTarget.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/ModTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/ModTarget.h -------------------------------------------------------------------------------- /Source/AudioEngine/Modulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Modulation.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/Modulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Modulation.h -------------------------------------------------------------------------------- /Source/AudioEngine/Modulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Modulator.h -------------------------------------------------------------------------------- /Source/AudioEngine/MonoEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/MonoEffect.h -------------------------------------------------------------------------------- /Source/AudioEngine/MultimodeFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/MultimodeFilter.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/MultimodeFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/MultimodeFilter.h -------------------------------------------------------------------------------- /Source/AudioEngine/Note.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Note.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/Note.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Note.h -------------------------------------------------------------------------------- /Source/AudioEngine/OfflinePlayHead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/OfflinePlayHead.h -------------------------------------------------------------------------------- /Source/AudioEngine/Oszillator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Oszillator.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/Oszillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Oszillator.h -------------------------------------------------------------------------------- /Source/AudioEngine/Pulse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Pulse.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/Pulse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Pulse.h -------------------------------------------------------------------------------- /Source/AudioEngine/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Random.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Random.h -------------------------------------------------------------------------------- /Source/AudioEngine/Sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Sampler.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/Sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Sampler.h -------------------------------------------------------------------------------- /Source/AudioEngine/Sawtooth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Sawtooth.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/Sawtooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Sawtooth.h -------------------------------------------------------------------------------- /Source/AudioEngine/Sine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Sine.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/Sine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Sine.h -------------------------------------------------------------------------------- /Source/AudioEngine/SmartSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/SmartSample.h -------------------------------------------------------------------------------- /Source/AudioEngine/StereoDelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/StereoDelay.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/StereoDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/StereoDelay.h -------------------------------------------------------------------------------- /Source/AudioEngine/StereoEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/StereoEffect.h -------------------------------------------------------------------------------- /Source/AudioEngine/StereoReverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/StereoReverb.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/StereoReverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/StereoReverb.h -------------------------------------------------------------------------------- /Source/AudioEngine/Voice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Voice.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/Voice.h -------------------------------------------------------------------------------- /Source/AudioEngine/WaveTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/WaveTable.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/WaveTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/WaveTable.h -------------------------------------------------------------------------------- /Source/AudioEngine/WhiteNoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/WhiteNoise.cpp -------------------------------------------------------------------------------- /Source/AudioEngine/WhiteNoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioEngine/WhiteNoise.h -------------------------------------------------------------------------------- /Source/AudioIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioIn.cpp -------------------------------------------------------------------------------- /Source/AudioIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioIn.h -------------------------------------------------------------------------------- /Source/AudioLevelMeter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioLevelMeter.cpp -------------------------------------------------------------------------------- /Source/AudioLevelMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioLevelMeter.h -------------------------------------------------------------------------------- /Source/AudioManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioManager.cpp -------------------------------------------------------------------------------- /Source/AudioManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioManager.h -------------------------------------------------------------------------------- /Source/AudioModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioModule.h -------------------------------------------------------------------------------- /Source/AudioOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioOut.cpp -------------------------------------------------------------------------------- /Source/AudioOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioOut.h -------------------------------------------------------------------------------- /Source/AudioRecorderEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioRecorderEditor.cpp -------------------------------------------------------------------------------- /Source/AudioRecorderEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioRecorderEditor.h -------------------------------------------------------------------------------- /Source/AudioRecorderModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioRecorderModule.cpp -------------------------------------------------------------------------------- /Source/AudioRecorderModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioRecorderModule.h -------------------------------------------------------------------------------- /Source/AudioRecorderPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioRecorderPanel.cpp -------------------------------------------------------------------------------- /Source/AudioRecorderPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioRecorderPanel.h -------------------------------------------------------------------------------- /Source/AudioThumbnailComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioThumbnailComponent.cpp -------------------------------------------------------------------------------- /Source/AudioThumbnailComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioThumbnailComponent.h -------------------------------------------------------------------------------- /Source/AudioUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AudioUtils.h -------------------------------------------------------------------------------- /Source/AuxOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AuxOut.cpp -------------------------------------------------------------------------------- /Source/AuxOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/AuxOut.h -------------------------------------------------------------------------------- /Source/BounceDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/BounceDialog.cpp -------------------------------------------------------------------------------- /Source/BounceDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/BounceDialog.h -------------------------------------------------------------------------------- /Source/BounceProgressDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/BounceProgressDialog.h -------------------------------------------------------------------------------- /Source/BoxModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/BoxModule.cpp -------------------------------------------------------------------------------- /Source/BoxModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/BoxModule.h -------------------------------------------------------------------------------- /Source/Cell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Cell.cpp -------------------------------------------------------------------------------- /Source/Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Cell.h -------------------------------------------------------------------------------- /Source/ChatGPTInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ChatGPTInterface.h -------------------------------------------------------------------------------- /Source/ChorusModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ChorusModule.cpp -------------------------------------------------------------------------------- /Source/ChorusModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ChorusModule.h -------------------------------------------------------------------------------- /Source/CloseableTabButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/CloseableTabButton.cpp -------------------------------------------------------------------------------- /Source/CloseableTabButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/CloseableTabButton.h -------------------------------------------------------------------------------- /Source/CommandParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/CommandParser.h -------------------------------------------------------------------------------- /Source/CompareModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/CompareModule.cpp -------------------------------------------------------------------------------- /Source/CompareModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/CompareModule.h -------------------------------------------------------------------------------- /Source/ComponentTreeDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ComponentTreeDebugger.cpp -------------------------------------------------------------------------------- /Source/ComponentTreeDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ComponentTreeDebugger.h -------------------------------------------------------------------------------- /Source/CompressorModule.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/CompressorModule.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Connection.cpp -------------------------------------------------------------------------------- /Source/Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Connection.h -------------------------------------------------------------------------------- /Source/Constant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Constant.cpp -------------------------------------------------------------------------------- /Source/Constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Constant.h -------------------------------------------------------------------------------- /Source/CustomLookAndFeel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/CustomLookAndFeel.cpp -------------------------------------------------------------------------------- /Source/CustomLookAndFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/CustomLookAndFeel.h -------------------------------------------------------------------------------- /Source/DefaultToolbarItemFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/DefaultToolbarItemFactory.h -------------------------------------------------------------------------------- /Source/DefaultUndoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/DefaultUndoManager.h -------------------------------------------------------------------------------- /Source/DelayModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/DelayModule.cpp -------------------------------------------------------------------------------- /Source/DelayModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/DelayModule.h -------------------------------------------------------------------------------- /Source/DisplayValueModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/DisplayValueModule.cpp -------------------------------------------------------------------------------- /Source/DisplayValueModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/DisplayValueModule.h -------------------------------------------------------------------------------- /Source/DistortionModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/DistortionModule.cpp -------------------------------------------------------------------------------- /Source/DistortionModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/DistortionModule.h -------------------------------------------------------------------------------- /Source/DonutModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/DonutModule.cpp -------------------------------------------------------------------------------- /Source/DonutModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/DonutModule.h -------------------------------------------------------------------------------- /Source/DragConstrainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/DragConstrainer.h -------------------------------------------------------------------------------- /Source/EditorComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/EditorComponent.cpp -------------------------------------------------------------------------------- /Source/EditorComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/EditorComponent.h -------------------------------------------------------------------------------- /Source/EditorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/EditorListener.h -------------------------------------------------------------------------------- /Source/ElegantDarkLookAndFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ElegantDarkLookAndFeel.h -------------------------------------------------------------------------------- /Source/EventDisplayModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/EventDisplayModule.cpp -------------------------------------------------------------------------------- /Source/EventDisplayModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/EventDisplayModule.h -------------------------------------------------------------------------------- /Source/ExtendedFileBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ExtendedFileBrowser.cpp -------------------------------------------------------------------------------- /Source/ExtendedFileBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ExtendedFileBrowser.h -------------------------------------------------------------------------------- /Source/FadeDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/FadeDialog.cpp -------------------------------------------------------------------------------- /Source/FadeDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/FadeDialog.h -------------------------------------------------------------------------------- /Source/FeedbackModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/FeedbackModule.cpp -------------------------------------------------------------------------------- /Source/FeedbackModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/FeedbackModule.h -------------------------------------------------------------------------------- /Source/FileButtonPropertyComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/FileButtonPropertyComponent.cpp -------------------------------------------------------------------------------- /Source/FileButtonPropertyComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/FileButtonPropertyComponent.h -------------------------------------------------------------------------------- /Source/GainDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/GainDialog.cpp -------------------------------------------------------------------------------- /Source/GainDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/GainDialog.h -------------------------------------------------------------------------------- /Source/GainModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/GainModule.cpp -------------------------------------------------------------------------------- /Source/GainModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/GainModule.h -------------------------------------------------------------------------------- /Source/GeometryModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/GeometryModule.cpp -------------------------------------------------------------------------------- /Source/GeometryModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/GeometryModule.h -------------------------------------------------------------------------------- /Source/GeometryViewComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/GeometryViewComponent.h -------------------------------------------------------------------------------- /Source/Graphics/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Graphics/Geometry.h -------------------------------------------------------------------------------- /Source/HPFilterModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/HPFilterModule.cpp -------------------------------------------------------------------------------- /Source/HPFilterModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/HPFilterModule.h -------------------------------------------------------------------------------- /Source/HTTPServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/HTTPServer.cpp -------------------------------------------------------------------------------- /Source/HTTPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/HTTPServer.h -------------------------------------------------------------------------------- /Source/IEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/IEditor.h -------------------------------------------------------------------------------- /Source/ISampleEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ISampleEditor.h -------------------------------------------------------------------------------- /Source/ImageModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ImageModule.cpp -------------------------------------------------------------------------------- /Source/ImageModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ImageModule.h -------------------------------------------------------------------------------- /Source/ImageToggleButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ImageToggleButton.cpp -------------------------------------------------------------------------------- /Source/ImageToggleButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ImageToggleButton.h -------------------------------------------------------------------------------- /Source/InverterModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/InverterModule.cpp -------------------------------------------------------------------------------- /Source/InverterModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/InverterModule.h -------------------------------------------------------------------------------- /Source/KeyboardModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/KeyboardModule.cpp -------------------------------------------------------------------------------- /Source/KeyboardModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/KeyboardModule.h -------------------------------------------------------------------------------- /Source/Knob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Knob.cpp -------------------------------------------------------------------------------- /Source/Knob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Knob.h -------------------------------------------------------------------------------- /Source/LPFilterModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/LPFilterModule.cpp -------------------------------------------------------------------------------- /Source/LPFilterModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/LPFilterModule.h -------------------------------------------------------------------------------- /Source/LabelModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/LabelModule.cpp -------------------------------------------------------------------------------- /Source/LabelModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/LabelModule.h -------------------------------------------------------------------------------- /Source/LedModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/LedModule.cpp -------------------------------------------------------------------------------- /Source/LedModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/LedModule.h -------------------------------------------------------------------------------- /Source/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Macros.h -------------------------------------------------------------------------------- /Source/MagnitudeModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MagnitudeModule.cpp -------------------------------------------------------------------------------- /Source/MagnitudeModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MagnitudeModule.h -------------------------------------------------------------------------------- /Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Main.cpp -------------------------------------------------------------------------------- /Source/MainComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MainComponent.cpp -------------------------------------------------------------------------------- /Source/MainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MainComponent.h -------------------------------------------------------------------------------- /Source/MainTabbedComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MainTabbedComponent.cpp -------------------------------------------------------------------------------- /Source/MainTabbedComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MainTabbedComponent.h -------------------------------------------------------------------------------- /Source/MergeGeometryModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MergeGeometryModule.cpp -------------------------------------------------------------------------------- /Source/MergeGeometryModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MergeGeometryModule.h -------------------------------------------------------------------------------- /Source/MessageBus/BusListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MessageBus/BusListener.h -------------------------------------------------------------------------------- /Source/MessageBus/FastBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MessageBus/FastBus.h -------------------------------------------------------------------------------- /Source/MessageBus/MessageBus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MessageBus/MessageBus.cpp -------------------------------------------------------------------------------- /Source/MessageBus/MessageBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MessageBus/MessageBus.h -------------------------------------------------------------------------------- /Source/MessageBus/Topic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MessageBus/Topic.cpp -------------------------------------------------------------------------------- /Source/MessageBus/Topic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MessageBus/Topic.h -------------------------------------------------------------------------------- /Source/Metronome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Metronome.cpp -------------------------------------------------------------------------------- /Source/Metronome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Metronome.h -------------------------------------------------------------------------------- /Source/MidiClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiClock.cpp -------------------------------------------------------------------------------- /Source/MidiClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiClock.h -------------------------------------------------------------------------------- /Source/MidiGate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiGate.cpp -------------------------------------------------------------------------------- /Source/MidiGate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiGate.h -------------------------------------------------------------------------------- /Source/MidiNote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiNote.cpp -------------------------------------------------------------------------------- /Source/MidiNote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiNote.h -------------------------------------------------------------------------------- /Source/MidiOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiOut.cpp -------------------------------------------------------------------------------- /Source/MidiOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiOut.h -------------------------------------------------------------------------------- /Source/MidiProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiProcessor.cpp -------------------------------------------------------------------------------- /Source/MidiProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiProcessor.h -------------------------------------------------------------------------------- /Source/MidiRecorder/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiRecorder/Logger.h -------------------------------------------------------------------------------- /Source/MidiRecorder/MidiEventEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiRecorder/MidiEventEditor.cpp -------------------------------------------------------------------------------- /Source/MidiRecorder/MidiEventEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiRecorder/MidiEventEditor.h -------------------------------------------------------------------------------- /Source/MidiRecorder/MidiRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiRecorder/MidiRecorder.cpp -------------------------------------------------------------------------------- /Source/MidiRecorder/MidiRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiRecorder/MidiRecorder.h -------------------------------------------------------------------------------- /Source/MidiRecorder/MidiRecorderPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiRecorder/MidiRecorderPanel.h -------------------------------------------------------------------------------- /Source/MidiRecorder/RecordListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiRecorder/RecordListener.h -------------------------------------------------------------------------------- /Source/MidiRecorderModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiRecorderModule.cpp -------------------------------------------------------------------------------- /Source/MidiRecorderModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiRecorderModule.h -------------------------------------------------------------------------------- /Source/MidiRegionEventEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MidiRegionEventEditor.h -------------------------------------------------------------------------------- /Source/Mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Mixer.cpp -------------------------------------------------------------------------------- /Source/Mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Mixer.h -------------------------------------------------------------------------------- /Source/MixerModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MixerModule.cpp -------------------------------------------------------------------------------- /Source/MixerModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MixerModule.h -------------------------------------------------------------------------------- /Source/MixerPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MixerPanel.cpp -------------------------------------------------------------------------------- /Source/MixerPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MixerPanel.h -------------------------------------------------------------------------------- /Source/ModernLookAndFeel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ModernLookAndFeel.cpp -------------------------------------------------------------------------------- /Source/ModernLookAndFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ModernLookAndFeel.h -------------------------------------------------------------------------------- /Source/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Module.cpp -------------------------------------------------------------------------------- /Source/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Module.h -------------------------------------------------------------------------------- /Source/ModuleBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ModuleBrowser.cpp -------------------------------------------------------------------------------- /Source/ModuleBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ModuleBrowser.h -------------------------------------------------------------------------------- /Source/ModuleBrowserTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ModuleBrowserTable.h -------------------------------------------------------------------------------- /Source/ModuleUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ModuleUtils.cpp -------------------------------------------------------------------------------- /Source/ModuleUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ModuleUtils.h -------------------------------------------------------------------------------- /Source/Monophonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Monophonic.h -------------------------------------------------------------------------------- /Source/MultiComponentDragger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MultiComponentDragger.h -------------------------------------------------------------------------------- /Source/MultiplyModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MultiplyModule.cpp -------------------------------------------------------------------------------- /Source/MultiplyModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/MultiplyModule.h -------------------------------------------------------------------------------- /Source/NamedItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/NamedItem.h -------------------------------------------------------------------------------- /Source/NoiseModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/NoiseModule.cpp -------------------------------------------------------------------------------- /Source/NoiseModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/NoiseModule.h -------------------------------------------------------------------------------- /Source/NotModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/NotModule.cpp -------------------------------------------------------------------------------- /Source/NotModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/NotModule.h -------------------------------------------------------------------------------- /Source/OneShotTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/OneShotTimer.h -------------------------------------------------------------------------------- /Source/OrModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/OrModule.cpp -------------------------------------------------------------------------------- /Source/OrModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/OrModule.h -------------------------------------------------------------------------------- /Source/OscillatorModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/OscillatorModule.h -------------------------------------------------------------------------------- /Source/OscilloscopeModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/OscilloscopeModule.cpp -------------------------------------------------------------------------------- /Source/OscilloscopeModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/OscilloscopeModule.h -------------------------------------------------------------------------------- /Source/PadModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/PadModule.cpp -------------------------------------------------------------------------------- /Source/PadModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/PadModule.h -------------------------------------------------------------------------------- /Source/PianoRollComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/PianoRollComponent.cpp -------------------------------------------------------------------------------- /Source/PianoRollComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/PianoRollComponent.h -------------------------------------------------------------------------------- /Source/Pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Pin.cpp -------------------------------------------------------------------------------- /Source/Pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Pin.h -------------------------------------------------------------------------------- /Source/PitchBendModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/PitchBendModule.cpp -------------------------------------------------------------------------------- /Source/PitchBendModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/PitchBendModule.h -------------------------------------------------------------------------------- /Source/PitchToFrequencyModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/PitchToFrequencyModule.cpp -------------------------------------------------------------------------------- /Source/PitchToFrequencyModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/PitchToFrequencyModule.h -------------------------------------------------------------------------------- /Source/PluginModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/PluginModule.cpp -------------------------------------------------------------------------------- /Source/PluginModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/PluginModule.h -------------------------------------------------------------------------------- /Source/PluginSelectorDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/PluginSelectorDialog.h -------------------------------------------------------------------------------- /Source/Plugins/PluginManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Plugins/PluginManager.cpp -------------------------------------------------------------------------------- /Source/Plugins/PluginManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Plugins/PluginManager.h -------------------------------------------------------------------------------- /Source/PrefabFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/PrefabFactory.cpp -------------------------------------------------------------------------------- /Source/PrefabFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/PrefabFactory.h -------------------------------------------------------------------------------- /Source/Project/AudioClip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/AudioClip.cpp -------------------------------------------------------------------------------- /Source/Project/AudioClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/AudioClip.h -------------------------------------------------------------------------------- /Source/Project/AuxBusConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/AuxBusConfig.cpp -------------------------------------------------------------------------------- /Source/Project/AuxBusConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/AuxBusConfig.h -------------------------------------------------------------------------------- /Source/Project/AuxSendConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/AuxSendConfig.cpp -------------------------------------------------------------------------------- /Source/Project/AuxSendConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/AuxSendConfig.h -------------------------------------------------------------------------------- /Source/Project/EffectConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/EffectConfig.cpp -------------------------------------------------------------------------------- /Source/Project/EffectConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/EffectConfig.h -------------------------------------------------------------------------------- /Source/Project/InstrumentConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/InstrumentConfig.cpp -------------------------------------------------------------------------------- /Source/Project/InstrumentConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/InstrumentConfig.h -------------------------------------------------------------------------------- /Source/Project/MixerConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/MixerConfig.cpp -------------------------------------------------------------------------------- /Source/Project/MixerConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/MixerConfig.h -------------------------------------------------------------------------------- /Source/Project/Project.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/Project.cpp -------------------------------------------------------------------------------- /Source/Project/Project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/Project.h -------------------------------------------------------------------------------- /Source/Project/ProjectConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/ProjectConfig.cpp -------------------------------------------------------------------------------- /Source/Project/ProjectConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/ProjectConfig.h -------------------------------------------------------------------------------- /Source/Project/RegionConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/RegionConfig.cpp -------------------------------------------------------------------------------- /Source/Project/RegionConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/RegionConfig.h -------------------------------------------------------------------------------- /Source/Project/TrackConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/TrackConfig.cpp -------------------------------------------------------------------------------- /Source/Project/TrackConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Project/TrackConfig.h -------------------------------------------------------------------------------- /Source/PropertyView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/PropertyView.cpp -------------------------------------------------------------------------------- /Source/PropertyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/PropertyView.h -------------------------------------------------------------------------------- /Source/PublisherModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/PublisherModule.cpp -------------------------------------------------------------------------------- /Source/PublisherModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/PublisherModule.h -------------------------------------------------------------------------------- /Source/RandomModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/RandomModule.cpp -------------------------------------------------------------------------------- /Source/RandomModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/RandomModule.h -------------------------------------------------------------------------------- /Source/ResizeConstrainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ResizeConstrainer.h -------------------------------------------------------------------------------- /Source/ReverbModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ReverbModule.cpp -------------------------------------------------------------------------------- /Source/ReverbModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ReverbModule.h -------------------------------------------------------------------------------- /Source/SampleEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SampleEditor.cpp -------------------------------------------------------------------------------- /Source/SampleEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SampleEditor.h -------------------------------------------------------------------------------- /Source/SamplePropertiesPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SamplePropertiesPanel.cpp -------------------------------------------------------------------------------- /Source/SamplePropertiesPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SamplePropertiesPanel.h -------------------------------------------------------------------------------- /Source/SamplerModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SamplerModule.cpp -------------------------------------------------------------------------------- /Source/SamplerModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SamplerModule.h -------------------------------------------------------------------------------- /Source/SawtoothModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SawtoothModule.cpp -------------------------------------------------------------------------------- /Source/SawtoothModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SawtoothModule.h -------------------------------------------------------------------------------- /Source/SelectionModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SelectionModel.cpp -------------------------------------------------------------------------------- /Source/SelectionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SelectionModel.h -------------------------------------------------------------------------------- /Source/SequenceEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SequenceEditor.cpp -------------------------------------------------------------------------------- /Source/SequenceEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SequenceEditor.h -------------------------------------------------------------------------------- /Source/Session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Session.cpp -------------------------------------------------------------------------------- /Source/Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Session.h -------------------------------------------------------------------------------- /Source/ShellConsoleComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ShellConsoleComponent.h -------------------------------------------------------------------------------- /Source/SilenceDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SilenceDialog.cpp -------------------------------------------------------------------------------- /Source/SilenceDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SilenceDialog.h -------------------------------------------------------------------------------- /Source/SineModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SineModule.cpp -------------------------------------------------------------------------------- /Source/SineModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SineModule.h -------------------------------------------------------------------------------- /Source/SliderModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SliderModule.cpp -------------------------------------------------------------------------------- /Source/SliderModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SliderModule.h -------------------------------------------------------------------------------- /Source/SpektrumAnalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SpektrumAnalyzer.cpp -------------------------------------------------------------------------------- /Source/SpektrumAnalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SpektrumAnalyzer.h -------------------------------------------------------------------------------- /Source/StepSequencerModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/StepSequencerModule.cpp -------------------------------------------------------------------------------- /Source/StepSequencerModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/StepSequencerModule.h -------------------------------------------------------------------------------- /Source/SubscriberModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SubscriberModule.cpp -------------------------------------------------------------------------------- /Source/SubscriberModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SubscriberModule.h -------------------------------------------------------------------------------- /Source/SwitchSignalModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SwitchSignalModule.cpp -------------------------------------------------------------------------------- /Source/SwitchSignalModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SwitchSignalModule.h -------------------------------------------------------------------------------- /Source/SwitchValueModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SwitchValueModule.cpp -------------------------------------------------------------------------------- /Source/SwitchValueModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SwitchValueModule.h -------------------------------------------------------------------------------- /Source/SynthEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SynthEditor.cpp -------------------------------------------------------------------------------- /Source/SynthEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SynthEditor.h -------------------------------------------------------------------------------- /Source/SynthlabAudioProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SynthlabAudioProcessor.cpp -------------------------------------------------------------------------------- /Source/SynthlabAudioProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/SynthlabAudioProcessor.h -------------------------------------------------------------------------------- /Source/Terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Terminal.h -------------------------------------------------------------------------------- /Source/TerminalModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/TerminalModule.cpp -------------------------------------------------------------------------------- /Source/TerminalModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/TerminalModule.h -------------------------------------------------------------------------------- /Source/TextInputModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/TextInputModule.cpp -------------------------------------------------------------------------------- /Source/TextInputModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/TextInputModule.h -------------------------------------------------------------------------------- /Source/ThreeBandEQModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ThreeBandEQModule.cpp -------------------------------------------------------------------------------- /Source/ThreeBandEQModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ThreeBandEQModule.h -------------------------------------------------------------------------------- /Source/ToolbarComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ToolbarComboBox.cpp -------------------------------------------------------------------------------- /Source/ToolbarComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ToolbarComboBox.h -------------------------------------------------------------------------------- /Source/TrackIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/TrackIn.cpp -------------------------------------------------------------------------------- /Source/TrackIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/TrackIn.h -------------------------------------------------------------------------------- /Source/TrackUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/TrackUtil.h -------------------------------------------------------------------------------- /Source/Tracks/AudioRegion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/AudioRegion.cpp -------------------------------------------------------------------------------- /Source/Tracks/AudioRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/AudioRegion.h -------------------------------------------------------------------------------- /Source/Tracks/BounceThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/BounceThread.cpp -------------------------------------------------------------------------------- /Source/Tracks/BounceThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/BounceThread.h -------------------------------------------------------------------------------- /Source/Tracks/DragConstrainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/DragConstrainer.h -------------------------------------------------------------------------------- /Source/Tracks/MasterChannelPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/MasterChannelPanel.cpp -------------------------------------------------------------------------------- /Source/Tracks/MasterChannelPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/MasterChannelPanel.h -------------------------------------------------------------------------------- /Source/Tracks/MidiRegion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/MidiRegion.cpp -------------------------------------------------------------------------------- /Source/Tracks/MidiRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/MidiRegion.h -------------------------------------------------------------------------------- /Source/Tracks/MidiThumbnail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/MidiThumbnail.cpp -------------------------------------------------------------------------------- /Source/Tracks/MidiThumbnail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/MidiThumbnail.h -------------------------------------------------------------------------------- /Source/Tracks/PositionMarker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/PositionMarker.cpp -------------------------------------------------------------------------------- /Source/Tracks/PositionMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/PositionMarker.h -------------------------------------------------------------------------------- /Source/Tracks/Region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/Region.cpp -------------------------------------------------------------------------------- /Source/Tracks/Region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/Region.h -------------------------------------------------------------------------------- /Source/Tracks/TimeLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/TimeLine.cpp -------------------------------------------------------------------------------- /Source/Tracks/TimeLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/TimeLine.h -------------------------------------------------------------------------------- /Source/Tracks/Track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/Track.cpp -------------------------------------------------------------------------------- /Source/Tracks/Track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/Track.h -------------------------------------------------------------------------------- /Source/Tracks/TrackNavigator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/TrackNavigator.cpp -------------------------------------------------------------------------------- /Source/Tracks/TrackNavigator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/TrackNavigator.h -------------------------------------------------------------------------------- /Source/Tracks/TrackPropertyPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/TrackPropertyPanel.cpp -------------------------------------------------------------------------------- /Source/Tracks/TrackPropertyPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/TrackPropertyPanel.h -------------------------------------------------------------------------------- /Source/Tracks/TrackPropertyView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/TrackPropertyView.cpp -------------------------------------------------------------------------------- /Source/Tracks/TrackPropertyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/TrackPropertyView.h -------------------------------------------------------------------------------- /Source/Tracks/TrackResizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/TrackResizer.h -------------------------------------------------------------------------------- /Source/Tracks/WaveSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/WaveSelector.cpp -------------------------------------------------------------------------------- /Source/Tracks/WaveSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/Tracks/WaveSelector.h -------------------------------------------------------------------------------- /Source/TransformGeometryModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/TransformGeometryModule.cpp -------------------------------------------------------------------------------- /Source/TransformGeometryModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/TransformGeometryModule.h -------------------------------------------------------------------------------- /Source/TransportDisplayComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/TransportDisplayComponent.cpp -------------------------------------------------------------------------------- /Source/TransportDisplayComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/TransportDisplayComponent.h -------------------------------------------------------------------------------- /Source/TriggerTimerModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/TriggerTimerModule.cpp -------------------------------------------------------------------------------- /Source/TriggerTimerModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/TriggerTimerModule.h -------------------------------------------------------------------------------- /Source/TrimDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/TrimDialog.cpp -------------------------------------------------------------------------------- /Source/TrimDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/TrimDialog.h -------------------------------------------------------------------------------- /Source/UITools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/UITools.h -------------------------------------------------------------------------------- /Source/ValueToEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ValueToEvent.cpp -------------------------------------------------------------------------------- /Source/ValueToEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/ValueToEvent.h -------------------------------------------------------------------------------- /Source/VectorModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/VectorModule.cpp -------------------------------------------------------------------------------- /Source/VectorModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/VectorModule.h -------------------------------------------------------------------------------- /Source/VocoderModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/VocoderModule.cpp -------------------------------------------------------------------------------- /Source/VocoderModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/VocoderModule.h -------------------------------------------------------------------------------- /Source/VolumeAdjustable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/VolumeAdjustable.h -------------------------------------------------------------------------------- /Source/rubberband/RubberBandStretcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/rubberband/RubberBandStretcher.h -------------------------------------------------------------------------------- /Source/rubberband/ext/getopt/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/rubberband/ext/getopt/getopt.c -------------------------------------------------------------------------------- /Source/rubberband/ext/getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/rubberband/ext/getopt/getopt.h -------------------------------------------------------------------------------- /Source/rubberband/ext/getopt/unistd.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/rubberband/ext/kissfft/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/rubberband/ext/kissfft/COPYING -------------------------------------------------------------------------------- /Source/rubberband/ext/speex/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/rubberband/ext/speex/COPYING -------------------------------------------------------------------------------- /Source/rubberband/ext/speex/resample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Source/rubberband/ext/speex/resample.c -------------------------------------------------------------------------------- /Synthlab.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/Synthlab.jucer -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/_config.yml -------------------------------------------------------------------------------- /delaytest_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/delaytest_env -------------------------------------------------------------------------------- /docs/ModuleDevelopmentGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/docs/ModuleDevelopmentGuide.md -------------------------------------------------------------------------------- /docs/SynthlabUserGuide.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/adsr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/docs/adsr.txt -------------------------------------------------------------------------------- /docs/highpass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/docs/highpass.txt -------------------------------------------------------------------------------- /docs/images/synthlab1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/docs/images/synthlab1.jpeg -------------------------------------------------------------------------------- /docs/images/synthlab2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/docs/images/synthlab2.jpeg -------------------------------------------------------------------------------- /docs/images/synthlab3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/docs/images/synthlab3.jpeg -------------------------------------------------------------------------------- /docs/images/synthlab4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/docs/images/synthlab4.jpeg -------------------------------------------------------------------------------- /docs/images/synthlab5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/docs/images/synthlab5.png -------------------------------------------------------------------------------- /docs/images/synthlab6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/docs/images/synthlab6.png -------------------------------------------------------------------------------- /docs/images/synthlab7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/docs/images/synthlab7.png -------------------------------------------------------------------------------- /docs/lowpass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/docs/lowpass.txt -------------------------------------------------------------------------------- /docs/oscillator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/docs/oscillator.txt -------------------------------------------------------------------------------- /lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/.DS_Store -------------------------------------------------------------------------------- /lib/debug/librubberband.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/debug/librubberband.lib -------------------------------------------------------------------------------- /lib/gtest/internal/custom/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/gtest/internal/custom/gtest-port.h -------------------------------------------------------------------------------- /lib/gtest/internal/custom/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/gtest/internal/custom/gtest.h -------------------------------------------------------------------------------- /lib/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /lib/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /lib/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /lib/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /lib/gtest/internal/gtest-port-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/gtest/internal/gtest-port-arch.h -------------------------------------------------------------------------------- /lib/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /lib/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /lib/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /lib/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /lib/gtest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/gtest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /lib/gtest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/gtest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /lib/gtest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/gtest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /lib/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /lib/gtest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/gtest/src/gtest-printers.cc -------------------------------------------------------------------------------- /lib/gtest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/gtest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /lib/gtest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/gtest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /lib/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/gtest/src/gtest.cc -------------------------------------------------------------------------------- /lib/librubberband-debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/librubberband-debug.lib -------------------------------------------------------------------------------- /lib/librubberband.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/librubberband.lib -------------------------------------------------------------------------------- /lib/release/librubberband.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/lib/release/librubberband.lib -------------------------------------------------------------------------------- /modules/libusb/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/.DS_Store -------------------------------------------------------------------------------- /modules/libusb/.private/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/.private/README.txt -------------------------------------------------------------------------------- /modules/libusb/.private/bd.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/.private/bd.cmd -------------------------------------------------------------------------------- /modules/libusb/.private/bm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/.private/bm.sh -------------------------------------------------------------------------------- /modules/libusb/.private/bwince.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/.private/bwince.cmd -------------------------------------------------------------------------------- /modules/libusb/.private/post-rewrite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/.private/post-rewrite.sh -------------------------------------------------------------------------------- /modules/libusb/.private/pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/.private/pre-commit.sh -------------------------------------------------------------------------------- /modules/libusb/.private/wbs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/.private/wbs.txt -------------------------------------------------------------------------------- /modules/libusb/.private/wbs_wince.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/.private/wbs_wince.txt -------------------------------------------------------------------------------- /modules/libusb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/.travis.yml -------------------------------------------------------------------------------- /modules/libusb/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/AUTHORS -------------------------------------------------------------------------------- /modules/libusb/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/COPYING -------------------------------------------------------------------------------- /modules/libusb/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/ChangeLog -------------------------------------------------------------------------------- /modules/libusb/INSTALL_WIN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/INSTALL_WIN.txt -------------------------------------------------------------------------------- /modules/libusb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/Makefile.am -------------------------------------------------------------------------------- /modules/libusb/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/NEWS -------------------------------------------------------------------------------- /modules/libusb/PORTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/PORTING -------------------------------------------------------------------------------- /modules/libusb/README: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /modules/libusb/README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/README.git -------------------------------------------------------------------------------- /modules/libusb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/README.md -------------------------------------------------------------------------------- /modules/libusb/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/TODO -------------------------------------------------------------------------------- /modules/libusb/Xcode/common.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/Xcode/common.xcconfig -------------------------------------------------------------------------------- /modules/libusb/Xcode/debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/Xcode/debug.xcconfig -------------------------------------------------------------------------------- /modules/libusb/Xcode/libusb.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/Xcode/libusb.xcconfig -------------------------------------------------------------------------------- /modules/libusb/Xcode/release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/Xcode/release.xcconfig -------------------------------------------------------------------------------- /modules/libusb/android/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/android/README -------------------------------------------------------------------------------- /modules/libusb/android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/android/jni/Android.mk -------------------------------------------------------------------------------- /modules/libusb/android/jni/examples.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/android/jni/examples.mk -------------------------------------------------------------------------------- /modules/libusb/android/jni/libusb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/android/jni/libusb.mk -------------------------------------------------------------------------------- /modules/libusb/android/jni/tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/android/jni/tests.mk -------------------------------------------------------------------------------- /modules/libusb/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/appveyor.yml -------------------------------------------------------------------------------- /modules/libusb/appveyor_cygwin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/appveyor_cygwin.bat -------------------------------------------------------------------------------- /modules/libusb/appveyor_minGW.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/appveyor_minGW.bat -------------------------------------------------------------------------------- /modules/libusb/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/autogen.sh -------------------------------------------------------------------------------- /modules/libusb/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/bootstrap.sh -------------------------------------------------------------------------------- /modules/libusb/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/configure.ac -------------------------------------------------------------------------------- /modules/libusb/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/doc/Makefile.am -------------------------------------------------------------------------------- /modules/libusb/doc/doxygen.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/doc/doxygen.cfg.in -------------------------------------------------------------------------------- /modules/libusb/doc/libusb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/doc/libusb.png -------------------------------------------------------------------------------- /modules/libusb/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/examples/Makefile.am -------------------------------------------------------------------------------- /modules/libusb/examples/dpfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/examples/dpfp.c -------------------------------------------------------------------------------- /modules/libusb/examples/dpfp_threaded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/examples/dpfp_threaded.c -------------------------------------------------------------------------------- /modules/libusb/examples/ezusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/examples/ezusb.c -------------------------------------------------------------------------------- /modules/libusb/examples/ezusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/examples/ezusb.h -------------------------------------------------------------------------------- /modules/libusb/examples/fxload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/examples/fxload.c -------------------------------------------------------------------------------- /modules/libusb/examples/getopt/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/examples/getopt/getopt.c -------------------------------------------------------------------------------- /modules/libusb/examples/getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/examples/getopt/getopt.h -------------------------------------------------------------------------------- /modules/libusb/examples/hotplugtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/examples/hotplugtest.c -------------------------------------------------------------------------------- /modules/libusb/examples/listdevs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/examples/listdevs.c -------------------------------------------------------------------------------- /modules/libusb/examples/testlibusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/examples/testlibusb.c -------------------------------------------------------------------------------- /modules/libusb/examples/xusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/examples/xusb.c -------------------------------------------------------------------------------- /modules/libusb/libusb-1.0.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb-1.0.pc.in -------------------------------------------------------------------------------- /modules/libusb/libusb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/Makefile.am -------------------------------------------------------------------------------- /modules/libusb/libusb/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/core.c -------------------------------------------------------------------------------- /modules/libusb/libusb/descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/descriptor.c -------------------------------------------------------------------------------- /modules/libusb/libusb/hotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/hotplug.c -------------------------------------------------------------------------------- /modules/libusb/libusb/hotplug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/hotplug.h -------------------------------------------------------------------------------- /modules/libusb/libusb/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/io.c -------------------------------------------------------------------------------- /modules/libusb/libusb/libusb-1.0.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/libusb-1.0.def -------------------------------------------------------------------------------- /modules/libusb/libusb/libusb-1.0.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/libusb-1.0.rc -------------------------------------------------------------------------------- /modules/libusb/libusb/libusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/libusb.h -------------------------------------------------------------------------------- /modules/libusb/libusb/libusbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/libusbi.h -------------------------------------------------------------------------------- /modules/libusb/libusb/os/darwin_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/os/darwin_usb.c -------------------------------------------------------------------------------- /modules/libusb/libusb/os/darwin_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/os/darwin_usb.h -------------------------------------------------------------------------------- /modules/libusb/libusb/os/haiku_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/os/haiku_usb.h -------------------------------------------------------------------------------- /modules/libusb/libusb/os/linux_udev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/os/linux_udev.c -------------------------------------------------------------------------------- /modules/libusb/libusb/os/linux_usbfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/os/linux_usbfs.c -------------------------------------------------------------------------------- /modules/libusb/libusb/os/linux_usbfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/os/linux_usbfs.h -------------------------------------------------------------------------------- /modules/libusb/libusb/os/netbsd_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/os/netbsd_usb.c -------------------------------------------------------------------------------- /modules/libusb/libusb/os/openbsd_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/os/openbsd_usb.c -------------------------------------------------------------------------------- /modules/libusb/libusb/os/poll_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/os/poll_posix.c -------------------------------------------------------------------------------- /modules/libusb/libusb/os/poll_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/os/poll_posix.h -------------------------------------------------------------------------------- /modules/libusb/libusb/os/poll_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/os/poll_windows.c -------------------------------------------------------------------------------- /modules/libusb/libusb/os/poll_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/os/poll_windows.h -------------------------------------------------------------------------------- /modules/libusb/libusb/os/sunos_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/os/sunos_usb.c -------------------------------------------------------------------------------- /modules/libusb/libusb/os/sunos_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/os/sunos_usb.h -------------------------------------------------------------------------------- /modules/libusb/libusb/os/wince_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/os/wince_usb.c -------------------------------------------------------------------------------- /modules/libusb/libusb/os/wince_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/os/wince_usb.h -------------------------------------------------------------------------------- /modules/libusb/libusb/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/strerror.c -------------------------------------------------------------------------------- /modules/libusb/libusb/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/sync.c -------------------------------------------------------------------------------- /modules/libusb/libusb/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/libusb/version.h -------------------------------------------------------------------------------- /modules/libusb/libusb/version_nano.h: -------------------------------------------------------------------------------- 1 | #define LIBUSB_NANO 11157 2 | -------------------------------------------------------------------------------- /modules/libusb/msvc/appveyor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/appveyor.bat -------------------------------------------------------------------------------- /modules/libusb/msvc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/config.h -------------------------------------------------------------------------------- /modules/libusb/msvc/ddk_build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/ddk_build.cmd -------------------------------------------------------------------------------- /modules/libusb/msvc/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/errno.h -------------------------------------------------------------------------------- /modules/libusb/msvc/fxload_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/fxload_2010.vcxproj -------------------------------------------------------------------------------- /modules/libusb/msvc/fxload_2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/fxload_2012.vcxproj -------------------------------------------------------------------------------- /modules/libusb/msvc/fxload_2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/fxload_2013.vcxproj -------------------------------------------------------------------------------- /modules/libusb/msvc/fxload_2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/fxload_2015.vcxproj -------------------------------------------------------------------------------- /modules/libusb/msvc/fxload_sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/fxload_sources -------------------------------------------------------------------------------- /modules/libusb/msvc/getopt_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/getopt_2005.vcproj -------------------------------------------------------------------------------- /modules/libusb/msvc/getopt_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/getopt_2010.vcxproj -------------------------------------------------------------------------------- /modules/libusb/msvc/getopt_2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/getopt_2012.vcxproj -------------------------------------------------------------------------------- /modules/libusb/msvc/getopt_2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/getopt_2013.vcxproj -------------------------------------------------------------------------------- /modules/libusb/msvc/getopt_2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/getopt_2015.vcxproj -------------------------------------------------------------------------------- /modules/libusb/msvc/getopt_sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/getopt_sources -------------------------------------------------------------------------------- /modules/libusb/msvc/hotplugtest_sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/hotplugtest_sources -------------------------------------------------------------------------------- /modules/libusb/msvc/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/inttypes.h -------------------------------------------------------------------------------- /modules/libusb/msvc/libusb.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/libusb.dsw -------------------------------------------------------------------------------- /modules/libusb/msvc/libusb_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/libusb_2005.sln -------------------------------------------------------------------------------- /modules/libusb/msvc/libusb_2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/libusb_2010.sln -------------------------------------------------------------------------------- /modules/libusb/msvc/libusb_2012.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/libusb_2012.sln -------------------------------------------------------------------------------- /modules/libusb/msvc/libusb_2013.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/libusb_2013.sln -------------------------------------------------------------------------------- /modules/libusb/msvc/libusb_2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/libusb_2015.sln -------------------------------------------------------------------------------- /modules/libusb/msvc/libusb_dll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/libusb_dll.dsp -------------------------------------------------------------------------------- /modules/libusb/msvc/libusb_sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/libusb_sources -------------------------------------------------------------------------------- /modules/libusb/msvc/libusb_static.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/libusb_static.dsp -------------------------------------------------------------------------------- /modules/libusb/msvc/libusb_wince.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/libusb_wince.sln -------------------------------------------------------------------------------- /modules/libusb/msvc/listdevs.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/listdevs.dsp -------------------------------------------------------------------------------- /modules/libusb/msvc/listdevs_sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/listdevs_sources -------------------------------------------------------------------------------- /modules/libusb/msvc/missing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/missing.c -------------------------------------------------------------------------------- /modules/libusb/msvc/missing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/missing.h -------------------------------------------------------------------------------- /modules/libusb/msvc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/stdint.h -------------------------------------------------------------------------------- /modules/libusb/msvc/stress_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/stress_2005.vcproj -------------------------------------------------------------------------------- /modules/libusb/msvc/stress_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/stress_2010.vcxproj -------------------------------------------------------------------------------- /modules/libusb/msvc/stress_2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/stress_2012.vcxproj -------------------------------------------------------------------------------- /modules/libusb/msvc/stress_2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/stress_2013.vcxproj -------------------------------------------------------------------------------- /modules/libusb/msvc/stress_2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/stress_2015.vcxproj -------------------------------------------------------------------------------- /modules/libusb/msvc/stress_wince.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/stress_wince.vcproj -------------------------------------------------------------------------------- /modules/libusb/msvc/xusb.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/xusb.dsp -------------------------------------------------------------------------------- /modules/libusb/msvc/xusb_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/xusb_2005.vcproj -------------------------------------------------------------------------------- /modules/libusb/msvc/xusb_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/xusb_2010.vcxproj -------------------------------------------------------------------------------- /modules/libusb/msvc/xusb_2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/xusb_2012.vcxproj -------------------------------------------------------------------------------- /modules/libusb/msvc/xusb_2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/xusb_2013.vcxproj -------------------------------------------------------------------------------- /modules/libusb/msvc/xusb_2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/xusb_2015.vcxproj -------------------------------------------------------------------------------- /modules/libusb/msvc/xusb_sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/xusb_sources -------------------------------------------------------------------------------- /modules/libusb/msvc/xusb_wince.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/msvc/xusb_wince.vcproj -------------------------------------------------------------------------------- /modules/libusb/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/tests/Makefile.am -------------------------------------------------------------------------------- /modules/libusb/tests/libusb_testlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/tests/libusb_testlib.h -------------------------------------------------------------------------------- /modules/libusb/tests/stress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/tests/stress.c -------------------------------------------------------------------------------- /modules/libusb/tests/testlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/tests/testlib.c -------------------------------------------------------------------------------- /modules/libusb/travis-autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/modules/libusb/travis-autogen.sh -------------------------------------------------------------------------------- /rubberband/RubberBandStretcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/rubberband/RubberBandStretcher.h -------------------------------------------------------------------------------- /rubberband/rubberband-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/rubberband/rubberband-c.h -------------------------------------------------------------------------------- /samples/boom.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/samples/boom.aif -------------------------------------------------------------------------------- /samples/sst-24b.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/samples/sst-24b.wav -------------------------------------------------------------------------------- /samples/sst.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpue/Synthlab/HEAD/samples/sst.wav --------------------------------------------------------------------------------