├── Argotlunar.jucer ├── Builds ├── Android │ ├── AndroidManifest.xml │ ├── build.xml │ ├── jni │ │ ├── Android.mk │ │ └── Application.mk │ ├── local.properties │ ├── project.properties │ ├── res │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── michaelourednik │ │ └── argotlunar │ │ └── Argotlunar.java ├── Linux │ └── Makefile ├── MacOSX │ ├── Argotlunar.xcodeproj │ │ └── project.pbxproj │ ├── Info.plist │ └── RecentFilesMenuTemplate.nib ├── VisualStudio2005 │ ├── Argotlunar.sln │ ├── Argotlunar.vcproj │ └── resources.rc ├── VisualStudio2008 │ ├── Argotlunar.sln │ ├── Argotlunar.vcproj │ └── resources.rc ├── VisualStudio2010 │ ├── Argotlunar.sln │ ├── Argotlunar.vcxproj │ ├── Argotlunar.vcxproj.filters │ └── resources.rc └── iOS │ ├── Argotlunar.xcodeproj │ └── project.pbxproj │ └── Info.plist ├── JuceLibraryCode ├── AppConfig.h ├── JuceHeader.h ├── ReadMe.txt └── modules │ ├── juce_audio_basics │ ├── buffers │ │ ├── juce_AudioDataConverters.cpp │ │ ├── juce_AudioDataConverters.h │ │ ├── juce_AudioSampleBuffer.cpp │ │ ├── juce_AudioSampleBuffer.h │ │ ├── juce_FloatVectorOperations.cpp │ │ └── juce_FloatVectorOperations.h │ ├── effects │ │ ├── juce_Decibels.h │ │ ├── juce_IIRFilter.cpp │ │ ├── juce_IIRFilter.h │ │ ├── juce_LagrangeInterpolator.cpp │ │ ├── juce_LagrangeInterpolator.h │ │ └── juce_Reverb.h │ ├── juce_audio_basics.cpp │ ├── juce_audio_basics.h │ ├── juce_audio_basics.mm │ ├── juce_module_info │ ├── 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 │ ├── sources │ │ ├── juce_AudioSource.h │ │ ├── juce_BufferingAudioSource.cpp │ │ ├── juce_BufferingAudioSource.h │ │ ├── juce_ChannelRemappingAudioSource.cpp │ │ ├── juce_ChannelRemappingAudioSource.h │ │ ├── juce_IIRFilterAudioSource.cpp │ │ ├── juce_IIRFilterAudioSource.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 │ ├── juce_audio_devices │ ├── audio_cd │ │ ├── juce_AudioCDBurner.h │ │ ├── juce_AudioCDReader.cpp │ │ └── juce_AudioCDReader.h │ ├── 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 │ ├── juce_module_info │ ├── midi_io │ │ ├── juce_MidiInput.h │ │ ├── juce_MidiMessageCollector.cpp │ │ ├── juce_MidiMessageCollector.h │ │ ├── juce_MidiOutput.cpp │ │ └── juce_MidiOutput.h │ ├── native │ │ ├── juce_MidiDataConcatenator.h │ │ ├── juce_android_Audio.cpp │ │ ├── juce_android_Midi.cpp │ │ ├── juce_android_OpenSL.cpp │ │ ├── juce_ios_Audio.cpp │ │ ├── juce_linux_ALSA.cpp │ │ ├── juce_linux_AudioCDReader.cpp │ │ ├── juce_linux_JackAudio.cpp │ │ ├── juce_linux_Midi.cpp │ │ ├── juce_mac_AudioCDBurner.mm │ │ ├── juce_mac_AudioCDReader.mm │ │ ├── juce_mac_CoreAudio.cpp │ │ ├── juce_mac_CoreMidi.cpp │ │ ├── juce_win32_ASIO.cpp │ │ ├── juce_win32_AudioCDBurner.cpp │ │ ├── juce_win32_AudioCDReader.cpp │ │ ├── juce_win32_DirectSound.cpp │ │ ├── juce_win32_Midi.cpp │ │ └── juce_win32_WASAPI.cpp │ └── 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 │ │ │ ├── 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_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 │ │ ├── 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_QuickTimeAudioFormat.cpp │ │ ├── juce_QuickTimeAudioFormat.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 │ │ │ ├── framing.c │ │ │ ├── libvorbis-1.3.2 │ │ │ ├── AUTHORS │ │ │ ├── CHANGES │ │ │ ├── COPYING │ │ │ ├── README │ │ │ └── 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.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 │ ├── juce_module_info │ └── sampler │ │ ├── juce_Sampler.cpp │ │ └── juce_Sampler.h │ ├── juce_audio_plugin_client │ ├── AAX │ │ ├── juce_AAX_Wrapper.cpp │ │ └── juce_AAX_Wrapper.mm │ ├── AU │ │ ├── juce_AU_Resources.r │ │ └── juce_AU_Wrapper.mm │ ├── RTAS │ │ ├── juce_RTAS_DigiCode1.cpp │ │ ├── juce_RTAS_DigiCode2.cpp │ │ ├── juce_RTAS_DigiCode3.cpp │ │ ├── juce_RTAS_DigiCode_Header.h │ │ ├── juce_RTAS_MacResources.r │ │ ├── juce_RTAS_MacUtilities.mm │ │ ├── juce_RTAS_WinExports.def │ │ ├── juce_RTAS_WinResources.rsr │ │ ├── juce_RTAS_WinUtilities.cpp │ │ └── juce_RTAS_Wrapper.cpp │ ├── Standalone │ │ └── juce_StandaloneFilterWindow.h │ ├── VST │ │ ├── juce_VST_Wrapper.cpp │ │ └── juce_VST_Wrapper.mm │ ├── juce_audio_plugin_client.h │ ├── juce_module_info │ └── utility │ │ ├── juce_CarbonVisibility.h │ │ ├── juce_CheckSettingMacros.h │ │ ├── juce_FakeMouseMoveGenerator.h │ │ ├── juce_IncludeModuleHeaders.h │ │ ├── juce_IncludeSystemHeaders.h │ │ ├── juce_PluginHostType.h │ │ └── juce_PluginUtilities.cpp │ ├── juce_audio_processors │ ├── format │ │ ├── juce_AudioPluginFormat.cpp │ │ ├── juce_AudioPluginFormat.h │ │ ├── juce_AudioPluginFormatManager.cpp │ │ └── juce_AudioPluginFormatManager.h │ ├── format_types │ │ ├── juce_AudioUnitPluginFormat.h │ │ ├── juce_AudioUnitPluginFormat.mm │ │ ├── juce_LADSPAPluginFormat.cpp │ │ ├── juce_LADSPAPluginFormat.h │ │ ├── juce_VSTMidiEventList.h │ │ ├── juce_VSTPluginFormat.cpp │ │ └── juce_VSTPluginFormat.h │ ├── juce_audio_processors.cpp │ ├── juce_audio_processors.h │ ├── juce_audio_processors.mm │ ├── juce_module_info │ ├── processors │ │ ├── juce_AudioPlayHead.h │ │ ├── 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_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 │ ├── juce_core │ ├── containers │ │ ├── juce_AbstractFifo.cpp │ │ ├── juce_AbstractFifo.h │ │ ├── juce_Array.h │ │ ├── juce_ArrayAllocationBase.h │ │ ├── juce_DynamicObject.cpp │ │ ├── juce_DynamicObject.h │ │ ├── juce_ElementComparator.h │ │ ├── juce_HashMap.h │ │ ├── juce_LinkedListPointer.h │ │ ├── juce_NamedValueSet.cpp │ │ ├── juce_NamedValueSet.h │ │ ├── juce_OwnedArray.h │ │ ├── juce_PropertySet.cpp │ │ ├── juce_PropertySet.h │ │ ├── juce_ReferenceCountedArray.h │ │ ├── juce_ScopedValueSetter.h │ │ ├── juce_SortedSet.h │ │ ├── juce_SparseSet.h │ │ ├── juce_Variant.cpp │ │ └── juce_Variant.h │ ├── files │ │ ├── juce_DirectoryIterator.cpp │ │ ├── juce_DirectoryIterator.h │ │ ├── juce_File.cpp │ │ ├── juce_File.h │ │ ├── juce_FileInputStream.cpp │ │ ├── juce_FileInputStream.h │ │ ├── juce_FileOutputStream.cpp │ │ ├── juce_FileOutputStream.h │ │ ├── juce_FileSearchPath.cpp │ │ ├── juce_FileSearchPath.h │ │ ├── juce_MemoryMappedFile.h │ │ ├── juce_TemporaryFile.cpp │ │ └── juce_TemporaryFile.h │ ├── json │ │ ├── juce_JSON.cpp │ │ └── juce_JSON.h │ ├── juce_core.cpp │ ├── juce_core.h │ ├── juce_core.mm │ ├── juce_module_info │ ├── 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_Random.cpp │ │ ├── juce_Random.h │ │ └── juce_Range.h │ ├── memory │ │ ├── juce_Atomic.h │ │ ├── juce_ByteOrder.h │ │ ├── juce_HeapBlock.h │ │ ├── juce_LeakedObjectDetector.h │ │ ├── juce_Memory.h │ │ ├── juce_MemoryBlock.cpp │ │ ├── juce_MemoryBlock.h │ │ ├── juce_OptionalScopedPointer.h │ │ ├── juce_ReferenceCountedObject.h │ │ ├── juce_ScopedPointer.h │ │ ├── juce_Singleton.h │ │ └── juce_WeakReference.h │ ├── misc │ │ ├── juce_Result.cpp │ │ ├── juce_Result.h │ │ ├── juce_Uuid.cpp │ │ ├── juce_Uuid.h │ │ └── juce_WindowsRegistry.h │ ├── native │ │ ├── java │ │ │ └── JuceAppActivity.java │ │ ├── juce_BasicNativeHeaders.h │ │ ├── juce_android_Files.cpp │ │ ├── juce_android_JNIHelpers.h │ │ ├── juce_android_Misc.cpp │ │ ├── juce_android_Network.cpp │ │ ├── juce_android_SystemStats.cpp │ │ ├── juce_android_Threads.cpp │ │ ├── juce_linux_Files.cpp │ │ ├── juce_linux_Network.cpp │ │ ├── juce_linux_SystemStats.cpp │ │ ├── juce_linux_Threads.cpp │ │ ├── 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_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 │ ├── 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 │ ├── system │ │ ├── juce_PlatformDefs.h │ │ ├── juce_StandardHeader.h │ │ ├── juce_SystemStats.cpp │ │ ├── juce_SystemStats.h │ │ └── juce_TargetPlatform.h │ ├── text │ │ ├── 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_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.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 │ ├── 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 │ ├── juce_module_info │ ├── undomanager │ │ ├── juce_UndoManager.cpp │ │ ├── juce_UndoManager.h │ │ └── juce_UndoableAction.h │ └── values │ │ ├── juce_Value.cpp │ │ ├── juce_Value.h │ │ ├── juce_ValueTree.cpp │ │ └── juce_ValueTree.h │ ├── juce_events │ ├── broadcasters │ │ ├── juce_ActionBroadcaster.cpp │ │ ├── juce_ActionBroadcaster.h │ │ ├── juce_ActionListener.h │ │ ├── juce_AsyncUpdater.cpp │ │ ├── juce_AsyncUpdater.h │ │ ├── juce_ChangeBroadcaster.cpp │ │ ├── juce_ChangeBroadcaster.h │ │ ├── juce_ChangeListener.h │ │ └── juce_ListenerList.h │ ├── interprocess │ │ ├── juce_InterprocessConnection.cpp │ │ ├── juce_InterprocessConnection.h │ │ ├── juce_InterprocessConnectionServer.cpp │ │ └── juce_InterprocessConnectionServer.h │ ├── juce_events.cpp │ ├── juce_events.h │ ├── juce_events.mm │ ├── juce_module_info │ ├── messages │ │ ├── juce_ApplicationBase.cpp │ │ ├── juce_ApplicationBase.h │ │ ├── juce_CallbackMessage.h │ │ ├── juce_DeletedAtShutdown.cpp │ │ ├── juce_DeletedAtShutdown.h │ │ ├── juce_Message.h │ │ ├── juce_MessageListener.cpp │ │ ├── juce_MessageListener.h │ │ ├── juce_MessageManager.cpp │ │ ├── juce_MessageManager.h │ │ └── juce_NotificationType.h │ ├── native │ │ ├── juce_ScopedXLock.h │ │ ├── juce_android_Messaging.cpp │ │ ├── juce_ios_MessageManager.mm │ │ ├── juce_linux_Messaging.cpp │ │ ├── juce_mac_MessageManager.mm │ │ ├── juce_osx_MessageQueue.h │ │ ├── juce_win32_HiddenMessageWindow.h │ │ └── juce_win32_Messaging.cpp │ └── 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_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.cpp │ │ └── 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 │ │ │ ├── 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 │ ├── juce_module_info │ ├── native │ │ ├── juce_RenderingHelpers.h │ │ ├── juce_android_Fonts.cpp │ │ ├── juce_android_GraphicsContext.cpp │ │ ├── juce_freetype_Fonts.cpp │ │ ├── juce_linux_Fonts.cpp │ │ ├── juce_mac_CoreGraphicsContext.h │ │ ├── juce_mac_CoreGraphicsContext.mm │ │ ├── juce_mac_CoreGraphicsHelpers.h │ │ ├── juce_mac_Fonts.mm │ │ ├── juce_win32_Direct2DGraphicsContext.cpp │ │ ├── juce_win32_DirectWriteTypeLayout.cpp │ │ ├── juce_win32_DirectWriteTypeface.cpp │ │ └── juce_win32_Fonts.cpp │ └── placement │ │ ├── juce_Justification.cpp │ │ ├── juce_Justification.h │ │ ├── juce_RectanglePlacement.cpp │ │ └── juce_RectanglePlacement.h │ ├── juce_gui_basics │ ├── application │ │ ├── juce_Application.cpp │ │ ├── juce_Application.h │ │ └── juce_Initialisation.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_Desktop.cpp │ │ ├── juce_Desktop.h │ │ ├── juce_ModalComponentManager.cpp │ │ └── juce_ModalComponentManager.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_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_FileFilter.cpp │ │ ├── juce_FileFilter.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_WildcardFileFilter.cpp │ │ └── juce_WildcardFileFilter.h │ ├── juce_gui_basics.cpp │ ├── juce_gui_basics.h │ ├── juce_gui_basics.mm │ ├── juce_module_info │ ├── 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_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_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_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 │ ├── menus │ │ ├── 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 │ ├── 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_MouseInputSource.cpp │ │ ├── juce_MouseInputSource.h │ │ ├── juce_MouseListener.cpp │ │ ├── juce_MouseListener.h │ │ ├── juce_SelectedItemSet.h │ │ ├── juce_TextDragAndDropTarget.h │ │ └── juce_TooltipClient.h │ ├── native │ │ ├── juce_MultiTouchMapper.h │ │ ├── juce_android_FileChooser.cpp │ │ ├── juce_android_Windowing.cpp │ │ ├── juce_ios_UIViewComponentPeer.mm │ │ ├── juce_ios_Windowing.mm │ │ ├── juce_linux_Clipboard.cpp │ │ ├── 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 │ ├── 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_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 │ ├── documents │ ├── juce_FileBasedDocument.cpp │ └── juce_FileBasedDocument.h │ ├── embedding │ ├── juce_ActiveXControlComponent.h │ ├── juce_NSViewComponent.h │ └── juce_UIViewComponent.h │ ├── juce_gui_extra.cpp │ ├── juce_gui_extra.h │ ├── juce_gui_extra.mm │ ├── juce_module_info │ ├── lookandfeel │ ├── juce_OldSchoolLookAndFeel.cpp │ └── juce_OldSchoolLookAndFeel.h │ ├── misc │ ├── juce_AppleRemote.h │ ├── juce_BubbleMessageComponent.cpp │ ├── juce_BubbleMessageComponent.h │ ├── juce_ColourSelector.cpp │ ├── juce_ColourSelector.h │ ├── juce_KeyMappingEditorComponent.cpp │ ├── juce_KeyMappingEditorComponent.h │ ├── juce_PreferencesPanel.cpp │ ├── juce_PreferencesPanel.h │ ├── juce_RecentlyOpenedFilesList.cpp │ ├── juce_RecentlyOpenedFilesList.h │ ├── juce_SplashScreen.cpp │ ├── juce_SplashScreen.h │ ├── juce_SystemTrayIconComponent.cpp │ ├── juce_SystemTrayIconComponent.h │ └── juce_WebBrowserComponent.h │ └── native │ ├── juce_android_WebBrowserComponent.cpp │ ├── juce_ios_UIViewComponent.mm │ ├── juce_linux_SystemTrayIcon.cpp │ ├── juce_linux_WebBrowserComponent.cpp │ ├── juce_mac_AppleRemote.mm │ ├── juce_mac_CarbonViewWrapperComponent.h │ ├── juce_mac_NSViewComponent.mm │ ├── juce_mac_WebBrowserComponent.mm │ ├── juce_win32_ActiveXComponent.cpp │ ├── juce_win32_SystemTrayIcon.cpp │ └── juce_win32_WebBrowserComponent.cpp ├── LICENSE ├── README.md ├── Source ├── CombFilter.cpp ├── CombFilter.h ├── Debug.h ├── DelayLine.cpp ├── DelayLine.h ├── Envelope.cpp ├── Envelope.h ├── Filter.cpp ├── Filter.h ├── Grain.cpp ├── Grain.h ├── GrainParameters.h ├── GrainParametersGenerator.cpp ├── GrainParametersGenerator.h ├── Granulator.cpp ├── Granulator.h ├── Misc.h ├── Parameters.cpp ├── Parameters.h ├── ParametersEnum.h ├── PitchQuantizer.cpp ├── PitchQuantizer.h ├── Plugin.cpp ├── Plugin.h ├── PluginEditor.cpp ├── PluginEditor.h ├── Program.cpp ├── Program.h ├── ProgramBank.cpp ├── ProgramBank.h ├── TimeQuantizer.cpp └── TimeQuantizer.h └── argotlunar.png /Argotlunar.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Argotlunar.jucer -------------------------------------------------------------------------------- /Builds/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Builds/Android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/Android/build.xml -------------------------------------------------------------------------------- /Builds/Android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/Android/jni/Android.mk -------------------------------------------------------------------------------- /Builds/Android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/Android/jni/Application.mk -------------------------------------------------------------------------------- /Builds/Android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/Android/local.properties -------------------------------------------------------------------------------- /Builds/Android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/Android/project.properties -------------------------------------------------------------------------------- /Builds/Android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/Android/res/values/strings.xml -------------------------------------------------------------------------------- /Builds/Android/src/com/michaelourednik/argotlunar/Argotlunar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/Android/src/com/michaelourednik/argotlunar/Argotlunar.java -------------------------------------------------------------------------------- /Builds/Linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/Linux/Makefile -------------------------------------------------------------------------------- /Builds/MacOSX/Argotlunar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/MacOSX/Argotlunar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Builds/MacOSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/MacOSX/Info.plist -------------------------------------------------------------------------------- /Builds/MacOSX/RecentFilesMenuTemplate.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/MacOSX/RecentFilesMenuTemplate.nib -------------------------------------------------------------------------------- /Builds/VisualStudio2005/Argotlunar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/VisualStudio2005/Argotlunar.sln -------------------------------------------------------------------------------- /Builds/VisualStudio2005/Argotlunar.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/VisualStudio2005/Argotlunar.vcproj -------------------------------------------------------------------------------- /Builds/VisualStudio2005/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/VisualStudio2005/resources.rc -------------------------------------------------------------------------------- /Builds/VisualStudio2008/Argotlunar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/VisualStudio2008/Argotlunar.sln -------------------------------------------------------------------------------- /Builds/VisualStudio2008/Argotlunar.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/VisualStudio2008/Argotlunar.vcproj -------------------------------------------------------------------------------- /Builds/VisualStudio2008/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/VisualStudio2008/resources.rc -------------------------------------------------------------------------------- /Builds/VisualStudio2010/Argotlunar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/VisualStudio2010/Argotlunar.sln -------------------------------------------------------------------------------- /Builds/VisualStudio2010/Argotlunar.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/VisualStudio2010/Argotlunar.vcxproj -------------------------------------------------------------------------------- /Builds/VisualStudio2010/Argotlunar.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/VisualStudio2010/Argotlunar.vcxproj.filters -------------------------------------------------------------------------------- /Builds/VisualStudio2010/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/VisualStudio2010/resources.rc -------------------------------------------------------------------------------- /Builds/iOS/Argotlunar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/iOS/Argotlunar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Builds/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Builds/iOS/Info.plist -------------------------------------------------------------------------------- /JuceLibraryCode/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/AppConfig.h -------------------------------------------------------------------------------- /JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/effects/juce_Decibels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/effects/juce_Decibels.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/effects/juce_IIRFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/effects/juce_IIRFilter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/effects/juce_IIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/effects/juce_IIRFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/effects/juce_Reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/effects/juce_Reverb.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiKeyboardState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiKeyboardState.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiKeyboardState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiKeyboardState.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessageSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessageSequence.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/sources/juce_AudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/sources/juce_AudioSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/sources/juce_MixerAudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/sources/juce_MixerAudioSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/synthesisers/juce_Synthesiser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_basics/synthesisers/juce_Synthesiser.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/audio_cd/juce_AudioCDBurner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/audio_cd/juce_AudioCDBurner.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/audio_cd/juce_AudioCDReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/audio_cd/juce_AudioCDReader.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioIODevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioIODevice.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiInput.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiOutput.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiOutput.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_android_Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_android_Audio.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_android_Midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_android_Midi.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_android_OpenSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_android_OpenSL.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_ios_Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_ios_Audio.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_ALSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_ALSA.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_Midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_Midi.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_mac_CoreAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_mac_CoreAudio.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_mac_CoreMidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_mac_CoreMidi.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_win32_ASIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_win32_ASIO.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_win32_Midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_win32_Midi.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_win32_WASAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_win32_WASAPI.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/Flac Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/Flac Licence.txt -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/all.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/alloc.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/assert.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/callback.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/export.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/format.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/bitmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/bitmath.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/crc.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/fixed.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/float.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/format.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/lpc_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/lpc_flac.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/md5.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/memory.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/metadata.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/ordinals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/ordinals.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/stream_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/stream_decoder.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/stream_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/stream_encoder.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/juce_AiffAudioFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/juce_AiffAudioFormat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/juce_CoreAudioFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/juce_CoreAudioFormat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/juce_FlacAudioFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/juce_FlacAudioFormat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/juce_MP3AudioFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/juce_MP3AudioFormat.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/juce_MP3AudioFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/juce_MP3AudioFormat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/juce_WavAudioFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/juce_WavAudioFormat.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/juce_WavAudioFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/juce_WavAudioFormat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/bitwise.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/codec.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/framing.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/ogg.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/os_types.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/vorbisenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/vorbisenc.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/vorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/vorbisfile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormat.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_plugin_client/AAX/juce_AAX_Wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_plugin_client/AAX/juce_AAX_Wrapper.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_plugin_client/AAX/juce_AAX_Wrapper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_plugin_client/AAX/juce_AAX_Wrapper.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_plugin_client/AU/juce_AU_Resources.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_plugin_client/AU/juce_AU_Resources.r -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_plugin_client/AU/juce_AU_Wrapper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_plugin_client/AU/juce_AU_Wrapper.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_plugin_client/RTAS/juce_RTAS_WinExports.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | NewPlugIn @1 3 | _PI_GetRoutineDescriptor @2 4 | -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_plugin_client/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_plugin_client/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_processors/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_audio_processors/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Array.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ArrayAllocationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ArrayAllocationBase.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ElementComparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ElementComparator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_HashMap.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_LinkedListPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_LinkedListPointer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ReferenceCountedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ReferenceCountedArray.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ScopedValueSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ScopedValueSetter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_SortedSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_SortedSet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Variant.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Variant.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/files/juce_File.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/files/juce_File.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_MemoryMappedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/files/juce_MemoryMappedFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/json/juce_JSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/json/juce_JSON.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/json/juce_JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/json/juce_JSON.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/juce_core.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/juce_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/juce_core.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/juce_core.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_Logger.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_Logger.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Expression.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Expression.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_MathsFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_MathsFunctions.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Random.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Random.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Range.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_Atomic.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_ByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_ByteOrder.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_HeapBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_HeapBlock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_LeakedObjectDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_LeakedObjectDetector.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_Memory.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_OptionalScopedPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_OptionalScopedPointer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_ReferenceCountedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_ReferenceCountedObject.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_ScopedPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_ScopedPointer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_Singleton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_WeakReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_WeakReference.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Result.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Result.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Uuid.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Uuid.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_WindowsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_WindowsRegistry.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/java/JuceAppActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/java/JuceAppActivity.java -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_BasicNativeHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_BasicNativeHeaders.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_android_Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_android_Files.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_android_JNIHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_android_JNIHelpers.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_android_Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_android_Misc.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_android_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_android_Network.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_android_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_android_SystemStats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_android_Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_android_Threads.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_linux_Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_linux_Files.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_linux_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_linux_Network.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_linux_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_linux_SystemStats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_linux_Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_linux_Threads.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_mac_Files.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_mac_Files.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_mac_Network.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_mac_Network.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_mac_Strings.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_mac_Strings.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_mac_SystemStats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_mac_SystemStats.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_mac_Threads.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_mac_Threads.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_osx_ObjCHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_osx_ObjCHelpers.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_posix_NamedPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_posix_NamedPipe.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_posix_SharedCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_posix_SharedCode.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_win32_ComSmartPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_win32_ComSmartPtr.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_win32_Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_win32_Files.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_win32_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_win32_Network.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_win32_Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_win32_Registry.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_win32_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_win32_SystemStats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_win32_Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/native/juce_win32_Threads.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/network/juce_IPAddress.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/network/juce_IPAddress.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_MACAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/network/juce_MACAddress.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_MACAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/network/juce_MACAddress.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/network/juce_Socket.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/network/juce_Socket.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_URL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/network/juce_URL.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_URL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/network/juce_URL.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_BufferedInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_BufferedInputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_BufferedInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_BufferedInputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_InputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_InputSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_InputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_InputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_InputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_InputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_PlatformDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/system/juce_PlatformDefs.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/system/juce_StandardHeader.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/system/juce_SystemStats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_SystemStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/system/juce_SystemStats.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_TargetPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/system/juce_TargetPlatform.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_ASCII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_ASCII.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF16.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF32.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF8.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_Identifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_Identifier.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_Identifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_Identifier.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_NewLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_NewLine.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_String.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_String.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringArray.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringArray.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPool.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPool.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_TextDiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_TextDiff.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_TextDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/text/juce_TextDiff.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_CriticalSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_CriticalSection.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_DynamicLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_DynamicLibrary.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_HighResolutionTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_HighResolutionTimer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_HighResolutionTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_HighResolutionTimer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_InterProcessLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_InterProcessLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_Process.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ScopedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ScopedLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ScopedReadLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ScopedReadLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ScopedWriteLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ScopedWriteLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_SpinLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_SpinLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_Thread.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_Thread.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ThreadLocalValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ThreadLocalValue.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/time/juce_Time.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/time/juce_Time.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/juce_GZIPCompressorOutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/juce_GZIPCompressorOutputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/juce_GZIPCompressorOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/juce_GZIPCompressorOutputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/juce_GZIPDecompressorInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/juce_GZIPDecompressorInputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/README -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/adler32.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/compress.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/crc32.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/crc32.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/deflate.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/deflate.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/infback.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inffast.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inffast.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inffixed.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inflate.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inflate.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/trees.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/trees.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/uncompr.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zconf.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zconf.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zconf.in.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zlib.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zutil.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zutil.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/juce_data_structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/juce_data_structures.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_data_structures/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/values/juce_Value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_data_structures/values/juce_Value.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/values/juce_Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_data_structures/values/juce_Value.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/values/juce_ValueTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_data_structures/values/juce_ValueTree.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/values/juce_ValueTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_data_structures/values/juce_ValueTree.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/broadcasters/juce_ActionBroadcaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/broadcasters/juce_ActionBroadcaster.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/broadcasters/juce_ActionListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/broadcasters/juce_ActionListener.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/broadcasters/juce_AsyncUpdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/broadcasters/juce_AsyncUpdater.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/broadcasters/juce_AsyncUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/broadcasters/juce_AsyncUpdater.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/broadcasters/juce_ChangeBroadcaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/broadcasters/juce_ChangeBroadcaster.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/broadcasters/juce_ChangeListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/broadcasters/juce_ChangeListener.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/broadcasters/juce_ListenerList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/broadcasters/juce_ListenerList.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/juce_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/juce_events.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/juce_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/juce_events.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/juce_events.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_CallbackMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_CallbackMessage.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_DeletedAtShutdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_DeletedAtShutdown.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_DeletedAtShutdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_DeletedAtShutdown.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_Message.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_NotificationType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_NotificationType.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_ScopedXLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/native/juce_ScopedXLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_android_Messaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/native/juce_android_Messaging.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_ios_MessageManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/native/juce_ios_MessageManager.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_linux_Messaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/native/juce_linux_Messaging.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_mac_MessageManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/native/juce_mac_MessageManager.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_osx_MessageQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/native/juce_osx_MessageQueue.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_win32_Messaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/native/juce_win32_Messaging.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_Timer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_Timer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_ColourGradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_ColourGradient.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_ColourGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_ColourGradient.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_PixelFormats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_PixelFormats.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/contexts/juce_GraphicsContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/contexts/juce_GraphicsContext.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/contexts/juce_GraphicsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/contexts/juce_GraphicsContext.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/effects/juce_DropShadowEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/effects/juce_DropShadowEffect.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/effects/juce_DropShadowEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/effects/juce_DropShadowEffect.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/effects/juce_ImageEffectFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/effects/juce_ImageEffectFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_AttributedString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_AttributedString.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_AttributedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_AttributedString.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_CustomTypeface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_CustomTypeface.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_CustomTypeface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_CustomTypeface.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_GlyphArrangement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_GlyphArrangement.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_GlyphArrangement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_GlyphArrangement.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_AffineTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_AffineTransform.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_AffineTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_AffineTransform.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_BorderSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_BorderSize.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Line.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_PathIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_PathIterator.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_PathIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_PathIterator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_PathStrokeType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_PathStrokeType.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_PathStrokeType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_PathStrokeType.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Point.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Rectangle.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_RectangleList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_RectangleList.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_RectangleList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_RectangleList.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/README -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/cderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/cderror.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcapimin.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcapistd.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jccoefct.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jccolor.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcdctmgr.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jchuff.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jchuff.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcinit.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcmainct.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcmarker.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcmaster.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcomapi.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jconfig.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcparam.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcphuff.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcprepct.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcsample.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jctrans.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdapimin.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdapistd.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdatasrc.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdcoefct.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdcolor.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdct.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jddctmgr.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdhuff.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdhuff.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdinput.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmainct.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmarker.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmaster.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmerge.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdphuff.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdpostct.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdsample.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdtrans.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jerror.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jerror.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jfdctflt.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jfdctfst.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jfdctint.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jidctflt.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jidctfst.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jidctint.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jidctred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jidctred.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jinclude.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jmemmgr.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jmemnobs.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jmemsys.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jmorecfg.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jpegint.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jpeglib.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jquant1.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jquant2.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jutils.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jversion.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/transupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/transupp.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/transupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/transupp.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/juce_GIFLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/juce_GIFLoader.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/juce_JPEGLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/juce_JPEGLoader.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/juce_PNGLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/juce_PNGLoader.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/LICENSE -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngconf.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngerror.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngget.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pnginfo.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngmem.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngpread.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngpriv.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngread.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngrio.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngrtran.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngrutil.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngset.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngstruct.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngtrans.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngwio.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngwrite.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngwtran.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngwutil.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_Image.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_Image.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_ImageFileFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_ImageFileFormat.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_ImageFileFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_ImageFileFormat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/juce_graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/juce_graphics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/juce_graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/juce_graphics.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/juce_graphics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/juce_graphics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/native/juce_RenderingHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/native/juce_RenderingHelpers.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/native/juce_android_Fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/native/juce_android_Fonts.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/native/juce_freetype_Fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/native/juce_freetype_Fonts.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/native/juce_linux_Fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/native/juce_linux_Fonts.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/native/juce_mac_Fonts.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/native/juce_mac_Fonts.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/native/juce_win32_Fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/native/juce_win32_Fonts.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/placement/juce_Justification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/placement/juce_Justification.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/placement/juce_Justification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/placement/juce_Justification.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/placement/juce_RectanglePlacement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_graphics/placement/juce_RectanglePlacement.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/application/juce_Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/application/juce_Application.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/application/juce_Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/application/juce_Application.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/application/juce_Initialisation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/application/juce_Initialisation.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ArrowButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ArrowButton.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ArrowButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ArrowButton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_DrawableButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_DrawableButton.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_DrawableButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_DrawableButton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_HyperlinkButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_HyperlinkButton.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_HyperlinkButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_HyperlinkButton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ImageButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ImageButton.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ImageButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ImageButton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ShapeButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ShapeButton.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ShapeButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ShapeButton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_TextButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_TextButton.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_TextButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_TextButton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ToggleButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ToggleButton.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ToggleButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ToggleButton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ToolbarButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ToolbarButton.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ToolbarButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ToolbarButton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/components/juce_Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/components/juce_Component.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/components/juce_Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/components/juce_Component.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/components/juce_Desktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/components/juce_Desktop.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/components/juce_Desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/components/juce_Desktop.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/drawables/juce_Drawable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/drawables/juce_Drawable.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/drawables/juce_Drawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/drawables/juce_Drawable.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableImage.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableImage.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawablePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawablePath.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawablePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawablePath.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableShape.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableShape.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableText.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableText.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/drawables/juce_SVGParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/drawables/juce_SVGParser.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FileChooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FileChooser.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FileFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FileFilter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FileFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FileFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_CaretComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_CaretComponent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyListener.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyListener.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyPress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyPress.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyPress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyPress.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_ModifierKeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_ModifierKeys.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_ModifierKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_ModifierKeys.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_SystemClipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_SystemClipboard.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_TextInputTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_TextInputTarget.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_ComponentAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_ComponentAnimator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_ComponentBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_ComponentBuilder.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_ConcertinaPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_ConcertinaPanel.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_ConcertinaPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_ConcertinaPanel.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_GroupComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_GroupComponent.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_GroupComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_GroupComponent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_TabbedButtonBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_TabbedButtonBar.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_TabbedButtonBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_TabbedButtonBar.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_TabbedComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_TabbedComponent.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_TabbedComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_TabbedComponent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarComponent.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarComponent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarModel.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarModel.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/misc/juce_BubbleComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/misc/juce_BubbleComponent.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/misc/juce_BubbleComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/misc/juce_BubbleComponent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/misc/juce_DropShadower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/misc/juce_DropShadower.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/misc/juce_DropShadower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/misc/juce_DropShadower.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_ComponentDragger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_ComponentDragger.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_ComponentDragger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_ComponentDragger.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_DragAndDropTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_DragAndDropTarget.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_LassoComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_LassoComponent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseCursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseCursor.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseCursor.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseInputSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseInputSource.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseInputSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseListener.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseListener.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_SelectedItemSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_SelectedItemSet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_TooltipClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_TooltipClient.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/native/juce_MultiTouchMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/native/juce_MultiTouchMapper.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/native/juce_ios_Windowing.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/native/juce_ios_Windowing.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/native/juce_linux_Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/native/juce_linux_Clipboard.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/native/juce_linux_Windowing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/native/juce_linux_Windowing.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/native/juce_mac_FileChooser.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/native/juce_mac_FileChooser.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/native/juce_mac_MainMenu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/native/juce_mac_MainMenu.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/native/juce_mac_MouseCursor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/native/juce_mac_MouseCursor.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/native/juce_mac_Windowing.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/native/juce_mac_Windowing.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/native/juce_win32_Windowing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/native/juce_win32_Windowing.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/positioning/juce_MarkerList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/positioning/juce_MarkerList.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/positioning/juce_MarkerList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/positioning/juce_MarkerList.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/properties/juce_PropertyPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/properties/juce_PropertyPanel.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ImageComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ImageComponent.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ImageComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ImageComponent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ProgressBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ProgressBar.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ProgressBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ProgressBar.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TableListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TableListBox.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TableListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TableListBox.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TextEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TextEditor.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TextEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TextEditor.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_AlertWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_AlertWindow.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_AlertWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_AlertWindow.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_CallOutBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_CallOutBox.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_CallOutBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_CallOutBox.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_ComponentPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_ComponentPeer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_ComponentPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_ComponentPeer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_DialogWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_DialogWindow.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_DialogWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_DialogWindow.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_DocumentWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_DocumentWindow.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_DocumentWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_DocumentWindow.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_NativeMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_NativeMessageBox.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_ResizableWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_ResizableWindow.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_TooltipWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_TooltipWindow.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_TooltipWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_TooltipWindow.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_TopLevelWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_TopLevelWindow.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_TopLevelWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_TopLevelWindow.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/code_editor/juce_CodeDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_extra/code_editor/juce_CodeDocument.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/code_editor/juce_CodeTokeniser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_extra/code_editor/juce_CodeTokeniser.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/embedding/juce_NSViewComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_extra/embedding/juce_NSViewComponent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/embedding/juce_UIViewComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_extra/embedding/juce_UIViewComponent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_extra/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_AppleRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_AppleRemote.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_ColourSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_ColourSelector.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_ColourSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_ColourSelector.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_PreferencesPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_PreferencesPanel.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_PreferencesPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_PreferencesPanel.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_WebBrowserComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_WebBrowserComponent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/native/juce_mac_AppleRemote.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/JuceLibraryCode/modules/juce_gui_extra/native/juce_mac_AppleRemote.mm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/README.md -------------------------------------------------------------------------------- /Source/CombFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/CombFilter.cpp -------------------------------------------------------------------------------- /Source/CombFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/CombFilter.h -------------------------------------------------------------------------------- /Source/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/Debug.h -------------------------------------------------------------------------------- /Source/DelayLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/DelayLine.cpp -------------------------------------------------------------------------------- /Source/DelayLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/DelayLine.h -------------------------------------------------------------------------------- /Source/Envelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/Envelope.cpp -------------------------------------------------------------------------------- /Source/Envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/Envelope.h -------------------------------------------------------------------------------- /Source/Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/Filter.cpp -------------------------------------------------------------------------------- /Source/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/Filter.h -------------------------------------------------------------------------------- /Source/Grain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/Grain.cpp -------------------------------------------------------------------------------- /Source/Grain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/Grain.h -------------------------------------------------------------------------------- /Source/GrainParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/GrainParameters.h -------------------------------------------------------------------------------- /Source/GrainParametersGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/GrainParametersGenerator.cpp -------------------------------------------------------------------------------- /Source/GrainParametersGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/GrainParametersGenerator.h -------------------------------------------------------------------------------- /Source/Granulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/Granulator.cpp -------------------------------------------------------------------------------- /Source/Granulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/Granulator.h -------------------------------------------------------------------------------- /Source/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/Misc.h -------------------------------------------------------------------------------- /Source/Parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/Parameters.cpp -------------------------------------------------------------------------------- /Source/Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/Parameters.h -------------------------------------------------------------------------------- /Source/ParametersEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/ParametersEnum.h -------------------------------------------------------------------------------- /Source/PitchQuantizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/PitchQuantizer.cpp -------------------------------------------------------------------------------- /Source/PitchQuantizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/PitchQuantizer.h -------------------------------------------------------------------------------- /Source/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/Plugin.cpp -------------------------------------------------------------------------------- /Source/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/Plugin.h -------------------------------------------------------------------------------- /Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/PluginEditor.h -------------------------------------------------------------------------------- /Source/Program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/Program.cpp -------------------------------------------------------------------------------- /Source/Program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/Program.h -------------------------------------------------------------------------------- /Source/ProgramBank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/ProgramBank.cpp -------------------------------------------------------------------------------- /Source/ProgramBank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/ProgramBank.h -------------------------------------------------------------------------------- /Source/TimeQuantizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/TimeQuantizer.cpp -------------------------------------------------------------------------------- /Source/TimeQuantizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/Source/TimeQuantizer.h -------------------------------------------------------------------------------- /argotlunar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourednik/argotlunar/HEAD/argotlunar.png --------------------------------------------------------------------------------