├── .DS_Store ├── ._.DS_Store ├── .gitignore ├── AIR.jucer ├── Builds ├── MacOSX │ ├── Info-AU.plist │ ├── Info-VST.plist │ ├── Info-VST3.plist │ ├── RecentFilesMenuTemplate.nib │ └── Roth-AIR.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── dkdabaro.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ └── dkdabaro.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── VisualStudio2015 │ ├── Roth-AIR.sln │ ├── Roth-AIR_SharedCode.vcxproj │ ├── Roth-AIR_SharedCode.vcxproj.filters │ ├── Roth-AIR_VST.vcxproj │ ├── Roth-AIR_VST.vcxproj.filters │ ├── Roth-AIR_VST3.vcxproj │ ├── Roth-AIR_VST3.vcxproj.filters │ └── resources.rc ├── DSPFilters ├── .DS_Store ├── ._.DS_Store ├── Builds │ ├── VisualStudio2008 │ │ └── DSPFilters.vcproj │ ├── VisualStudio2010 │ │ ├── DSPFilters.vcxproj │ │ └── DSPFilters.vcxproj.filters │ └── XCode4 │ │ └── DSPFilters.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ └── xcschemes │ │ ├── DSPFiltersMacOS.xcscheme │ │ └── DSPFiltersiOS.xcscheme ├── ProductInfo.txt ├── ProductWebsite.html ├── include │ ├── .DS_Store │ ├── ._.DS_Store │ └── DspFilters │ │ ├── Bessel.h │ │ ├── Biquad.h │ │ ├── Butterworth.h │ │ ├── Cascade.h │ │ ├── ChebyshevI.h │ │ ├── ChebyshevII.h │ │ ├── Common.h │ │ ├── Custom.h │ │ ├── Design.h │ │ ├── Dsp.h │ │ ├── Elliptic.h │ │ ├── Filter.h │ │ ├── Layout.h │ │ ├── Legendre.h │ │ ├── MathSupplement.h │ │ ├── Params.h │ │ ├── PoleFilter.h │ │ ├── RBJ.h │ │ ├── RootFinder.h │ │ ├── SmoothedFilter.h │ │ ├── State.h │ │ ├── Types.h │ │ └── Utilities.h └── source │ ├── Bessel.cpp │ ├── Biquad.cpp │ ├── Butterworth.cpp │ ├── Cascade.cpp │ ├── ChebyshevI.cpp │ ├── ChebyshevII.cpp │ ├── Custom.cpp │ ├── Design.cpp │ ├── Documentation.cpp │ ├── Elliptic.cpp │ ├── Filter.cpp │ ├── Legendre.cpp │ ├── Param.cpp │ ├── PoleFilter.cpp │ ├── RBJ.cpp │ ├── RootFinder.cpp │ └── State.cpp ├── Graphics ├── airText.png ├── bigKnob.png ├── bigKnob_light.png ├── bigKnob_red.png ├── label_freq.png ├── label_gain.png ├── label_mix.png ├── label_thresh.png ├── smallKnob.png ├── smallKnob_light.png ├── title.png └── website.png ├── JuceLibraryCode ├── AppConfig.h ├── BinaryData.cpp ├── BinaryData.h ├── JuceHeader.h ├── JucePluginDefines.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_plugin_client_AAX.cpp ├── include_juce_audio_plugin_client_AAX.mm ├── include_juce_audio_plugin_client_AU.r ├── include_juce_audio_plugin_client_AU_1.mm ├── include_juce_audio_plugin_client_AU_2.mm ├── include_juce_audio_plugin_client_AUv3.mm ├── include_juce_audio_plugin_client_RTAS.r ├── include_juce_audio_plugin_client_RTAS_1.cpp ├── include_juce_audio_plugin_client_RTAS_2.cpp ├── include_juce_audio_plugin_client_RTAS_3.cpp ├── include_juce_audio_plugin_client_RTAS_4.cpp ├── include_juce_audio_plugin_client_RTAS_utils.cpp ├── include_juce_audio_plugin_client_RTAS_utils.mm ├── include_juce_audio_plugin_client_Standalone.cpp ├── include_juce_audio_plugin_client_Unity.cpp ├── include_juce_audio_plugin_client_VST2.cpp ├── include_juce_audio_plugin_client_VST3.cpp ├── include_juce_audio_plugin_client_VST_utils.mm ├── include_juce_audio_plugin_client_utils.cpp ├── include_juce_audio_processors.cpp ├── include_juce_audio_processors.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 └── modules │ ├── 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 │ ├── 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.cpp │ │ ├── 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 │ │ │ ├── ClipToRange.cpp │ │ │ ├── ClipToRange.h │ │ │ ├── FlowGraphNode.cpp │ │ │ ├── FlowGraphNode.h │ │ │ ├── ManyToMultiConverter.cpp │ │ │ ├── ManyToMultiConverter.h │ │ │ ├── MonoToMultiConverter.cpp │ │ │ ├── MonoToMultiConverter.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_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_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_video │ ├── capture │ ├── juce_CameraDevice.cpp │ └── juce_CameraDevice.h │ ├── juce_video.cpp │ ├── juce_video.h │ ├── juce_video.mm │ ├── native │ ├── java │ │ └── app │ │ │ └── com │ │ │ └── rmsl │ │ │ └── juce │ │ │ ├── CameraCaptureSessionCaptureCallback.java │ │ │ ├── CameraCaptureSessionStateCallback.java │ │ │ ├── CameraDeviceStateCallback.java │ │ │ ├── JuceOrientationEventListener.java │ │ │ ├── MediaControllerCallback.java │ │ │ ├── MediaSessionCallback.java │ │ │ └── SystemVolumeObserver.java │ ├── juce_android_CameraDevice.h │ ├── juce_android_Video.h │ ├── juce_ios_CameraDevice.h │ ├── juce_mac_CameraDevice.h │ ├── juce_mac_Video.h │ ├── juce_win32_CameraDevice.h │ └── juce_win32_Video.h │ └── playback │ ├── juce_VideoComponent.cpp │ └── juce_VideoComponent.h ├── LICENSE ├── README.md └── Source ├── ._Compressor.cpp ├── ._Compressor.h ├── ._PluginProcessor.cpp ├── ._SideChain.cpp ├── ._SideChain.h ├── ._WaveShaper.cpp ├── Compressor.cpp ├── Compressor.h ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp ├── PluginProcessor.h ├── SideChain.cpp ├── SideChain.h ├── WaveShaper.cpp └── WaveShaper.h /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/.DS_Store -------------------------------------------------------------------------------- /._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/._.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/.gitignore -------------------------------------------------------------------------------- /AIR.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/AIR.jucer -------------------------------------------------------------------------------- /Builds/MacOSX/Info-AU.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Builds/MacOSX/Info-AU.plist -------------------------------------------------------------------------------- /Builds/MacOSX/Info-VST.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Builds/MacOSX/Info-VST.plist -------------------------------------------------------------------------------- /Builds/MacOSX/Info-VST3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Builds/MacOSX/Info-VST3.plist -------------------------------------------------------------------------------- /Builds/MacOSX/RecentFilesMenuTemplate.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Builds/MacOSX/RecentFilesMenuTemplate.nib -------------------------------------------------------------------------------- /Builds/MacOSX/Roth-AIR.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Builds/MacOSX/Roth-AIR.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Builds/VisualStudio2015/Roth-AIR.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Builds/VisualStudio2015/Roth-AIR.sln -------------------------------------------------------------------------------- /Builds/VisualStudio2015/Roth-AIR_SharedCode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Builds/VisualStudio2015/Roth-AIR_SharedCode.vcxproj -------------------------------------------------------------------------------- /Builds/VisualStudio2015/Roth-AIR_SharedCode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Builds/VisualStudio2015/Roth-AIR_SharedCode.vcxproj.filters -------------------------------------------------------------------------------- /Builds/VisualStudio2015/Roth-AIR_VST.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Builds/VisualStudio2015/Roth-AIR_VST.vcxproj -------------------------------------------------------------------------------- /Builds/VisualStudio2015/Roth-AIR_VST.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Builds/VisualStudio2015/Roth-AIR_VST.vcxproj.filters -------------------------------------------------------------------------------- /Builds/VisualStudio2015/Roth-AIR_VST3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Builds/VisualStudio2015/Roth-AIR_VST3.vcxproj -------------------------------------------------------------------------------- /Builds/VisualStudio2015/Roth-AIR_VST3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Builds/VisualStudio2015/Roth-AIR_VST3.vcxproj.filters -------------------------------------------------------------------------------- /Builds/VisualStudio2015/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Builds/VisualStudio2015/resources.rc -------------------------------------------------------------------------------- /DSPFilters/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/.DS_Store -------------------------------------------------------------------------------- /DSPFilters/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/._.DS_Store -------------------------------------------------------------------------------- /DSPFilters/Builds/VisualStudio2008/DSPFilters.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/Builds/VisualStudio2008/DSPFilters.vcproj -------------------------------------------------------------------------------- /DSPFilters/Builds/VisualStudio2010/DSPFilters.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/Builds/VisualStudio2010/DSPFilters.vcxproj -------------------------------------------------------------------------------- /DSPFilters/Builds/VisualStudio2010/DSPFilters.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/Builds/VisualStudio2010/DSPFilters.vcxproj.filters -------------------------------------------------------------------------------- /DSPFilters/Builds/XCode4/DSPFilters.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/Builds/XCode4/DSPFilters.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DSPFilters/ProductInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/ProductInfo.txt -------------------------------------------------------------------------------- /DSPFilters/ProductWebsite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/ProductWebsite.html -------------------------------------------------------------------------------- /DSPFilters/include/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/.DS_Store -------------------------------------------------------------------------------- /DSPFilters/include/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/._.DS_Store -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/Bessel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/Bessel.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/Biquad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/Biquad.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/Butterworth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/Butterworth.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/Cascade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/Cascade.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/ChebyshevI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/ChebyshevI.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/ChebyshevII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/ChebyshevII.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/Common.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/Custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/Custom.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/Design.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/Design.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/Dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/Dsp.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/Elliptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/Elliptic.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/Filter.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/Layout.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/Legendre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/Legendre.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/MathSupplement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/MathSupplement.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/Params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/Params.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/PoleFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/PoleFilter.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/RBJ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/RBJ.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/RootFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/RootFinder.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/SmoothedFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/SmoothedFilter.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/State.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/Types.h -------------------------------------------------------------------------------- /DSPFilters/include/DspFilters/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/include/DspFilters/Utilities.h -------------------------------------------------------------------------------- /DSPFilters/source/Bessel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/source/Bessel.cpp -------------------------------------------------------------------------------- /DSPFilters/source/Biquad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/source/Biquad.cpp -------------------------------------------------------------------------------- /DSPFilters/source/Butterworth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/source/Butterworth.cpp -------------------------------------------------------------------------------- /DSPFilters/source/Cascade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/source/Cascade.cpp -------------------------------------------------------------------------------- /DSPFilters/source/ChebyshevI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/source/ChebyshevI.cpp -------------------------------------------------------------------------------- /DSPFilters/source/ChebyshevII.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/source/ChebyshevII.cpp -------------------------------------------------------------------------------- /DSPFilters/source/Custom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/source/Custom.cpp -------------------------------------------------------------------------------- /DSPFilters/source/Design.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/source/Design.cpp -------------------------------------------------------------------------------- /DSPFilters/source/Documentation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/source/Documentation.cpp -------------------------------------------------------------------------------- /DSPFilters/source/Elliptic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/source/Elliptic.cpp -------------------------------------------------------------------------------- /DSPFilters/source/Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/source/Filter.cpp -------------------------------------------------------------------------------- /DSPFilters/source/Legendre.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/source/Legendre.cpp -------------------------------------------------------------------------------- /DSPFilters/source/Param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/source/Param.cpp -------------------------------------------------------------------------------- /DSPFilters/source/PoleFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/source/PoleFilter.cpp -------------------------------------------------------------------------------- /DSPFilters/source/RBJ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/source/RBJ.cpp -------------------------------------------------------------------------------- /DSPFilters/source/RootFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/source/RootFinder.cpp -------------------------------------------------------------------------------- /DSPFilters/source/State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/DSPFilters/source/State.cpp -------------------------------------------------------------------------------- /Graphics/airText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Graphics/airText.png -------------------------------------------------------------------------------- /Graphics/bigKnob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Graphics/bigKnob.png -------------------------------------------------------------------------------- /Graphics/bigKnob_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Graphics/bigKnob_light.png -------------------------------------------------------------------------------- /Graphics/bigKnob_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Graphics/bigKnob_red.png -------------------------------------------------------------------------------- /Graphics/label_freq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Graphics/label_freq.png -------------------------------------------------------------------------------- /Graphics/label_gain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Graphics/label_gain.png -------------------------------------------------------------------------------- /Graphics/label_mix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Graphics/label_mix.png -------------------------------------------------------------------------------- /Graphics/label_thresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Graphics/label_thresh.png -------------------------------------------------------------------------------- /Graphics/smallKnob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Graphics/smallKnob.png -------------------------------------------------------------------------------- /Graphics/smallKnob_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Graphics/smallKnob_light.png -------------------------------------------------------------------------------- /Graphics/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Graphics/title.png -------------------------------------------------------------------------------- /Graphics/website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Graphics/website.png -------------------------------------------------------------------------------- /JuceLibraryCode/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/AppConfig.h -------------------------------------------------------------------------------- /JuceLibraryCode/BinaryData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/BinaryData.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/BinaryData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/BinaryData.h -------------------------------------------------------------------------------- /JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /JuceLibraryCode/JucePluginDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/JucePluginDefines.h -------------------------------------------------------------------------------- /JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_devices.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_devices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_devices.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_formats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_formats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_formats.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AAX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AAX.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AAX.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AAX.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AU.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AU.r -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AU_1.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AU_1.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AU_2.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AU_2.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AUv3.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AUv3.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS.r -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_1.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_2.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_3.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_4.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_utils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_utils.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_Standalone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_Standalone.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_Unity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_Unity.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_VST2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_VST2.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_VST3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_VST3.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_VST_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_VST_utils.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_utils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_processors.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_audio_processors.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_core.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_core.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_cryptography.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_cryptography.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_cryptography.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_cryptography.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_data_structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_data_structures.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_data_structures.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_data_structures.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_events.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_events.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_graphics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_graphics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_graphics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_gui_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_gui_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_gui_extra.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_extra.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_gui_extra.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_opengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_opengl.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_opengl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_opengl.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_video.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_video.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/include_juce_video.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiser.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiser.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEUtils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEUtils.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/sources/juce_AudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/sources/juce_AudioSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_ADSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_ADSR.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Decibels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Decibels.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_IIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_IIRFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Reverb.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiDevices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiDevices.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_ios_Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_ios_Audio.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_ios_Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_ios_Audio.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_ALSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_ALSA.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_Bela.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_Bela.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_Midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_Midi.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_win32_ASIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_win32_ASIO.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_win32_Midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_win32_Midi.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/CMakeLists.txt -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/LICENSE -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/readme.md -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/all.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/alloc.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/assert.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/callback.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/compat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/endswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/endswap.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/export.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/format.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/crc.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/md5.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/metadata.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/ordinals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/ordinals.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/win_utf8_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/win_utf8_io.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/bitwise.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/codec.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/framing.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/ogg.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_plugin_client/AU/AUResources.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_plugin_client/AU/AUResources.r -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_plugin_client/AUResources.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_plugin_client/AUResources.r -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Array.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ArrayBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ArrayBase.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ArrayBase.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ElementComparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ElementComparator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_HashMap.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_HashMap_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_HashMap_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_LinkedListPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_LinkedListPointer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ListenerList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ListenerList.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ScopedValueSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ScopedValueSetter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_SortedSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_SortedSet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Variant.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Variant.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/files/juce_File.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/files/juce_File.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileFilter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_MemoryMappedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/files/juce_MemoryMappedFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/javascript/juce_JSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/javascript/juce_JSON.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/javascript/juce_JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/javascript/juce_JSON.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/javascript/juce_Javascript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/javascript/juce_Javascript.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/javascript/juce_Javascript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/javascript/juce_Javascript.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/juce_core.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/juce_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/juce_core.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/juce_core.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_Logger.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_Logger.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Expression.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Expression.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_MathsFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_MathsFunctions.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_NormalisableRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_NormalisableRange.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Random.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Random.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Range.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_StatisticsAccumulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_StatisticsAccumulator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_AllocationHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_AllocationHooks.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_AllocationHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_AllocationHooks.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_Atomic.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_ByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_ByteOrder.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_ContainerDeletePolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_ContainerDeletePolicy.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_HeapBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_HeapBlock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_LeakedObjectDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_LeakedObjectDetector.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_Memory.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_OptionalScopedPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_OptionalScopedPointer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_ScopedPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_ScopedPointer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_SharedResourcePointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_SharedResourcePointer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_Singleton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_WeakReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_WeakReference.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_ConsoleApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_ConsoleApplication.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_ConsoleApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_ConsoleApplication.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Result.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Result.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_RuntimePermissions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_RuntimePermissions.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_RuntimePermissions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_RuntimePermissions.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Uuid.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Uuid.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_WindowsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_WindowsRegistry.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/java/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/java/README.txt -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_BasicNativeHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_BasicNativeHeaders.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_android_Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_android_Files.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_android_JNIHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_android_JNIHelpers.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_android_JNIHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_android_JNIHelpers.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_android_Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_android_Misc.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_android_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_android_Network.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_android_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_android_SystemStats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_android_Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_android_Threads.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_curl_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_curl_Network.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_linux_CommonFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_linux_CommonFile.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_linux_Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_linux_Files.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_linux_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_linux_Network.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_linux_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_linux_SystemStats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_linux_Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_linux_Threads.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_mac_Files.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_mac_Files.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_mac_Network.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_mac_Network.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_mac_Strings.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_mac_Strings.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_mac_SystemStats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_mac_SystemStats.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_mac_Threads.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_mac_Threads.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_osx_ObjCHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_osx_ObjCHelpers.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_posix_IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_posix_IPAddress.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_posix_NamedPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_posix_NamedPipe.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_posix_SharedCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_posix_SharedCode.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_win32_ComSmartPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_win32_ComSmartPtr.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_win32_Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_win32_Files.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_win32_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_win32_Network.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_win32_Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_win32_Registry.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_win32_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_win32_SystemStats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_win32_Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/native/juce_win32_Threads.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/network/juce_IPAddress.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/network/juce_IPAddress.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_MACAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/network/juce_MACAddress.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_MACAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/network/juce_MACAddress.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/network/juce_Socket.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/network/juce_Socket.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_URL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/network/juce_URL.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_URL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/network/juce_URL.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_WebInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/network/juce_WebInputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_WebInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/network/juce_WebInputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_BufferedInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_BufferedInputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_InputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_InputSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_InputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_InputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_InputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_InputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_URLInputSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_URLInputSource.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_URLInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_URLInputSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_CompilerSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/system/juce_CompilerSupport.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_CompilerWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/system/juce_CompilerWarnings.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_PlatformDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/system/juce_PlatformDefs.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/system/juce_StandardHeader.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/system/juce_SystemStats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_SystemStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/system/juce_SystemStats.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_TargetPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/system/juce_TargetPlatform.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_Base64.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_Base64.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_ASCII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_ASCII.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF16.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF32.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF8.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_Identifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_Identifier.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_Identifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_Identifier.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_NewLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_NewLine.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_String.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_String.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringArray.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringArray.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPool.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPool.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringRef.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_TextDiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_TextDiff.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_TextDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/text/juce_TextDiff.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_CriticalSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_CriticalSection.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_DynamicLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_DynamicLibrary.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_HighResolutionTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_HighResolutionTimer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_InterProcessLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_InterProcessLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_Process.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ScopedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ScopedLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ScopedReadLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ScopedReadLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ScopedWriteLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ScopedWriteLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_SpinLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_SpinLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_Thread.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_Thread.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ThreadLocalValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ThreadLocalValue.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/time/juce_Time.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/time/juce_Time.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/README -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/adler32.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/compress.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/crc32.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/crc32.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/deflate.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/deflate.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/infback.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inffast.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inffast.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inffixed.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inflate.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inflate.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/trees.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/trees.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/uncompr.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zconf.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zconf.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zconf.in.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zlib.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zutil.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zutil.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_cryptography/encryption/juce_BlowFish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_cryptography/encryption/juce_BlowFish.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_cryptography/encryption/juce_Primes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_cryptography/encryption/juce_Primes.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_cryptography/encryption/juce_Primes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_cryptography/encryption/juce_Primes.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_cryptography/encryption/juce_RSAKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_cryptography/encryption/juce_RSAKey.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_cryptography/encryption/juce_RSAKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_cryptography/encryption/juce_RSAKey.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_cryptography/hashing/juce_MD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_cryptography/hashing/juce_MD5.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_cryptography/hashing/juce_MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_cryptography/hashing/juce_MD5.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_cryptography/hashing/juce_SHA256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_cryptography/hashing/juce_SHA256.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_cryptography/hashing/juce_SHA256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_cryptography/hashing/juce_SHA256.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_cryptography/hashing/juce_Whirlpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_cryptography/hashing/juce_Whirlpool.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_cryptography/hashing/juce_Whirlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_cryptography/hashing/juce_Whirlpool.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_cryptography/juce_cryptography.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_cryptography/juce_cryptography.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_cryptography/juce_cryptography.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_cryptography/juce_cryptography.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_cryptography/juce_cryptography.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_cryptography/juce_cryptography.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/juce_data_structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/juce_data_structures.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/values/juce_Value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_data_structures/values/juce_Value.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/values/juce_Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_data_structures/values/juce_Value.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/values/juce_ValueTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_data_structures/values/juce_ValueTree.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/broadcasters/juce_AsyncUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/broadcasters/juce_AsyncUpdater.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/juce_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/juce_events.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/juce_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/juce_events.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/juce_events.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_CallbackMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_CallbackMessage.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_DeletedAtShutdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_DeletedAtShutdown.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_Initialisation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_Initialisation.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_Message.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_NotificationType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_NotificationType.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_android_Messaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/native/juce_android_Messaging.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_ios_MessageManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/native/juce_ios_MessageManager.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_linux_EventLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/native/juce_linux_EventLoop.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_linux_Messaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/native/juce_linux_Messaging.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_mac_MessageManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/native/juce_mac_MessageManager.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_osx_MessageQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/native/juce_osx_MessageQueue.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_win32_Messaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/native/juce_win32_Messaging.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_win32_WinRTWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/native/juce_win32_WinRTWrapper.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_Timer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_Timer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_ColourGradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_ColourGradient.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_ColourGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_ColourGradient.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_PixelFormats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_PixelFormats.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/contexts/juce_GraphicsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/contexts/juce_GraphicsContext.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/effects/juce_DropShadowEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/effects/juce_DropShadowEffect.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_AttributedString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_AttributedString.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_AttributedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_AttributedString.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_CustomTypeface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_CustomTypeface.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_CustomTypeface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_CustomTypeface.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_GlyphArrangement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_GlyphArrangement.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_GlyphArrangement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_GlyphArrangement.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_AffineTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_AffineTransform.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_BorderSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_BorderSize.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Line.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Parallelogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Parallelogram.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_PathIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_PathIterator.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_PathIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_PathIterator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_PathStrokeType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_PathStrokeType.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Point.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Rectangle.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_RectangleList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_RectangleList.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/README -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/cderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/cderror.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcapimin.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcapistd.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jccoefct.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jccolor.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcdctmgr.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jchuff.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jchuff.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcinit.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcmainct.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcmarker.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcmaster.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcomapi.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jconfig.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcparam.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcphuff.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcprepct.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcsample.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jctrans.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdapimin.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdapistd.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdatasrc.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdcoefct.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdcolor.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdct.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jddctmgr.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdhuff.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdhuff.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdinput.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmainct.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmarker.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmaster.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmerge.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdphuff.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdpostct.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdsample.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdtrans.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jerror.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jerror.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jfdctflt.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jfdctfst.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jfdctint.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jidctflt.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jutils.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/LICENSE -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngget.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngmem.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngrio.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngset.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngwio.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_Image.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_Image.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_ImageFileFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_ImageFileFormat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/juce_graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/juce_graphics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/juce_graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/juce_graphics.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/juce_graphics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/juce_graphics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/native/juce_android_Fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/native/juce_android_Fonts.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/native/juce_linux_Fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/native/juce_linux_Fonts.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/native/juce_mac_Fonts.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/native/juce_mac_Fonts.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/native/juce_win32_Fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_graphics/native/juce_win32_Fonts.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ArrowButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ArrowButton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ImageButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ImageButton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ShapeButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ShapeButton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_TextButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_TextButton.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_TextButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_TextButton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ToggleButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ToggleButton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/components/juce_Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/components/juce_Component.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Desktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Desktop.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Desktop.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Displays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Displays.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Displays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Displays.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/drawables/juce_Drawable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/drawables/juce_Drawable.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/drawables/juce_Drawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/drawables/juce_Drawable.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyListener.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyPress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyPress.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyPress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyPress.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexBox.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexBox.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexItem.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Grid.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Grid.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_GridItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_GridItem.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_GridItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_GridItem.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_SidePanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_SidePanel.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_SidePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_SidePanel.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarModel.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarModel.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/misc/juce_BubbleComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/misc/juce_BubbleComponent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/misc/juce_DropShadower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/misc/juce_DropShadower.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/misc/juce_DropShadower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/misc/juce_DropShadower.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_LassoComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_LassoComponent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseCursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseCursor.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseCursor.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseListener.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_TooltipClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_TooltipClient.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/native/juce_mac_MainMenu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/native/juce_mac_MainMenu.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ProgressBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ProgressBar.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TableListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TableListBox.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TextEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TextEditor.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TextEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TextEditor.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_AlertWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_AlertWindow.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_CallOutBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_CallOutBox.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_CallOutBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_CallOutBox.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_DialogWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_DialogWindow.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_AppleRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_AppleRemote.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_ColourSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_ColourSelector.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_ColourSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_ColourSelector.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_PreferencesPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_PreferencesPanel.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/geometry/juce_Matrix3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/geometry/juce_Matrix3D.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/geometry/juce_Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/geometry/juce_Quaternion.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/geometry/juce_Vector3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/geometry/juce_Vector3D.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/juce_opengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/juce_opengl.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/juce_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/juce_opengl.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/juce_opengl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/juce_opengl.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/native/juce_OpenGLExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/native/juce_OpenGLExtensions.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_android.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_ios.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_linux_X11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_linux_X11.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_osx.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_win32.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLContext.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLContext.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLFrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLFrameBuffer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLHelpers.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLHelpers.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLImage.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLImage.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLPixelFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLPixelFormat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLRenderer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLTexture.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLTexture.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/utils/juce_OpenGLAppComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_opengl/utils/juce_OpenGLAppComponent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/capture/juce_CameraDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_video/capture/juce_CameraDevice.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/capture/juce_CameraDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_video/capture/juce_CameraDevice.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/juce_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_video/juce_video.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/juce_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_video/juce_video.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/juce_video.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_video/juce_video.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/native/juce_android_Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_video/native/juce_android_Video.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/native/juce_ios_CameraDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_video/native/juce_ios_CameraDevice.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/native/juce_mac_CameraDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_video/native/juce_mac_CameraDevice.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/native/juce_mac_Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_video/native/juce_mac_Video.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/native/juce_win32_CameraDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_video/native/juce_win32_CameraDevice.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/native/juce_win32_Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_video/native/juce_win32_Video.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/playback/juce_VideoComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_video/playback/juce_VideoComponent.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/playback/juce_VideoComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/JuceLibraryCode/modules/juce_video/playback/juce_VideoComponent.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/README.md -------------------------------------------------------------------------------- /Source/._Compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Source/._Compressor.cpp -------------------------------------------------------------------------------- /Source/._Compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Source/._Compressor.h -------------------------------------------------------------------------------- /Source/._PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Source/._PluginProcessor.cpp -------------------------------------------------------------------------------- /Source/._SideChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Source/._SideChain.cpp -------------------------------------------------------------------------------- /Source/._SideChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Source/._SideChain.h -------------------------------------------------------------------------------- /Source/._WaveShaper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Source/._WaveShaper.cpp -------------------------------------------------------------------------------- /Source/Compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Source/Compressor.cpp -------------------------------------------------------------------------------- /Source/Compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Source/Compressor.h -------------------------------------------------------------------------------- /Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Source/PluginEditor.h -------------------------------------------------------------------------------- /Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Source/SideChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Source/SideChain.cpp -------------------------------------------------------------------------------- /Source/SideChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Source/SideChain.h -------------------------------------------------------------------------------- /Source/WaveShaper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Source/WaveShaper.cpp -------------------------------------------------------------------------------- /Source/WaveShaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielrothmann/Roth-AIR/HEAD/Source/WaveShaper.h --------------------------------------------------------------------------------