├── .gitignore ├── CHANGES.txt ├── COPYING ├── README.md ├── README.txt ├── VERSION_TF4 ├── installers ├── tf4_mac │ └── Tunefish 4.pkgproj └── tf4_win │ └── tunefish4.iss ├── media ├── tf4modules │ ├── no_remorse.tfm │ ├── no_remorse.tfm.h │ ├── no_remorse.tfm.js │ ├── no_remorse.tfm.log │ ├── no_remorse.xrns │ ├── tf4testsong.tfm │ ├── tf4testsong.tfm.h │ ├── tf4testsong.tfm.js │ └── tf4testsong.tfm.log └── tunefish4.jpg ├── patches └── tf4programs │ ├── program0.txt │ ├── program1.txt │ ├── program10.txt │ ├── program11.txt │ ├── program12.txt │ ├── program13.txt │ ├── program14.txt │ ├── program15.txt │ ├── program16.txt │ ├── program17.txt │ ├── program18.txt │ ├── program19.txt │ ├── program2.txt │ ├── program20.txt │ ├── program21.txt │ ├── program22.txt │ ├── program23.txt │ ├── program24.txt │ ├── program25.txt │ ├── program26.txt │ ├── program27.txt │ ├── program28.txt │ ├── program29.txt │ ├── program3.txt │ ├── program30.txt │ ├── program31.txt │ ├── program32.txt │ ├── program33.txt │ ├── program34.txt │ ├── program35.txt │ ├── program36.txt │ ├── program37.txt │ ├── program38.txt │ ├── program39.txt │ ├── program4.txt │ ├── program40.txt │ ├── program41.txt │ ├── program42.txt │ ├── program43.txt │ ├── program44.txt │ ├── program45.txt │ ├── program46.txt │ ├── program47.txt │ ├── program48.txt │ ├── program49.txt │ ├── program5.txt │ ├── program50.txt │ ├── program51.txt │ ├── program52.txt │ ├── program53.txt │ ├── program54.txt │ ├── program55.txt │ ├── program56.txt │ ├── program57.txt │ ├── program58.txt │ ├── program59.txt │ ├── program6.txt │ ├── program60.txt │ ├── program61.txt │ ├── program62.txt │ ├── program63.txt │ ├── program64.txt │ ├── program65.txt │ ├── program66.txt │ ├── program67.txt │ ├── program68.txt │ ├── program69.txt │ ├── program7.txt │ ├── program70.txt │ ├── program71.txt │ ├── program72.txt │ ├── program73.txt │ ├── program74.txt │ ├── program75.txt │ ├── program76.txt │ ├── program77.txt │ ├── program78.txt │ ├── program79.txt │ ├── program8.txt │ ├── program80.txt │ ├── program81.txt │ ├── program82.txt │ ├── program83.txt │ ├── program84.txt │ ├── program85.txt │ ├── program86.txt │ ├── program87.txt │ ├── program88.txt │ ├── program89.txt │ ├── program9.txt │ ├── program90.txt │ └── program91.txt ├── scripts ├── buildReleaseTf4_Mac.sh ├── buildReleaseTf4_x64.bat ├── buildReleaseTf4_x64.sh ├── buildReleaseTf4_x86.bat ├── buildReleaseTf4_x86.sh ├── createVersionTf4.bat ├── createVersionTf4.sh ├── package-lock.json ├── package.json └── version.js └── src ├── tunefish4 ├── Builds │ ├── LinuxMakefile │ │ ├── Makefile │ │ └── make_helpers │ │ │ └── arch_detection.cpp │ ├── MacOSX │ │ ├── AUv3_AppExtension.entitlements │ │ ├── Info-AU.plist │ │ ├── Info-AUv3_AppExtension.plist │ │ ├── Info-VST.plist │ │ ├── Info-VST3.plist │ │ ├── Info.plist │ │ ├── RecentFilesMenuTemplate.nib │ │ ├── Tunefish4.entitlements │ │ └── Tunefish4.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── VisualStudio2015 │ │ ├── Tunefish4.sln │ │ ├── Tunefish4_SharedCode.vcxproj │ │ ├── Tunefish4_SharedCode.vcxproj.filters │ │ ├── Tunefish4_VST.vcxproj │ │ ├── Tunefish4_VST.vcxproj.filters │ │ ├── Tunefish4_VST3.vcxproj │ │ ├── Tunefish4_VST3.vcxproj.filters │ │ └── resources.rc │ └── VisualStudio2017 │ │ ├── Tunefish4.sln │ │ ├── Tunefish4_SharedCode.vcxproj │ │ ├── Tunefish4_SharedCode.vcxproj.filters │ │ ├── Tunefish4_VST.vcxproj │ │ ├── Tunefish4_VST.vcxproj.filters │ │ ├── Tunefish4_VST3.vcxproj │ │ ├── Tunefish4_VST3.vcxproj.filters │ │ └── resources.rc ├── JuceLibraryCode │ ├── AppConfig.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_audio_utils.cpp │ ├── include_juce_audio_utils.mm │ ├── include_juce_core.cpp │ ├── include_juce_core.mm │ ├── include_juce_data_structures.cpp │ ├── include_juce_data_structures.mm │ ├── include_juce_events.cpp │ ├── include_juce_events.mm │ ├── include_juce_graphics.cpp │ ├── include_juce_graphics.mm │ ├── include_juce_gui_basics.cpp │ ├── include_juce_gui_basics.mm │ ├── include_juce_gui_extra.cpp │ ├── include_juce_gui_extra.mm │ └── 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_audio_utils │ │ ├── audio_cd │ │ │ ├── juce_AudioCDBurner.h │ │ │ ├── juce_AudioCDReader.cpp │ │ │ └── juce_AudioCDReader.h │ │ ├── gui │ │ │ ├── juce_AudioAppComponent.cpp │ │ │ ├── juce_AudioAppComponent.h │ │ │ ├── juce_AudioDeviceSelectorComponent.cpp │ │ │ ├── juce_AudioDeviceSelectorComponent.h │ │ │ ├── juce_AudioThumbnail.cpp │ │ │ ├── juce_AudioThumbnail.h │ │ │ ├── juce_AudioThumbnailBase.h │ │ │ ├── juce_AudioThumbnailCache.cpp │ │ │ ├── juce_AudioThumbnailCache.h │ │ │ ├── juce_AudioVisualiserComponent.cpp │ │ │ ├── juce_AudioVisualiserComponent.h │ │ │ ├── juce_BluetoothMidiDevicePairingDialogue.h │ │ │ ├── juce_MidiKeyboardComponent.cpp │ │ │ └── juce_MidiKeyboardComponent.h │ │ ├── juce_audio_utils.cpp │ │ ├── juce_audio_utils.h │ │ ├── juce_audio_utils.mm │ │ ├── native │ │ │ ├── juce_android_BluetoothMidiDevicePairingDialogue.cpp │ │ │ ├── juce_ios_BluetoothMidiDevicePairingDialogue.mm │ │ │ ├── juce_linux_AudioCDReader.cpp │ │ │ ├── juce_linux_BluetoothMidiDevicePairingDialogue.cpp │ │ │ ├── juce_mac_AudioCDBurner.mm │ │ │ ├── juce_mac_AudioCDReader.mm │ │ │ ├── juce_mac_BluetoothMidiDevicePairingDialogue.mm │ │ │ ├── juce_win32_AudioCDBurner.cpp │ │ │ ├── juce_win32_AudioCDReader.cpp │ │ │ └── juce_win_BluetoothMidiDevicePairingDialogue.cpp │ │ └── players │ │ │ ├── juce_AudioProcessorPlayer.cpp │ │ │ ├── juce_AudioProcessorPlayer.h │ │ │ ├── juce_SoundPlayer.cpp │ │ │ └── juce_SoundPlayer.h │ │ ├── juce_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_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 ├── Source │ ├── PluginEditor.cpp │ ├── PluginEditor.h │ ├── PluginProcessor.cpp │ ├── PluginProcessor.h │ ├── factorypatches.hpp │ ├── runtime │ │ ├── array.cpp │ │ ├── array.hpp │ │ ├── random.cpp │ │ ├── random.hpp │ │ ├── runtime.cpp │ │ ├── runtime.hpp │ │ ├── simd.cpp │ │ ├── simd.hpp │ │ ├── system.hpp │ │ └── types.hpp │ ├── synth │ │ ├── tf4.cpp │ │ ├── tf4.hpp │ │ ├── tf4fx.cpp │ │ ├── tf4fx.hpp │ │ ├── tfrecorder.cpp │ │ └── tfrecorder.hpp │ ├── tflookandfeel.cpp │ ├── tflookandfeel.h │ ├── tfsynthprogram.cpp │ └── tfsynthprogram.hpp └── Tunefish4.jucer └── tunefish4player ├── datastream.cpp ├── datastream.hpp ├── main.cpp ├── tf4dx.cpp ├── tf4dx.hpp ├── tf4player.cpp ├── tf4player.hpp ├── tfplayer.sln ├── tfplayer.vcxproj ├── tfplayer.vcxproj.filters ├── threading.cpp └── threading.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/README.txt -------------------------------------------------------------------------------- /VERSION_TF4: -------------------------------------------------------------------------------- 1 | 4.3.0 2 | -------------------------------------------------------------------------------- /installers/tf4_mac/Tunefish 4.pkgproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/installers/tf4_mac/Tunefish 4.pkgproj -------------------------------------------------------------------------------- /installers/tf4_win/tunefish4.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/installers/tf4_win/tunefish4.iss -------------------------------------------------------------------------------- /media/tf4modules/no_remorse.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/media/tf4modules/no_remorse.tfm -------------------------------------------------------------------------------- /media/tf4modules/no_remorse.tfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/media/tf4modules/no_remorse.tfm.h -------------------------------------------------------------------------------- /media/tf4modules/no_remorse.tfm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/media/tf4modules/no_remorse.tfm.js -------------------------------------------------------------------------------- /media/tf4modules/no_remorse.tfm.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/media/tf4modules/no_remorse.tfm.log -------------------------------------------------------------------------------- /media/tf4modules/no_remorse.xrns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/media/tf4modules/no_remorse.xrns -------------------------------------------------------------------------------- /media/tf4modules/tf4testsong.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/media/tf4modules/tf4testsong.tfm -------------------------------------------------------------------------------- /media/tf4modules/tf4testsong.tfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/media/tf4modules/tf4testsong.tfm.h -------------------------------------------------------------------------------- /media/tf4modules/tf4testsong.tfm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/media/tf4modules/tf4testsong.tfm.js -------------------------------------------------------------------------------- /media/tf4modules/tf4testsong.tfm.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/media/tf4modules/tf4testsong.tfm.log -------------------------------------------------------------------------------- /media/tunefish4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/media/tunefish4.jpg -------------------------------------------------------------------------------- /patches/tf4programs/program0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program0.txt -------------------------------------------------------------------------------- /patches/tf4programs/program1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program1.txt -------------------------------------------------------------------------------- /patches/tf4programs/program10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program10.txt -------------------------------------------------------------------------------- /patches/tf4programs/program11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program11.txt -------------------------------------------------------------------------------- /patches/tf4programs/program12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program12.txt -------------------------------------------------------------------------------- /patches/tf4programs/program13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program13.txt -------------------------------------------------------------------------------- /patches/tf4programs/program14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program14.txt -------------------------------------------------------------------------------- /patches/tf4programs/program15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program15.txt -------------------------------------------------------------------------------- /patches/tf4programs/program16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program16.txt -------------------------------------------------------------------------------- /patches/tf4programs/program17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program17.txt -------------------------------------------------------------------------------- /patches/tf4programs/program18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program18.txt -------------------------------------------------------------------------------- /patches/tf4programs/program19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program19.txt -------------------------------------------------------------------------------- /patches/tf4programs/program2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program2.txt -------------------------------------------------------------------------------- /patches/tf4programs/program20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program20.txt -------------------------------------------------------------------------------- /patches/tf4programs/program21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program21.txt -------------------------------------------------------------------------------- /patches/tf4programs/program22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program22.txt -------------------------------------------------------------------------------- /patches/tf4programs/program23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program23.txt -------------------------------------------------------------------------------- /patches/tf4programs/program24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program24.txt -------------------------------------------------------------------------------- /patches/tf4programs/program25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program25.txt -------------------------------------------------------------------------------- /patches/tf4programs/program26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program26.txt -------------------------------------------------------------------------------- /patches/tf4programs/program27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program27.txt -------------------------------------------------------------------------------- /patches/tf4programs/program28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program28.txt -------------------------------------------------------------------------------- /patches/tf4programs/program29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program29.txt -------------------------------------------------------------------------------- /patches/tf4programs/program3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program3.txt -------------------------------------------------------------------------------- /patches/tf4programs/program30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program30.txt -------------------------------------------------------------------------------- /patches/tf4programs/program31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program31.txt -------------------------------------------------------------------------------- /patches/tf4programs/program32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program32.txt -------------------------------------------------------------------------------- /patches/tf4programs/program33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program33.txt -------------------------------------------------------------------------------- /patches/tf4programs/program34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program34.txt -------------------------------------------------------------------------------- /patches/tf4programs/program35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program35.txt -------------------------------------------------------------------------------- /patches/tf4programs/program36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program36.txt -------------------------------------------------------------------------------- /patches/tf4programs/program37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program37.txt -------------------------------------------------------------------------------- /patches/tf4programs/program38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program38.txt -------------------------------------------------------------------------------- /patches/tf4programs/program39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program39.txt -------------------------------------------------------------------------------- /patches/tf4programs/program4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program4.txt -------------------------------------------------------------------------------- /patches/tf4programs/program40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program40.txt -------------------------------------------------------------------------------- /patches/tf4programs/program41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program41.txt -------------------------------------------------------------------------------- /patches/tf4programs/program42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program42.txt -------------------------------------------------------------------------------- /patches/tf4programs/program43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program43.txt -------------------------------------------------------------------------------- /patches/tf4programs/program44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program44.txt -------------------------------------------------------------------------------- /patches/tf4programs/program45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program45.txt -------------------------------------------------------------------------------- /patches/tf4programs/program46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program46.txt -------------------------------------------------------------------------------- /patches/tf4programs/program47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program47.txt -------------------------------------------------------------------------------- /patches/tf4programs/program48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program48.txt -------------------------------------------------------------------------------- /patches/tf4programs/program49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program49.txt -------------------------------------------------------------------------------- /patches/tf4programs/program5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program5.txt -------------------------------------------------------------------------------- /patches/tf4programs/program50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program50.txt -------------------------------------------------------------------------------- /patches/tf4programs/program51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program51.txt -------------------------------------------------------------------------------- /patches/tf4programs/program52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program52.txt -------------------------------------------------------------------------------- /patches/tf4programs/program53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program53.txt -------------------------------------------------------------------------------- /patches/tf4programs/program54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program54.txt -------------------------------------------------------------------------------- /patches/tf4programs/program55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program55.txt -------------------------------------------------------------------------------- /patches/tf4programs/program56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program56.txt -------------------------------------------------------------------------------- /patches/tf4programs/program57.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program57.txt -------------------------------------------------------------------------------- /patches/tf4programs/program58.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program58.txt -------------------------------------------------------------------------------- /patches/tf4programs/program59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program59.txt -------------------------------------------------------------------------------- /patches/tf4programs/program6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program6.txt -------------------------------------------------------------------------------- /patches/tf4programs/program60.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program60.txt -------------------------------------------------------------------------------- /patches/tf4programs/program61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program61.txt -------------------------------------------------------------------------------- /patches/tf4programs/program62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program62.txt -------------------------------------------------------------------------------- /patches/tf4programs/program63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program63.txt -------------------------------------------------------------------------------- /patches/tf4programs/program64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program64.txt -------------------------------------------------------------------------------- /patches/tf4programs/program65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program65.txt -------------------------------------------------------------------------------- /patches/tf4programs/program66.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program66.txt -------------------------------------------------------------------------------- /patches/tf4programs/program67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program67.txt -------------------------------------------------------------------------------- /patches/tf4programs/program68.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program68.txt -------------------------------------------------------------------------------- /patches/tf4programs/program69.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program69.txt -------------------------------------------------------------------------------- /patches/tf4programs/program7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program7.txt -------------------------------------------------------------------------------- /patches/tf4programs/program70.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program70.txt -------------------------------------------------------------------------------- /patches/tf4programs/program71.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program71.txt -------------------------------------------------------------------------------- /patches/tf4programs/program72.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program72.txt -------------------------------------------------------------------------------- /patches/tf4programs/program73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program73.txt -------------------------------------------------------------------------------- /patches/tf4programs/program74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program74.txt -------------------------------------------------------------------------------- /patches/tf4programs/program75.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program75.txt -------------------------------------------------------------------------------- /patches/tf4programs/program76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program76.txt -------------------------------------------------------------------------------- /patches/tf4programs/program77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program77.txt -------------------------------------------------------------------------------- /patches/tf4programs/program78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program78.txt -------------------------------------------------------------------------------- /patches/tf4programs/program79.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program79.txt -------------------------------------------------------------------------------- /patches/tf4programs/program8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program8.txt -------------------------------------------------------------------------------- /patches/tf4programs/program80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program80.txt -------------------------------------------------------------------------------- /patches/tf4programs/program81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program81.txt -------------------------------------------------------------------------------- /patches/tf4programs/program82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program82.txt -------------------------------------------------------------------------------- /patches/tf4programs/program83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program83.txt -------------------------------------------------------------------------------- /patches/tf4programs/program84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program84.txt -------------------------------------------------------------------------------- /patches/tf4programs/program85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program85.txt -------------------------------------------------------------------------------- /patches/tf4programs/program86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program86.txt -------------------------------------------------------------------------------- /patches/tf4programs/program87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program87.txt -------------------------------------------------------------------------------- /patches/tf4programs/program88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program88.txt -------------------------------------------------------------------------------- /patches/tf4programs/program89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program89.txt -------------------------------------------------------------------------------- /patches/tf4programs/program9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program9.txt -------------------------------------------------------------------------------- /patches/tf4programs/program90.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program90.txt -------------------------------------------------------------------------------- /patches/tf4programs/program91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/patches/tf4programs/program91.txt -------------------------------------------------------------------------------- /scripts/buildReleaseTf4_Mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/scripts/buildReleaseTf4_Mac.sh -------------------------------------------------------------------------------- /scripts/buildReleaseTf4_x64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/scripts/buildReleaseTf4_x64.bat -------------------------------------------------------------------------------- /scripts/buildReleaseTf4_x64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/scripts/buildReleaseTf4_x64.sh -------------------------------------------------------------------------------- /scripts/buildReleaseTf4_x86.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/scripts/buildReleaseTf4_x86.bat -------------------------------------------------------------------------------- /scripts/buildReleaseTf4_x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/scripts/buildReleaseTf4_x86.sh -------------------------------------------------------------------------------- /scripts/createVersionTf4.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | call npm install 3 | node version.js -------------------------------------------------------------------------------- /scripts/createVersionTf4.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | npm install 3 | node version.js -------------------------------------------------------------------------------- /scripts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/scripts/package-lock.json -------------------------------------------------------------------------------- /scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/scripts/package.json -------------------------------------------------------------------------------- /scripts/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/scripts/version.js -------------------------------------------------------------------------------- /src/tunefish4/Builds/LinuxMakefile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/LinuxMakefile/Makefile -------------------------------------------------------------------------------- /src/tunefish4/Builds/LinuxMakefile/make_helpers/arch_detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/LinuxMakefile/make_helpers/arch_detection.cpp -------------------------------------------------------------------------------- /src/tunefish4/Builds/MacOSX/AUv3_AppExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/MacOSX/AUv3_AppExtension.entitlements -------------------------------------------------------------------------------- /src/tunefish4/Builds/MacOSX/Info-AU.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/MacOSX/Info-AU.plist -------------------------------------------------------------------------------- /src/tunefish4/Builds/MacOSX/Info-AUv3_AppExtension.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/MacOSX/Info-AUv3_AppExtension.plist -------------------------------------------------------------------------------- /src/tunefish4/Builds/MacOSX/Info-VST.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/MacOSX/Info-VST.plist -------------------------------------------------------------------------------- /src/tunefish4/Builds/MacOSX/Info-VST3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/MacOSX/Info-VST3.plist -------------------------------------------------------------------------------- /src/tunefish4/Builds/MacOSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/MacOSX/Info.plist -------------------------------------------------------------------------------- /src/tunefish4/Builds/MacOSX/RecentFilesMenuTemplate.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/MacOSX/RecentFilesMenuTemplate.nib -------------------------------------------------------------------------------- /src/tunefish4/Builds/MacOSX/Tunefish4.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/MacOSX/Tunefish4.entitlements -------------------------------------------------------------------------------- /src/tunefish4/Builds/MacOSX/Tunefish4.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/MacOSX/Tunefish4.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /src/tunefish4/Builds/VisualStudio2015/Tunefish4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/VisualStudio2015/Tunefish4.sln -------------------------------------------------------------------------------- /src/tunefish4/Builds/VisualStudio2015/Tunefish4_SharedCode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/VisualStudio2015/Tunefish4_SharedCode.vcxproj -------------------------------------------------------------------------------- /src/tunefish4/Builds/VisualStudio2015/Tunefish4_SharedCode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/VisualStudio2015/Tunefish4_SharedCode.vcxproj.filters -------------------------------------------------------------------------------- /src/tunefish4/Builds/VisualStudio2015/Tunefish4_VST.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/VisualStudio2015/Tunefish4_VST.vcxproj -------------------------------------------------------------------------------- /src/tunefish4/Builds/VisualStudio2015/Tunefish4_VST.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/VisualStudio2015/Tunefish4_VST.vcxproj.filters -------------------------------------------------------------------------------- /src/tunefish4/Builds/VisualStudio2015/Tunefish4_VST3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/VisualStudio2015/Tunefish4_VST3.vcxproj -------------------------------------------------------------------------------- /src/tunefish4/Builds/VisualStudio2015/Tunefish4_VST3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/VisualStudio2015/Tunefish4_VST3.vcxproj.filters -------------------------------------------------------------------------------- /src/tunefish4/Builds/VisualStudio2015/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/VisualStudio2015/resources.rc -------------------------------------------------------------------------------- /src/tunefish4/Builds/VisualStudio2017/Tunefish4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/VisualStudio2017/Tunefish4.sln -------------------------------------------------------------------------------- /src/tunefish4/Builds/VisualStudio2017/Tunefish4_SharedCode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/VisualStudio2017/Tunefish4_SharedCode.vcxproj -------------------------------------------------------------------------------- /src/tunefish4/Builds/VisualStudio2017/Tunefish4_SharedCode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/VisualStudio2017/Tunefish4_SharedCode.vcxproj.filters -------------------------------------------------------------------------------- /src/tunefish4/Builds/VisualStudio2017/Tunefish4_VST.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/VisualStudio2017/Tunefish4_VST.vcxproj -------------------------------------------------------------------------------- /src/tunefish4/Builds/VisualStudio2017/Tunefish4_VST.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/VisualStudio2017/Tunefish4_VST.vcxproj.filters -------------------------------------------------------------------------------- /src/tunefish4/Builds/VisualStudio2017/Tunefish4_VST3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/VisualStudio2017/Tunefish4_VST3.vcxproj -------------------------------------------------------------------------------- /src/tunefish4/Builds/VisualStudio2017/Tunefish4_VST3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/VisualStudio2017/Tunefish4_VST3.vcxproj.filters -------------------------------------------------------------------------------- /src/tunefish4/Builds/VisualStudio2017/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Builds/VisualStudio2017/resources.rc -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/AppConfig.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/JucePluginDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/JucePluginDefines.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_basics.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_basics.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_devices.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_devices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_devices.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_formats.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_formats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_formats.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_AAX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_AAX.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_AAX.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_AAX.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_AU.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_AU.r -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_AU_1.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_AU_1.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_AU_2.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_AU_2.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_AUv3.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_AUv3.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_RTAS.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_RTAS.r -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_1.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_2.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_3.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_4.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_utils.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_utils.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_Standalone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_Standalone.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_Unity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_Unity.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_VST2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_VST2.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_VST3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_VST3.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_VST_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_VST_utils.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_plugin_client_utils.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_processors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_processors.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_processors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_processors.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_utils.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_audio_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_audio_utils.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_core.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_core.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_data_structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_data_structures.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_data_structures.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_data_structures.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_events.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_events.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_graphics.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_graphics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_graphics.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_gui_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_gui_basics.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_gui_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_gui_basics.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_gui_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_gui_extra.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/include_juce_gui_extra.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/include_juce_gui_extra.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiser.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiser.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEUtils.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEUtils.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/sources/juce_AudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/sources/juce_AudioSource.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_ADSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_ADSR.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Decibels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Decibels.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_IIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_IIRFilter.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Reverb.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiDevices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiDevices.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/juce_ios_Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/juce_ios_Audio.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/juce_ios_Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/juce_ios_Audio.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_ALSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_ALSA.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_Bela.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_Bela.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_Midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_Midi.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/juce_win32_ASIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/juce_win32_ASIO.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/juce_win32_Midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/juce_win32_Midi.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/oboe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/oboe/CMakeLists.txt -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/oboe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/oboe/LICENSE -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/oboe/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_devices/native/oboe/readme.md -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/all.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/alloc.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/assert.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/callback.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/compat.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/endswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/endswap.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/export.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/format.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/crc.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/md5.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/metadata.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/ordinals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/ordinals.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/win_utf8_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/win_utf8_io.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/bitwise.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/codec.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/framing.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/ogg.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormat.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_plugin_client/AU/AUResources.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_plugin_client/AU/AUResources.r -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_plugin_client/AUResources.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_plugin_client/AUResources.r -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioAppComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioAppComponent.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioThumbnail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioThumbnail.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioThumbnail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioThumbnail.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_utils/players/juce_SoundPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_utils/players/juce_SoundPlayer.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_audio_utils/players/juce_SoundPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_audio_utils/players/juce_SoundPlayer.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_Array.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_ArrayBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_ArrayBase.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_ArrayBase.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_ElementComparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_ElementComparator.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_HashMap.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_HashMap_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_HashMap_test.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_LinkedListPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_LinkedListPointer.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_ListenerList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_ListenerList.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_ScopedValueSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_ScopedValueSetter.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_SortedSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_SortedSet.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_Variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_Variant.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/containers/juce_Variant.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_File.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_File.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_FileFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_FileFilter.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_FileFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_FileFilter.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_MemoryMappedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_MemoryMappedFile.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/javascript/juce_JSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/javascript/juce_JSON.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/javascript/juce_JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/javascript/juce_JSON.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/javascript/juce_Javascript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/javascript/juce_Javascript.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/javascript/juce_Javascript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/javascript/juce_Javascript.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/juce_core.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/juce_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/juce_core.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/juce_core.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/logging/juce_Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/logging/juce_Logger.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/logging/juce_Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/logging/juce_Logger.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_Expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_Expression.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_Expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_Expression.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_MathsFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_MathsFunctions.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_NormalisableRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_NormalisableRange.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_Random.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_Random.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_Range.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_StatisticsAccumulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/maths/juce_StatisticsAccumulator.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_AllocationHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_AllocationHooks.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_AllocationHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_AllocationHooks.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_Atomic.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_ByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_ByteOrder.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_ContainerDeletePolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_ContainerDeletePolicy.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_HeapBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_HeapBlock.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_LeakedObjectDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_LeakedObjectDetector.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_Memory.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_OptionalScopedPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_OptionalScopedPointer.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_ScopedPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_ScopedPointer.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_SharedResourcePointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_SharedResourcePointer.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_Singleton.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_WeakReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/memory/juce_WeakReference.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/misc/juce_ConsoleApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/misc/juce_ConsoleApplication.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/misc/juce_ConsoleApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/misc/juce_ConsoleApplication.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/misc/juce_Result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/misc/juce_Result.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/misc/juce_Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/misc/juce_Result.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/misc/juce_RuntimePermissions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/misc/juce_RuntimePermissions.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/misc/juce_RuntimePermissions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/misc/juce_RuntimePermissions.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/misc/juce_Uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/misc/juce_Uuid.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/misc/juce_Uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/misc/juce_Uuid.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/misc/juce_WindowsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/misc/juce_WindowsRegistry.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/java/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/java/README.txt -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_BasicNativeHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_BasicNativeHeaders.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_android_Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_android_Files.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_android_JNIHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_android_JNIHelpers.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_android_JNIHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_android_JNIHelpers.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_android_Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_android_Misc.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_android_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_android_Network.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_android_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_android_SystemStats.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_android_Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_android_Threads.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_curl_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_curl_Network.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_linux_CommonFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_linux_CommonFile.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_linux_Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_linux_Files.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_linux_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_linux_Network.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_linux_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_linux_SystemStats.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_linux_Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_linux_Threads.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_mac_Files.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_mac_Files.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_mac_Network.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_mac_Network.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_mac_Strings.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_mac_Strings.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_mac_SystemStats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_mac_SystemStats.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_mac_Threads.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_mac_Threads.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_osx_ObjCHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_osx_ObjCHelpers.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_posix_IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_posix_IPAddress.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_posix_NamedPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_posix_NamedPipe.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_posix_SharedCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_posix_SharedCode.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_win32_ComSmartPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_win32_ComSmartPtr.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_win32_Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_win32_Files.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_win32_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_win32_Network.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_win32_Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_win32_Registry.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_win32_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_win32_SystemStats.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_win32_Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/native/juce_win32_Threads.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_IPAddress.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_IPAddress.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_MACAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_MACAddress.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_MACAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_MACAddress.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_Socket.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_Socket.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_URL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_URL.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_URL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_URL.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_WebInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_WebInputStream.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_WebInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/network/juce_WebInputStream.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_BufferedInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_BufferedInputStream.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_InputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_InputSource.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_InputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_InputStream.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_InputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_InputStream.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_URLInputSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_URLInputSource.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_URLInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/streams/juce_URLInputSource.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/system/juce_CompilerSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/system/juce_CompilerSupport.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/system/juce_CompilerWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/system/juce_CompilerWarnings.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/system/juce_PlatformDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/system/juce_PlatformDefs.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/system/juce_StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/system/juce_StandardHeader.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/system/juce_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/system/juce_SystemStats.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/system/juce_SystemStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/system/juce_SystemStats.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/system/juce_TargetPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/system/juce_TargetPlatform.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_Base64.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_Base64.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_ASCII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_ASCII.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF16.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF32.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF8.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_Identifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_Identifier.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_Identifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_Identifier.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_NewLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_NewLine.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_String.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_String.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_StringArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_StringArray.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_StringArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_StringArray.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_StringPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_StringPool.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_StringPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_StringPool.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_StringRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_StringRef.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_TextDiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_TextDiff.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_TextDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/text/juce_TextDiff.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_CriticalSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_CriticalSection.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_DynamicLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_DynamicLibrary.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_HighResolutionTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_HighResolutionTimer.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_InterProcessLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_InterProcessLock.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_Process.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ScopedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ScopedLock.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ScopedReadLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ScopedReadLock.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ScopedWriteLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ScopedWriteLock.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_SpinLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_SpinLock.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_Thread.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_Thread.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ThreadLocalValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ThreadLocalValue.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/time/juce_Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/time/juce_Time.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/time/juce_Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/time/juce_Time.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/README -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/adler32.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/compress.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/crc32.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/crc32.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/deflate.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/deflate.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/infback.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/inffast.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/inffast.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/inffixed.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/inflate.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/inflate.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/trees.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/trees.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/uncompr.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/zconf.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/zconf.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/zconf.in.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/zlib.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/zutil.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_core/zip/zlib/zutil.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_data_structures/values/juce_Value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_data_structures/values/juce_Value.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_data_structures/values/juce_Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_data_structures/values/juce_Value.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_data_structures/values/juce_ValueTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_data_structures/values/juce_ValueTree.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/broadcasters/juce_AsyncUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/broadcasters/juce_AsyncUpdater.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/juce_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/juce_events.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/juce_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/juce_events.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/juce_events.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_CallbackMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_CallbackMessage.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_DeletedAtShutdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_DeletedAtShutdown.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_Initialisation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_Initialisation.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_Message.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_NotificationType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/messages/juce_NotificationType.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/native/juce_android_Messaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/native/juce_android_Messaging.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/native/juce_ios_MessageManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/native/juce_ios_MessageManager.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/native/juce_linux_EventLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/native/juce_linux_EventLoop.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/native/juce_linux_Messaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/native/juce_linux_Messaging.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/native/juce_mac_MessageManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/native/juce_mac_MessageManager.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/native/juce_osx_MessageQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/native/juce_osx_MessageQueue.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/native/juce_win32_Messaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/native/juce_win32_Messaging.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/native/juce_win32_WinRTWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/native/juce_win32_WinRTWrapper.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/timers/juce_Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/timers/juce_Timer.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_events/timers/juce_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_events/timers/juce_Timer.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/colour/juce_ColourGradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/colour/juce_ColourGradient.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/colour/juce_ColourGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/colour/juce_ColourGradient.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/colour/juce_PixelFormats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/colour/juce_PixelFormats.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/contexts/juce_GraphicsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/contexts/juce_GraphicsContext.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/effects/juce_DropShadowEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/effects/juce_DropShadowEffect.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_AttributedString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_AttributedString.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_AttributedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_AttributedString.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_CustomTypeface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_CustomTypeface.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_CustomTypeface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_CustomTypeface.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_GlyphArrangement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_GlyphArrangement.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_GlyphArrangement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_GlyphArrangement.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_AffineTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_AffineTransform.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_BorderSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_BorderSize.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_Line.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_Parallelogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_Parallelogram.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_PathIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_PathIterator.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_PathIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_PathIterator.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_PathStrokeType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_PathStrokeType.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_Point.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_Rectangle.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_RectangleList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/geometry/juce_RectangleList.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/README -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/cderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/cderror.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcapimin.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcapistd.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jccoefct.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jccolor.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcdctmgr.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jchuff.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jchuff.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcinit.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcmainct.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcmarker.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdct.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/LICENSE -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.c -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/images/juce_Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/images/juce_Image.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/images/juce_Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/images/juce_Image.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/juce_graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/juce_graphics.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/juce_graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/juce_graphics.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/juce_graphics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/juce_graphics.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/native/juce_linux_Fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/native/juce_linux_Fonts.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/native/juce_mac_Fonts.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/native/juce_mac_Fonts.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_graphics/native/juce_win32_Fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_graphics/native/juce_win32_Fonts.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ArrowButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ArrowButton.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ImageButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ImageButton.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ShapeButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ShapeButton.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_TextButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_TextButton.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Desktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Desktop.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Desktop.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Displays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Displays.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Displays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Displays.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/drawables/juce_Drawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/drawables/juce_Drawable.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyPress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyPress.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyPress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyPress.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexBox.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexBox.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexItem.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Grid.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Grid.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_GridItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_GridItem.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_GridItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_GridItem.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_SidePanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_SidePanel.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_SidePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_SidePanel.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarModel.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/misc/juce_DropShadower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/misc/juce_DropShadower.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/misc/juce_DropShadower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/misc/juce_DropShadower.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseCursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseCursor.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseCursor.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseListener.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_TooltipClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_TooltipClient.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ProgressBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ProgressBar.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TextEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TextEditor.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/windows/juce_AlertWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/windows/juce_AlertWindow.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/windows/juce_CallOutBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_basics/windows/juce_CallOutBox.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.mm -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_extra/misc/juce_AppleRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_extra/misc/juce_AppleRemote.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_extra/misc/juce_ColourSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_extra/misc/juce_ColourSelector.h -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.cpp -------------------------------------------------------------------------------- /src/tunefish4/JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.h -------------------------------------------------------------------------------- /src/tunefish4/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /src/tunefish4/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/PluginEditor.h -------------------------------------------------------------------------------- /src/tunefish4/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /src/tunefish4/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/PluginProcessor.h -------------------------------------------------------------------------------- /src/tunefish4/Source/factorypatches.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/factorypatches.hpp -------------------------------------------------------------------------------- /src/tunefish4/Source/runtime/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/runtime/array.cpp -------------------------------------------------------------------------------- /src/tunefish4/Source/runtime/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/runtime/array.hpp -------------------------------------------------------------------------------- /src/tunefish4/Source/runtime/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/runtime/random.cpp -------------------------------------------------------------------------------- /src/tunefish4/Source/runtime/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/runtime/random.hpp -------------------------------------------------------------------------------- /src/tunefish4/Source/runtime/runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/runtime/runtime.cpp -------------------------------------------------------------------------------- /src/tunefish4/Source/runtime/runtime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/runtime/runtime.hpp -------------------------------------------------------------------------------- /src/tunefish4/Source/runtime/simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/runtime/simd.cpp -------------------------------------------------------------------------------- /src/tunefish4/Source/runtime/simd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/runtime/simd.hpp -------------------------------------------------------------------------------- /src/tunefish4/Source/runtime/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/runtime/system.hpp -------------------------------------------------------------------------------- /src/tunefish4/Source/runtime/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/runtime/types.hpp -------------------------------------------------------------------------------- /src/tunefish4/Source/synth/tf4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/synth/tf4.cpp -------------------------------------------------------------------------------- /src/tunefish4/Source/synth/tf4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/synth/tf4.hpp -------------------------------------------------------------------------------- /src/tunefish4/Source/synth/tf4fx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/synth/tf4fx.cpp -------------------------------------------------------------------------------- /src/tunefish4/Source/synth/tf4fx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/synth/tf4fx.hpp -------------------------------------------------------------------------------- /src/tunefish4/Source/synth/tfrecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/synth/tfrecorder.cpp -------------------------------------------------------------------------------- /src/tunefish4/Source/synth/tfrecorder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/synth/tfrecorder.hpp -------------------------------------------------------------------------------- /src/tunefish4/Source/tflookandfeel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/tflookandfeel.cpp -------------------------------------------------------------------------------- /src/tunefish4/Source/tflookandfeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/tflookandfeel.h -------------------------------------------------------------------------------- /src/tunefish4/Source/tfsynthprogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/tfsynthprogram.cpp -------------------------------------------------------------------------------- /src/tunefish4/Source/tfsynthprogram.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Source/tfsynthprogram.hpp -------------------------------------------------------------------------------- /src/tunefish4/Tunefish4.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4/Tunefish4.jucer -------------------------------------------------------------------------------- /src/tunefish4player/datastream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4player/datastream.cpp -------------------------------------------------------------------------------- /src/tunefish4player/datastream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4player/datastream.hpp -------------------------------------------------------------------------------- /src/tunefish4player/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4player/main.cpp -------------------------------------------------------------------------------- /src/tunefish4player/tf4dx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4player/tf4dx.cpp -------------------------------------------------------------------------------- /src/tunefish4player/tf4dx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4player/tf4dx.hpp -------------------------------------------------------------------------------- /src/tunefish4player/tf4player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4player/tf4player.cpp -------------------------------------------------------------------------------- /src/tunefish4player/tf4player.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4player/tf4player.hpp -------------------------------------------------------------------------------- /src/tunefish4player/tfplayer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4player/tfplayer.sln -------------------------------------------------------------------------------- /src/tunefish4player/tfplayer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4player/tfplayer.vcxproj -------------------------------------------------------------------------------- /src/tunefish4player/tfplayer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4player/tfplayer.vcxproj.filters -------------------------------------------------------------------------------- /src/tunefish4player/threading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4player/threading.cpp -------------------------------------------------------------------------------- /src/tunefish4player/threading.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paynebc/tunefish/HEAD/src/tunefish4player/threading.hpp --------------------------------------------------------------------------------