├── .gitignore ├── Builds ├── Linux │ ├── Makefile │ └── Makefile.static ├── MacOSX │ ├── RecentFilesMenuTemplate.nib │ └── luce.xcodeproj │ │ └── project.pbxproj ├── Makefile ├── VisualStudio2010 │ ├── luce.sln │ ├── luce.vcxproj │ ├── luce.vcxproj.filters │ └── resources.rc └── iOS │ └── luce.xcodeproj │ └── project.pbxproj ├── JuceLibraryCode ├── AppConfig.h ├── JuceHeader.h ├── ReadMe.txt ├── modules │ ├── juce_audio_basics │ │ ├── buffers │ │ │ ├── juce_AudioDataConverters.cpp │ │ │ ├── juce_AudioDataConverters.h │ │ │ ├── juce_AudioSampleBuffer.h │ │ │ ├── juce_FloatVectorOperations.cpp │ │ │ └── juce_FloatVectorOperations.h │ │ ├── effects │ │ │ ├── juce_Decibels.h │ │ │ ├── juce_FFT.cpp │ │ │ ├── juce_FFT.h │ │ │ ├── juce_IIRFilter.cpp │ │ │ ├── juce_IIRFilter.h │ │ │ ├── juce_LagrangeInterpolator.cpp │ │ │ ├── juce_LagrangeInterpolator.h │ │ │ ├── juce_LinearSmoothedValue.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 │ │ │ ├── juce_MidiRPN.cpp │ │ │ └── juce_MidiRPN.h │ │ ├── mpe │ │ │ ├── juce_MPEInstrument.cpp │ │ │ ├── juce_MPEInstrument.h │ │ │ ├── juce_MPEMessages.cpp │ │ │ ├── juce_MPEMessages.h │ │ │ ├── juce_MPENote.cpp │ │ │ ├── juce_MPENote.h │ │ │ ├── juce_MPESynthesiser.cpp │ │ │ ├── juce_MPESynthesiser.h │ │ │ ├── juce_MPESynthesiserBase.cpp │ │ │ ├── juce_MPESynthesiserBase.h │ │ │ ├── juce_MPESynthesiserVoice.cpp │ │ │ ├── juce_MPESynthesiserVoice.h │ │ │ ├── juce_MPEValue.cpp │ │ │ ├── juce_MPEValue.h │ │ │ ├── juce_MPEZone.cpp │ │ │ ├── juce_MPEZone.h │ │ │ ├── juce_MPEZoneLayout.cpp │ │ │ └── juce_MPEZoneLayout.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 │ │ │ │ ├── compat.h │ │ │ │ ├── endswap.h │ │ │ │ ├── export.h │ │ │ │ ├── format.h │ │ │ │ ├── libFLAC │ │ │ │ │ ├── bitmath.c │ │ │ │ │ ├── bitreader.c │ │ │ │ │ ├── bitwriter.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── crc.c │ │ │ │ │ ├── fixed.c │ │ │ │ │ ├── float.c │ │ │ │ │ ├── format.c │ │ │ │ │ ├── include │ │ │ │ │ │ ├── private │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ ├── bitmath.h │ │ │ │ │ │ │ ├── bitreader.h │ │ │ │ │ │ │ ├── bitwriter.h │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ ├── crc.h │ │ │ │ │ │ │ ├── fixed.h │ │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ ├── lpc.h │ │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ ├── stream_encoder.h │ │ │ │ │ │ │ ├── stream_encoder_framing.h │ │ │ │ │ │ │ └── window.h │ │ │ │ │ │ └── protected │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ ├── lpc_flac.c │ │ │ │ │ ├── md5.c │ │ │ │ │ ├── memory.c │ │ │ │ │ ├── stream_decoder.c │ │ │ │ │ ├── stream_encoder.c │ │ │ │ │ ├── stream_encoder_framing.c │ │ │ │ │ └── window_flac.c │ │ │ │ ├── metadata.h │ │ │ │ ├── ordinals.h │ │ │ │ ├── stream_decoder.h │ │ │ │ ├── stream_encoder.h │ │ │ │ └── win_utf8_io.h │ │ │ ├── juce_AiffAudioFormat.cpp │ │ │ ├── juce_AiffAudioFormat.h │ │ │ ├── juce_CoreAudioFormat.cpp │ │ │ ├── juce_CoreAudioFormat.h │ │ │ ├── juce_FlacAudioFormat.cpp │ │ │ ├── juce_FlacAudioFormat.h │ │ │ ├── juce_LAMEEncoderAudioFormat.cpp │ │ │ ├── juce_LAMEEncoderAudioFormat.h │ │ │ ├── juce_MP3AudioFormat.cpp │ │ │ ├── juce_MP3AudioFormat.h │ │ │ ├── juce_OggVorbisAudioFormat.cpp │ │ │ ├── juce_OggVorbisAudioFormat.h │ │ │ ├── juce_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_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_VST3Common.h │ │ │ ├── juce_VST3Headers.h │ │ │ ├── juce_VST3PluginFormat.cpp │ │ │ ├── juce_VST3PluginFormat.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_AudioChannelSet.cpp │ │ │ ├── juce_AudioChannelSet.h │ │ │ ├── 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_AudioProcessorParameter.h │ │ │ ├── juce_GenericAudioProcessorEditor.cpp │ │ │ ├── juce_GenericAudioProcessorEditor.h │ │ │ ├── juce_PluginDescription.cpp │ │ │ └── juce_PluginDescription.h │ │ ├── scanning │ │ │ ├── juce_KnownPluginList.cpp │ │ │ ├── juce_KnownPluginList.h │ │ │ ├── juce_PluginDirectoryScanner.cpp │ │ │ ├── juce_PluginDirectoryScanner.h │ │ │ ├── juce_PluginListComponent.cpp │ │ │ └── juce_PluginListComponent.h │ │ └── utilities │ │ │ ├── juce_AudioParameterBool.h │ │ │ ├── juce_AudioParameterChoice.h │ │ │ ├── juce_AudioParameterFloat.h │ │ │ ├── juce_AudioParameterInt.h │ │ │ ├── juce_AudioProcessorParameterWithID.h │ │ │ ├── juce_AudioProcessorParameters.cpp │ │ │ ├── juce_AudioProcessorValueTreeState.cpp │ │ │ └── juce_AudioProcessorValueTreeState.h │ ├── juce_audio_utils │ │ ├── gui │ │ │ ├── juce_AudioAppComponent.cpp │ │ │ ├── juce_AudioAppComponent.h │ │ │ ├── juce_AudioDeviceSelectorComponent.cpp │ │ │ ├── juce_AudioDeviceSelectorComponent.h │ │ │ ├── juce_AudioThumbnail.cpp │ │ │ ├── juce_AudioThumbnail.h │ │ │ ├── juce_AudioThumbnailBase.h │ │ │ ├── juce_AudioThumbnailCache.cpp │ │ │ ├── juce_AudioThumbnailCache.h │ │ │ ├── juce_AudioVisualiserComponent.cpp │ │ │ ├── juce_AudioVisualiserComponent.h │ │ │ ├── juce_BluetoothMidiDevicePairingDialogue.h │ │ │ ├── juce_MidiKeyboardComponent.cpp │ │ │ └── juce_MidiKeyboardComponent.h │ │ ├── juce_audio_utils.cpp │ │ ├── juce_audio_utils.h │ │ ├── juce_audio_utils.mm │ │ ├── juce_module_info │ │ ├── native │ │ │ ├── juce_android_BluetoothMidiDevicePairingDialogue.cpp │ │ │ ├── juce_ios_BluetoothMidiDevicePairingDialogue.mm │ │ │ ├── juce_linux_BluetoothMidiDevicePairingDialogue.cpp │ │ │ ├── juce_mac_BluetoothMidiDevicePairingDialogue.mm │ │ │ └── juce_win_BluetoothMidiDevicePairingDialogue.cpp │ │ └── players │ │ │ ├── juce_AudioProcessorPlayer.cpp │ │ │ └── juce_AudioProcessorPlayer.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_ListenerList.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_FileFilter.cpp │ │ │ ├── juce_FileFilter.h │ │ │ ├── juce_FileInputStream.cpp │ │ │ ├── juce_FileInputStream.h │ │ │ ├── juce_FileOutputStream.cpp │ │ │ ├── juce_FileOutputStream.h │ │ │ ├── juce_FileSearchPath.cpp │ │ │ ├── juce_FileSearchPath.h │ │ │ ├── juce_MemoryMappedFile.h │ │ │ ├── juce_TemporaryFile.cpp │ │ │ ├── juce_TemporaryFile.h │ │ │ ├── juce_WildcardFileFilter.cpp │ │ │ └── juce_WildcardFileFilter.h │ │ ├── javascript │ │ │ ├── juce_JSON.cpp │ │ │ ├── juce_JSON.h │ │ │ ├── juce_Javascript.cpp │ │ │ └── juce_Javascript.h │ │ ├── juce_core.cpp │ │ ├── juce_core.h │ │ ├── juce_core.mm │ │ ├── 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_NormalisableRange.h │ │ │ ├── juce_Random.cpp │ │ │ ├── juce_Random.h │ │ │ └── juce_Range.h │ │ ├── memory │ │ │ ├── juce_Atomic.h │ │ │ ├── juce_ByteOrder.h │ │ │ ├── juce_ContainerDeletePolicy.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_SharedResourcePointer.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 │ │ │ │ ├── AndroidMidi.java │ │ │ │ ├── AndroidMidiFallback.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_curl_Network.cpp │ │ │ ├── juce_linux_CommonFile.cpp │ │ │ ├── juce_linux_Files.cpp │ │ │ ├── juce_linux_Network.cpp │ │ │ ├── juce_linux_SystemStats.cpp │ │ │ ├── juce_linux_Threads.cpp │ │ │ ├── juce_mac_ClangBugWorkaround.h │ │ │ ├── juce_mac_Files.mm │ │ │ ├── juce_mac_Network.mm │ │ │ ├── juce_mac_Strings.mm │ │ │ ├── juce_mac_SystemStats.mm │ │ │ ├── juce_mac_Threads.mm │ │ │ ├── juce_osx_ObjCHelpers.h │ │ │ ├── juce_posix_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_CompilerSupport.h │ │ │ ├── juce_PlatformDefs.h │ │ │ ├── juce_StandardHeader.h │ │ │ ├── juce_SystemStats.cpp │ │ │ ├── juce_SystemStats.h │ │ │ └── juce_TargetPlatform.h │ │ ├── text │ │ │ ├── juce_Base64.cpp │ │ │ ├── juce_Base64.h │ │ │ ├── juce_CharPointer_ASCII.h │ │ │ ├── juce_CharPointer_UTF16.h │ │ │ ├── juce_CharPointer_UTF32.h │ │ │ ├── juce_CharPointer_UTF8.h │ │ │ ├── juce_CharacterFunctions.cpp │ │ │ ├── juce_CharacterFunctions.h │ │ │ ├── juce_Identifier.cpp │ │ │ ├── juce_Identifier.h │ │ │ ├── juce_LocalisedStrings.cpp │ │ │ ├── juce_LocalisedStrings.h │ │ │ ├── juce_NewLine.h │ │ │ ├── juce_String.cpp │ │ │ ├── juce_String.h │ │ │ ├── juce_StringArray.cpp │ │ │ ├── juce_StringArray.h │ │ │ ├── juce_StringPairArray.cpp │ │ │ ├── juce_StringPairArray.h │ │ │ ├── juce_StringPool.cpp │ │ │ ├── juce_StringPool.h │ │ │ ├── juce_StringRef.h │ │ │ ├── juce_TextDiff.cpp │ │ │ └── juce_TextDiff.h │ │ ├── threads │ │ │ ├── juce_ChildProcess.cpp │ │ │ ├── juce_ChildProcess.h │ │ │ ├── juce_CriticalSection.h │ │ │ ├── juce_DynamicLibrary.h │ │ │ ├── juce_HighResolutionTimer.cpp │ │ │ ├── juce_HighResolutionTimer.h │ │ │ ├── juce_InterProcessLock.h │ │ │ ├── juce_Process.h │ │ │ ├── juce_ReadWriteLock.cpp │ │ │ ├── juce_ReadWriteLock.h │ │ │ ├── juce_ScopedLock.h │ │ │ ├── juce_ScopedReadLock.h │ │ │ ├── juce_ScopedWriteLock.h │ │ │ ├── juce_SpinLock.h │ │ │ ├── juce_Thread.cpp │ │ │ ├── juce_Thread.h │ │ │ ├── juce_ThreadLocalValue.h │ │ │ ├── juce_ThreadPool.cpp │ │ │ ├── juce_ThreadPool.h │ │ │ ├── juce_TimeSliceThread.cpp │ │ │ ├── juce_TimeSliceThread.h │ │ │ └── juce_WaitableEvent.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_ValueTreeSynchroniser.cpp │ │ │ └── juce_ValueTreeSynchroniser.h │ ├── juce_events │ │ ├── broadcasters │ │ │ ├── juce_ActionBroadcaster.cpp │ │ │ ├── juce_ActionBroadcaster.h │ │ │ ├── juce_ActionListener.h │ │ │ ├── juce_AsyncUpdater.cpp │ │ │ ├── juce_AsyncUpdater.h │ │ │ ├── juce_ChangeBroadcaster.cpp │ │ │ ├── juce_ChangeBroadcaster.h │ │ │ └── juce_ChangeListener.h │ │ ├── interprocess │ │ │ ├── juce_ConnectedChildProcess.cpp │ │ │ ├── juce_ConnectedChildProcess.h │ │ │ ├── juce_InterprocessConnection.cpp │ │ │ ├── juce_InterprocessConnection.h │ │ │ ├── juce_InterprocessConnectionServer.cpp │ │ │ └── juce_InterprocessConnectionServer.h │ │ ├── juce_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_Initialisation.h │ │ │ ├── juce_Message.h │ │ │ ├── juce_MessageListener.cpp │ │ │ ├── juce_MessageListener.h │ │ │ ├── juce_MessageManager.cpp │ │ │ ├── juce_MessageManager.h │ │ │ ├── juce_MountedVolumeListChangeDetector.h │ │ │ └── juce_NotificationType.h │ │ ├── native │ │ │ ├── juce_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.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.h │ │ │ ├── juce_RectanglePlacement.cpp │ │ │ └── juce_RectanglePlacement.h │ ├── juce_gui_basics │ │ ├── application │ │ │ ├── juce_Application.cpp │ │ │ └── juce_Application.h │ │ ├── buttons │ │ │ ├── juce_ArrowButton.cpp │ │ │ ├── juce_ArrowButton.h │ │ │ ├── juce_Button.cpp │ │ │ ├── juce_Button.h │ │ │ ├── juce_DrawableButton.cpp │ │ │ ├── juce_DrawableButton.h │ │ │ ├── juce_HyperlinkButton.cpp │ │ │ ├── juce_HyperlinkButton.h │ │ │ ├── juce_ImageButton.cpp │ │ │ ├── juce_ImageButton.h │ │ │ ├── juce_ShapeButton.cpp │ │ │ ├── juce_ShapeButton.h │ │ │ ├── juce_TextButton.cpp │ │ │ ├── juce_TextButton.h │ │ │ ├── juce_ToggleButton.cpp │ │ │ ├── juce_ToggleButton.h │ │ │ ├── juce_ToolbarButton.cpp │ │ │ └── juce_ToolbarButton.h │ │ ├── commands │ │ │ ├── juce_ApplicationCommandID.h │ │ │ ├── juce_ApplicationCommandInfo.cpp │ │ │ ├── juce_ApplicationCommandInfo.h │ │ │ ├── juce_ApplicationCommandManager.cpp │ │ │ ├── juce_ApplicationCommandManager.h │ │ │ ├── juce_ApplicationCommandTarget.cpp │ │ │ ├── juce_ApplicationCommandTarget.h │ │ │ ├── juce_KeyPressMappingSet.cpp │ │ │ └── juce_KeyPressMappingSet.h │ │ ├── components │ │ │ ├── juce_CachedComponentImage.h │ │ │ ├── juce_Component.cpp │ │ │ ├── juce_Component.h │ │ │ ├── juce_ComponentListener.cpp │ │ │ ├── juce_ComponentListener.h │ │ │ ├── juce_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_FileListComponent.cpp │ │ │ ├── juce_FileListComponent.h │ │ │ ├── juce_FilePreviewComponent.h │ │ │ ├── juce_FileSearchPathListComponent.cpp │ │ │ ├── juce_FileSearchPathListComponent.h │ │ │ ├── juce_FileTreeComponent.cpp │ │ │ ├── juce_FileTreeComponent.h │ │ │ ├── juce_FilenameComponent.cpp │ │ │ ├── juce_FilenameComponent.h │ │ │ ├── juce_ImagePreviewComponent.cpp │ │ │ └── juce_ImagePreviewComponent.h │ │ ├── juce_gui_basics.cpp │ │ ├── juce_gui_basics.h │ │ ├── juce_gui_basics.mm │ │ ├── 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_AnimatedPosition.h │ │ │ ├── juce_AnimatedPositionBehaviours.h │ │ │ ├── juce_ComponentAnimator.cpp │ │ │ ├── juce_ComponentAnimator.h │ │ │ ├── juce_ComponentBoundsConstrainer.cpp │ │ │ ├── juce_ComponentBoundsConstrainer.h │ │ │ ├── juce_ComponentBuilder.cpp │ │ │ ├── juce_ComponentBuilder.h │ │ │ ├── juce_ComponentMovementWatcher.cpp │ │ │ ├── juce_ComponentMovementWatcher.h │ │ │ ├── juce_ConcertinaPanel.cpp │ │ │ ├── juce_ConcertinaPanel.h │ │ │ ├── juce_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 │ │ │ ├── juce_LookAndFeel_V1.cpp │ │ │ ├── juce_LookAndFeel_V1.h │ │ │ ├── juce_LookAndFeel_V2.cpp │ │ │ ├── juce_LookAndFeel_V2.h │ │ │ ├── juce_LookAndFeel_V3.cpp │ │ │ └── juce_LookAndFeel_V3.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_MouseInactivityDetector.cpp │ │ │ ├── juce_MouseInactivityDetector.h │ │ │ ├── juce_MouseInputSource.cpp │ │ │ ├── juce_MouseInputSource.h │ │ │ ├── juce_MouseListener.cpp │ │ │ ├── juce_MouseListener.h │ │ │ ├── juce_SelectedItemSet.h │ │ │ ├── juce_TextDragAndDropTarget.h │ │ │ └── juce_TooltipClient.h │ │ ├── native │ │ │ ├── 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 │ │ │ ├── juce_LuaCodeTokeniser.cpp │ │ │ ├── juce_LuaCodeTokeniser.h │ │ │ ├── juce_XMLCodeTokeniser.cpp │ │ │ └── juce_XMLCodeTokeniser.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 │ │ ├── misc │ │ │ ├── juce_AnimatedAppComponent.cpp │ │ │ ├── juce_AnimatedAppComponent.h │ │ │ ├── juce_AppleRemote.h │ │ │ ├── juce_BubbleMessageComponent.cpp │ │ │ ├── juce_BubbleMessageComponent.h │ │ │ ├── juce_ColourSelector.cpp │ │ │ ├── juce_ColourSelector.h │ │ │ ├── juce_KeyMappingEditorComponent.cpp │ │ │ ├── juce_KeyMappingEditorComponent.h │ │ │ ├── juce_LiveConstantEditor.cpp │ │ │ ├── juce_LiveConstantEditor.h │ │ │ ├── juce_PreferencesPanel.cpp │ │ │ ├── juce_PreferencesPanel.h │ │ │ ├── juce_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_SystemTrayIcon.cpp │ │ │ ├── juce_mac_WebBrowserComponent.mm │ │ │ ├── juce_win32_ActiveXComponent.cpp │ │ │ ├── juce_win32_SystemTrayIcon.cpp │ │ │ └── juce_win32_WebBrowserComponent.cpp │ ├── juce_opengl │ │ ├── geometry │ │ │ ├── juce_Draggable3DOrientation.h │ │ │ ├── juce_Matrix3D.h │ │ │ ├── juce_Quaternion.h │ │ │ └── juce_Vector3D.h │ │ ├── juce_module_info │ │ ├── juce_opengl.cpp │ │ ├── juce_opengl.h │ │ ├── juce_opengl.mm │ │ ├── native │ │ │ ├── juce_MissingGLDefinitions.h │ │ │ ├── juce_OpenGLExtensions.h │ │ │ ├── juce_OpenGL_android.h │ │ │ ├── juce_OpenGL_ios.h │ │ │ ├── juce_OpenGL_linux.h │ │ │ ├── juce_OpenGL_osx.h │ │ │ └── juce_OpenGL_win32.h │ │ ├── opengl │ │ │ ├── juce_OpenGLContext.cpp │ │ │ ├── juce_OpenGLContext.h │ │ │ ├── juce_OpenGLFrameBuffer.cpp │ │ │ ├── juce_OpenGLFrameBuffer.h │ │ │ ├── juce_OpenGLGraphicsContext.cpp │ │ │ ├── juce_OpenGLGraphicsContext.h │ │ │ ├── juce_OpenGLHelpers.cpp │ │ │ ├── juce_OpenGLHelpers.h │ │ │ ├── juce_OpenGLImage.cpp │ │ │ ├── juce_OpenGLImage.h │ │ │ ├── juce_OpenGLPixelFormat.cpp │ │ │ ├── juce_OpenGLPixelFormat.h │ │ │ ├── juce_OpenGLRenderer.h │ │ │ ├── juce_OpenGLShaderProgram.cpp │ │ │ ├── juce_OpenGLShaderProgram.h │ │ │ ├── juce_OpenGLTexture.cpp │ │ │ └── juce_OpenGLTexture.h │ │ └── utils │ │ │ ├── juce_OpenGLAppComponent.cpp │ │ │ └── juce_OpenGLAppComponent.h │ ├── juce_video │ │ ├── capture │ │ │ ├── juce_CameraDevice.cpp │ │ │ └── juce_CameraDevice.h │ │ ├── juce_module_info │ │ ├── juce_video.cpp │ │ ├── juce_video.h │ │ ├── juce_video.mm │ │ ├── native │ │ │ ├── juce_android_CameraDevice.cpp │ │ │ ├── juce_mac_CameraDevice.mm │ │ │ ├── juce_mac_QuickTimeMovieComponent.mm │ │ │ ├── juce_win32_CameraDevice.cpp │ │ │ ├── juce_win32_DirectShowComponent.cpp │ │ │ └── juce_win32_QuickTimeMovieComponent.cpp │ │ └── playback │ │ │ ├── juce_DirectShowComponent.h │ │ │ └── juce_QuickTimeMovieComponent.h │ └── luce_core │ │ └── luce_core.h └── p.patch ├── Luce ├── LAppConfig.h ├── LLuce.h └── modules │ ├── luce_audio │ ├── audio │ │ ├── luce_AudioTransportInfiniteSource.cpp │ │ ├── luce_AudioTransportInfiniteSource.h │ │ ├── luce_BufferingAudioInfiniteSource.cpp │ │ ├── luce_BufferingAudioInfiniteSource.h │ │ ├── luce_MP3AudioFormatInfinite.cpp │ │ ├── luce_MP3AudioFormatInfinite.h │ │ ├── luce_WebBufferedInputStream.cpp │ │ ├── luce_WebBufferedInputStream.h │ │ └── rec │ │ │ ├── AudioFormatOutputDescription.h │ │ │ ├── RegisterFormats.cpp │ │ │ ├── RegisterFormats.h │ │ │ ├── base │ │ │ └── Disallow.h │ │ │ └── mpg123 │ │ │ ├── Copier.cpp │ │ │ ├── Copier.h │ │ │ ├── CreateReader.cpp │ │ │ ├── CreateReader.h │ │ │ ├── Format.h │ │ │ ├── Mpg123.cpp │ │ │ ├── Mpg123.h │ │ │ ├── NewHandle.cpp │ │ │ ├── NewHandle.h │ │ │ ├── Reader.cpp │ │ │ ├── Reader.h │ │ │ ├── Tags.cpp │ │ │ └── Tags.h │ ├── juce_module_info │ ├── luce_audio.cpp │ ├── luce_audio.h │ └── luce_audio.mm │ └── luce_core │ ├── initialisation │ ├── luce_initialisation.cpp │ └── luce_initialisation.h │ ├── juce_module_info │ ├── luce_core.cpp │ ├── luce_core.h │ └── luce_core.mm ├── README.rst ├── Source ├── .gitignore ├── LAffineTransform.cpp ├── LAffineTransform.h ├── LAffineTransform_inh.h ├── LBase.cpp ├── LBase.h ├── LBase_inh.h ├── LButton.cpp ├── LButton.h ├── LButton_inh.h ├── LCallOutBox.cpp ├── LCallOutBox.h ├── LCallOutBox_inh.h ├── LColour.cpp ├── LColour.h ├── LColour_inh.h ├── LComboBox.cpp ├── LComboBox.h ├── LComboBox_inh.h ├── LComponent.cpp ├── LComponent.h ├── LComponent_inh.h ├── LComponent_inh.list ├── LConstants.h ├── LDocumentWindow.cpp ├── LDocumentWindow.h ├── LDocumentWindow_inh.h ├── LFont.cpp ├── LFont.h ├── LFont_inh.h ├── LHighResolutionTimer.cpp ├── LHighResolutionTimer.h ├── LHighResolutionTimer_inh.h ├── LHyperlinkButton.cpp ├── LHyperlinkButton.h ├── LHyperlinkButton_inh.h ├── LImage.cpp ├── LImage.h ├── LImageButton.cpp ├── LImageButton.h ├── LImageButton_inh.h ├── LImage_inh.h ├── LInputFilter.cpp ├── LInputFilter.h ├── LInputFilter_inh.h ├── LJComponent.cpp ├── LJComponent.h ├── LJComponent_inh.h ├── LJUCEApplication.cpp ├── LJUCEApplication.h ├── LJUCEApplication_inh.h ├── LKeyPress.cpp ├── LKeyPress.h ├── LKeyPress_inh.h ├── LLabel.cpp ├── LLabel.h ├── LLabel_inh.h ├── LListBox.cpp ├── LListBox.h ├── LListBox_inh.h ├── LLookAndFeel.cpp ├── LLookAndFeel.h ├── LLookAndFeel_inh.h ├── LMainComponent.cpp ├── LMainComponent.h ├── LMainComponent_inh.h ├── LModifierKeys.cpp ├── LModifierKeys.h ├── LModifierKeys_inh.h ├── LMouseEvent.cpp ├── LMouseEvent.h ├── LMouseEvent_inh.h ├── LMouseInputSource.cpp ├── LMouseInputSource.h ├── LMouseInputSource_inh.h ├── LOpenGLComponent.cpp ├── LOpenGLComponent.h ├── LOpenGLComponent_inh.h ├── LOpenGLShaderProgram.cpp ├── LOpenGLShaderProgram.h ├── LOpenGLShaderProgram_inh.h ├── LOptions.cpp ├── LOptions.h ├── LOptions_inh.h ├── LPopupMenu.cpp ├── LPopupMenu.h ├── LPopupMenu_inh.h ├── LRefBase.h ├── LScrollBar.cpp ├── LScrollBar.h ├── LScrollBar_inh.h ├── LSelfKill.cpp ├── LSelfKill.h ├── LSlider.cpp ├── LSlider.h ├── LSlider_inh.h ├── LSourceDetails.cpp ├── LSourceDetails.h ├── LSourceDetails_inh.h ├── LStretchableLayoutManager.cpp ├── LStretchableLayoutManager.h ├── LStretchableLayoutManager_inh.h ├── LStretchableLayoutResizerBar.cpp ├── LStretchableLayoutResizerBar.h ├── LStretchableLayoutResizerBar_inh.h ├── LSystemTrayIconComponent.cpp ├── LSystemTrayIconComponent.h ├── LSystemTrayIconComponent_inh.h ├── LTextButton.cpp ├── LTextButton.h ├── LTextButton_inh.h ├── LTextEditor.cpp ├── LTextEditor.h ├── LTextEditor_inh.h ├── LTimer.cpp ├── LTimer.h ├── LTimer_inh.h ├── LToggleButton.cpp ├── LToggleButton.h ├── LToggleButton_inh.h ├── LTreeView.cpp ├── LTreeView.h ├── LTreeViewItem.cpp ├── LTreeViewItem.h ├── LTreeViewItem_inh.h ├── LTreeView_inh.h ├── LViewport.cpp ├── LViewport.h ├── LViewport_inh.h ├── LuaO.hpp ├── LuaO_Common.hpp ├── LuceO.hpp ├── Main.cpp ├── MainThread.cpp ├── MainThread.h ├── MyLookAndFeel.cpp ├── MyLookAndFeel.h ├── audio │ ├── LAudioAppComponent.cpp │ ├── LAudioAppComponent.h │ ├── LAudioAppComponent_inh.h │ ├── LAudioAppComponent_old_wip.cpp │ ├── LAudioAppComponent_old_wip.h │ ├── LAudioAppComponent_wip.cpp │ ├── LAudioAppComponent_wip.h │ ├── LAudioSampleBuffer.cpp │ ├── LAudioSampleBuffer.h │ └── LAudioSampleBuffer_inh.h ├── base │ ├── LBigInteger.cpp │ ├── LBigInteger.h │ ├── LBigInteger_inh.h │ ├── LConnectionPool.cpp │ ├── LConnectionPool.h │ ├── LConnectionPool_inh.h │ ├── LInputStream.cpp │ ├── LInputStream.h │ ├── LInputStream_inh.h │ ├── LPointer.h │ ├── LRandom.cpp │ ├── LRandom.h │ ├── LRandom_inh.h │ ├── LTime.cpp │ ├── LTime.h │ ├── LTime_inh.h │ ├── LURL.cpp │ ├── LURL.h │ └── LURL_inh.h ├── create_inh.sh ├── drawable │ ├── LDrawable.cpp │ ├── LDrawable.h │ ├── LDrawableComposite.cpp │ ├── LDrawableComposite.h │ ├── LDrawableComposite_inh.h │ ├── LDrawablePath.cpp │ ├── LDrawablePath.h │ ├── LDrawablePath_inh.h │ ├── LDrawableRectangle.cpp │ ├── LDrawableRectangle.h │ ├── LDrawableRectangle_inh.h │ ├── LDrawableShape.cpp │ ├── LDrawableShape.h │ ├── LDrawableShape_inh.h │ ├── LDrawableShape_inh.h.in │ ├── LDrawable_inh.h │ └── LDrawable_inh.h.in ├── extra │ ├── LColourSelector.cpp │ ├── LColourSelector.h │ ├── LColourSelector_inh.h │ ├── LFileChooser.cpp │ ├── LFileChooser.h │ └── LFileChooser_inh.h ├── graphics │ ├── LAttribute.cpp │ ├── LAttribute.h │ ├── LAttribute_inh.h │ ├── LAttributedString.cpp │ ├── LAttributedString.h │ ├── LAttributedString_inh.h │ ├── LColourGradient.cpp │ ├── LColourGradient.h │ ├── LColourGradient_inh.h │ ├── LFillType.cpp │ ├── LFillType.h │ ├── LFillType_inh.h │ ├── LGlyph.cpp │ ├── LGlyph.h │ ├── LGlyphArrangement.cpp │ ├── LGlyphArrangement.h │ ├── LGlyphArrangement_inh.h │ ├── LGlyph_inh.h │ ├── LGraphics.cpp │ ├── LGraphics.h │ ├── LGraphics_inh.h │ ├── LLine.cpp │ ├── LLine.h │ ├── LLine_inh.h │ ├── LPath.cpp │ ├── LPath.h │ ├── LPathStrokeType.cpp │ ├── LPathStrokeType.h │ ├── LPathStrokeType_inh.h │ ├── LPath_inh.h │ ├── LPositionedGlyph.cpp │ ├── LPositionedGlyph.h │ ├── LPositionedGlyph_inh.h │ ├── LRun.cpp │ ├── LRun.h │ ├── LRun_inh.h │ ├── LTextLayout.cpp │ ├── LTextLayout.h │ └── LTextLayout_inh.h ├── inh_tmpl.h.in ├── lua │ ├── luce.lua │ ├── luce │ │ ├── LAffineTransform.lua │ │ ├── LAnimatedPosition.lua │ │ ├── LApplication.lua │ │ ├── LClass.lua │ │ ├── LCommon.lua │ │ ├── LDocument.lua │ │ ├── LEventCentral.lua │ │ ├── LImageComponent.lua │ │ ├── LLine.lua │ │ ├── LPoint.lua │ │ ├── LRange.lua │ │ ├── LRectangle.lua │ │ ├── LRectangleList.lua │ │ ├── LRectanglePlacement.lua │ │ ├── bit │ │ │ └── numberlua.lua │ │ ├── deepcopy.lua │ │ └── init.lua │ └── luce_template.lua ├── luce.cpp ├── luce.h ├── luce.mm ├── luce_audio.cpp ├── luce_audio.h ├── luna5.h └── mingw.h ├── TODO ├── examples ├── .gitignore ├── 2DGraphics │ ├── 2DDemo.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ ├── LaunchLuce │ │ │ └── app.lua │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ ├── DemoHolder.lua │ │ │ ├── GlyphDemo.lua │ │ │ ├── GraphicsDemoBase.lua │ │ │ └── LinesDemo.lua │ ├── 2DDemoLines.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ ├── LaunchLuce │ │ │ └── app.lua │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ ├── DemoHolder.lua │ │ │ ├── GlyphDemo.lua │ │ │ ├── GraphicsDemoBase.lua │ │ │ └── LinesDemo.lua │ ├── Demo.lua │ ├── DemoHolder.lua │ ├── GlyphDemo.lua │ ├── GraphicsDemoBase.lua │ ├── LinesDemo.lua │ └── README ├── Audio │ ├── AudioNoise.lua │ ├── AudioSine.lua │ ├── AudioSineBasic.lua │ └── AudioSineNativeVolume.lua ├── DropFiles │ ├── DropFiles.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ ├── LaunchLuce │ │ │ └── app.lua │ │ │ └── PkgInfo │ └── DropFiles.lua ├── README.rst ├── TreeView_JSON │ ├── TreeViewJSON.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ ├── LaunchLuce │ │ │ └── app.lua │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ ├── assets │ │ │ └── json_sample.json │ │ │ └── classes │ │ │ ├── LItem.lua │ │ │ └── LJSONTreeViewItem.lua │ ├── assets │ │ └── json_sample.json │ ├── classes │ │ ├── LItem.lua │ │ └── LJSONTreeViewItem.lua │ └── main.lua ├── TreeView_XML │ ├── TreeViewXML.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ ├── LaunchLuce │ │ │ └── app.lua │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ ├── assets │ │ │ └── cd_catalog.xml │ │ │ └── classes │ │ │ ├── LItem.lua │ │ │ ├── XMLTreeViewItem.lua │ │ │ └── XmlParser.lua │ ├── assets │ │ └── cd_catalog.xml │ ├── classes │ │ ├── LItem.lua │ │ ├── XMLTreeViewItem.lua │ │ └── XmlParser.lua │ └── main.lua └── demo │ ├── Demo.app │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ ├── LaunchLuce │ │ └── app.lua │ │ └── PkgInfo │ ├── DemoAnimated.app │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ ├── LaunchLuce │ │ └── app.lua │ │ └── PkgInfo │ ├── DemoHL.app │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ ├── LaunchLuce │ │ └── app.lua │ │ └── PkgInfo │ ├── demo.lua │ ├── demoAnimated.lua │ └── demoHL.lua ├── luce-scm-0.rockspec ├── luce-scm52-0.rockspec ├── luce-scm53-0.rockspec ├── luce.jucer └── mingw_far_near.patch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/.gitignore -------------------------------------------------------------------------------- /Builds/Linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Builds/Linux/Makefile -------------------------------------------------------------------------------- /Builds/Linux/Makefile.static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Builds/Linux/Makefile.static -------------------------------------------------------------------------------- /Builds/MacOSX/RecentFilesMenuTemplate.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Builds/MacOSX/RecentFilesMenuTemplate.nib -------------------------------------------------------------------------------- /Builds/MacOSX/luce.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Builds/MacOSX/luce.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Builds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Builds/Makefile -------------------------------------------------------------------------------- /Builds/VisualStudio2010/luce.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Builds/VisualStudio2010/luce.sln -------------------------------------------------------------------------------- /Builds/VisualStudio2010/luce.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Builds/VisualStudio2010/luce.vcxproj -------------------------------------------------------------------------------- /Builds/VisualStudio2010/luce.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Builds/VisualStudio2010/luce.vcxproj.filters -------------------------------------------------------------------------------- /Builds/VisualStudio2010/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Builds/VisualStudio2010/resources.rc -------------------------------------------------------------------------------- /Builds/iOS/luce.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Builds/iOS/luce.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JuceLibraryCode/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/AppConfig.h -------------------------------------------------------------------------------- /JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/effects/juce_Decibels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/effects/juce_Decibels.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/effects/juce_FFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/effects/juce_FFT.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/effects/juce_FFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/effects/juce_FFT.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/effects/juce_IIRFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/effects/juce_IIRFilter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/effects/juce_IIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/effects/juce_IIRFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/effects/juce_Reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/effects/juce_Reverb.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiser.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZone.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZone.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/sources/juce_AudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_basics/sources/juce_AudioSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_devices/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiInput.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiOutput.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_ios_Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_ios_Audio.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/all.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/alloc.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/assert.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/callback.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/compat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/endswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/endswap.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/export.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/format.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/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/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/crc.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/md5.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/metadata.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/ordinals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/ordinals.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/win_utf8_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/win_utf8_io.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/codec.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/ogg.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_processors/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_processors/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioThumbnail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioThumbnail.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioThumbnail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioThumbnail.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_utils/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_audio_utils/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Array.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_HashMap.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ListenerList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ListenerList.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_SortedSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_SortedSet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Variant.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Variant.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/files/juce_File.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/files/juce_File.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileFilter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_MemoryMappedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/files/juce_MemoryMappedFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/javascript/juce_JSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/javascript/juce_JSON.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/javascript/juce_JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/javascript/juce_JSON.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/javascript/juce_Javascript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/javascript/juce_Javascript.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/javascript/juce_Javascript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/javascript/juce_Javascript.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/juce_core.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/juce_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/juce_core.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/juce_core.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_Logger.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_Logger.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Expression.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Expression.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_MathsFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_MathsFunctions.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_NormalisableRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_NormalisableRange.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Random.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Random.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Range.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_Atomic.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_ByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_ByteOrder.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_HeapBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_HeapBlock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_LeakedObjectDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_LeakedObjectDetector.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_Memory.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_ScopedPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_ScopedPointer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_Singleton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_WeakReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_WeakReference.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Result.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Result.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Uuid.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Uuid.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_WindowsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_WindowsRegistry.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/java/AndroidMidi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/java/AndroidMidi.java -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/java/JuceAppActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/java/JuceAppActivity.java -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_BasicNativeHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_BasicNativeHeaders.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_android_Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_android_Files.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_android_JNIHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_android_JNIHelpers.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_android_Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_android_Misc.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_android_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_android_Network.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_android_Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_android_Threads.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_curl_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_curl_Network.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_linux_CommonFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_linux_CommonFile.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_linux_Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_linux_Files.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_linux_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_linux_Network.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_linux_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_linux_SystemStats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_linux_Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_linux_Threads.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_mac_Files.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_mac_Files.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_mac_Network.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_mac_Network.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_mac_Strings.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_mac_Strings.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_mac_SystemStats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_mac_SystemStats.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_mac_Threads.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_mac_Threads.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_osx_ObjCHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_osx_ObjCHelpers.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_posix_NamedPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_posix_NamedPipe.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_posix_SharedCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_posix_SharedCode.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_win32_ComSmartPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_win32_ComSmartPtr.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_win32_Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_win32_Files.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_win32_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_win32_Network.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_win32_Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_win32_Registry.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_win32_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_win32_SystemStats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_win32_Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/native/juce_win32_Threads.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/network/juce_IPAddress.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/network/juce_IPAddress.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_MACAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/network/juce_MACAddress.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_MACAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/network/juce_MACAddress.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/network/juce_Socket.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/network/juce_Socket.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_URL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/network/juce_URL.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_URL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/network/juce_URL.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_BufferedInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_BufferedInputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_InputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_InputSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_InputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_InputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_InputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_InputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_CompilerSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/system/juce_CompilerSupport.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_PlatformDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/system/juce_PlatformDefs.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/system/juce_StandardHeader.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/system/juce_SystemStats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_SystemStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/system/juce_SystemStats.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_TargetPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/system/juce_TargetPlatform.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_Base64.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_Base64.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_ASCII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_ASCII.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF16.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF32.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF8.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_Identifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_Identifier.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_Identifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_Identifier.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_NewLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_NewLine.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_String.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_String.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringArray.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringArray.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPool.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPool.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringRef.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_TextDiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_TextDiff.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_TextDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/text/juce_TextDiff.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_CriticalSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_CriticalSection.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_DynamicLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_DynamicLibrary.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_HighResolutionTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_HighResolutionTimer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_InterProcessLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_InterProcessLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_Process.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ScopedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ScopedLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ScopedReadLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ScopedReadLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ScopedWriteLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ScopedWriteLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_SpinLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_SpinLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_Thread.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_Thread.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ThreadLocalValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ThreadLocalValue.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/time/juce_Time.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/time/juce_Time.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/README -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/adler32.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/compress.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/crc32.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/crc32.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/deflate.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/deflate.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/infback.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inffast.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inffast.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inffixed.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inflate.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inflate.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/trees.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/trees.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/uncompr.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zconf.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zconf.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zconf.in.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zlib.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zutil.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zutil.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/juce_data_structures.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_data_structures/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/values/juce_Value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_data_structures/values/juce_Value.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/values/juce_Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_data_structures/values/juce_Value.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/values/juce_ValueTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_data_structures/values/juce_ValueTree.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/broadcasters/juce_AsyncUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/broadcasters/juce_AsyncUpdater.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/juce_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/juce_events.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/juce_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/juce_events.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/juce_events.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_CallbackMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_CallbackMessage.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_Initialisation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_Initialisation.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_Message.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_NotificationType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_NotificationType.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_ScopedXLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/native/juce_ScopedXLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_linux_Messaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/native/juce_linux_Messaging.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_osx_MessageQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/native/juce_osx_MessageQueue.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_Timer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_Timer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_PixelFormats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_PixelFormats.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_CustomTypeface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_CustomTypeface.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_BorderSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_BorderSize.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Line.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Point.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Rectangle.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/README -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdct.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_Image.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_Image.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/juce_graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/juce_graphics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/juce_graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/juce_graphics.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/juce_graphics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/juce_graphics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/native/juce_linux_Fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/native/juce_linux_Fonts.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/native/juce_mac_Fonts.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/native/juce_mac_Fonts.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/native/juce_win32_Fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_graphics/native/juce_win32_Fonts.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_TextButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_TextButton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/components/juce_Desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/components/juce_Desktop.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/drawables/juce_Drawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/drawables/juce_Drawable.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyPress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyPress.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarModel.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/misc/juce_DropShadower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/misc/juce_DropShadower.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseCursor.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TextEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TextEditor.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/windows/juce_CallOutBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_basics/windows/juce_CallOutBox.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_extra/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_AppleRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_AppleRemote.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_ColourSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_ColourSelector.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/geometry/juce_Matrix3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/geometry/juce_Matrix3D.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/geometry/juce_Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/geometry/juce_Quaternion.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/geometry/juce_Vector3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/geometry/juce_Vector3D.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/juce_opengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/juce_opengl.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/juce_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/juce_opengl.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/juce_opengl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/juce_opengl.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_android.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_ios.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_linux.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_osx.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/native/juce_OpenGL_win32.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLContext.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLContext.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLHelpers.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLHelpers.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLImage.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLImage.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLRenderer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLTexture.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_opengl/opengl/juce_OpenGLTexture.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/capture/juce_CameraDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_video/capture/juce_CameraDevice.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/capture/juce_CameraDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_video/capture/juce_CameraDevice.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_video/juce_module_info -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/juce_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_video/juce_video.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/juce_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_video/juce_video.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_video/juce_video.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/juce_video/juce_video.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/luce_core/luce_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/modules/luce_core/luce_core.h -------------------------------------------------------------------------------- /JuceLibraryCode/p.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/JuceLibraryCode/p.patch -------------------------------------------------------------------------------- /Luce/LAppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/LAppConfig.h -------------------------------------------------------------------------------- /Luce/LLuce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/LLuce.h -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/luce_AudioTransportInfiniteSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/luce_AudioTransportInfiniteSource.h -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/luce_BufferingAudioInfiniteSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/luce_BufferingAudioInfiniteSource.h -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/luce_MP3AudioFormatInfinite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/luce_MP3AudioFormatInfinite.cpp -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/luce_MP3AudioFormatInfinite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/luce_MP3AudioFormatInfinite.h -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/luce_WebBufferedInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/luce_WebBufferedInputStream.cpp -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/luce_WebBufferedInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/luce_WebBufferedInputStream.h -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/rec/AudioFormatOutputDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/rec/AudioFormatOutputDescription.h -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/rec/RegisterFormats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/rec/RegisterFormats.cpp -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/rec/RegisterFormats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/rec/RegisterFormats.h -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/rec/base/Disallow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/rec/base/Disallow.h -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/rec/mpg123/Copier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/rec/mpg123/Copier.cpp -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/rec/mpg123/Copier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/rec/mpg123/Copier.h -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/rec/mpg123/CreateReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/rec/mpg123/CreateReader.cpp -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/rec/mpg123/CreateReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/rec/mpg123/CreateReader.h -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/rec/mpg123/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/rec/mpg123/Format.h -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/rec/mpg123/Mpg123.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/rec/mpg123/Mpg123.cpp -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/rec/mpg123/Mpg123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/rec/mpg123/Mpg123.h -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/rec/mpg123/NewHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/rec/mpg123/NewHandle.cpp -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/rec/mpg123/NewHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/rec/mpg123/NewHandle.h -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/rec/mpg123/Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/rec/mpg123/Reader.cpp -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/rec/mpg123/Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/rec/mpg123/Reader.h -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/rec/mpg123/Tags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/rec/mpg123/Tags.cpp -------------------------------------------------------------------------------- /Luce/modules/luce_audio/audio/rec/mpg123/Tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/audio/rec/mpg123/Tags.h -------------------------------------------------------------------------------- /Luce/modules/luce_audio/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/juce_module_info -------------------------------------------------------------------------------- /Luce/modules/luce_audio/luce_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/luce_audio.cpp -------------------------------------------------------------------------------- /Luce/modules/luce_audio/luce_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_audio/luce_audio.h -------------------------------------------------------------------------------- /Luce/modules/luce_audio/luce_audio.mm: -------------------------------------------------------------------------------- 1 | #include "luce_audio.cpp" 2 | -------------------------------------------------------------------------------- /Luce/modules/luce_core/initialisation/luce_initialisation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_core/initialisation/luce_initialisation.cpp -------------------------------------------------------------------------------- /Luce/modules/luce_core/initialisation/luce_initialisation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_core/initialisation/luce_initialisation.h -------------------------------------------------------------------------------- /Luce/modules/luce_core/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_core/juce_module_info -------------------------------------------------------------------------------- /Luce/modules/luce_core/luce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_core/luce_core.cpp -------------------------------------------------------------------------------- /Luce/modules/luce_core/luce_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Luce/modules/luce_core/luce_core.h -------------------------------------------------------------------------------- /Luce/modules/luce_core/luce_core.mm: -------------------------------------------------------------------------------- 1 | #include "luce_core.cpp" 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/README.rst -------------------------------------------------------------------------------- /Source/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/.gitignore -------------------------------------------------------------------------------- /Source/LAffineTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LAffineTransform.cpp -------------------------------------------------------------------------------- /Source/LAffineTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LAffineTransform.h -------------------------------------------------------------------------------- /Source/LAffineTransform_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LAffineTransform_inh.h -------------------------------------------------------------------------------- /Source/LBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LBase.cpp -------------------------------------------------------------------------------- /Source/LBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LBase.h -------------------------------------------------------------------------------- /Source/LBase_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LBase_inh.h -------------------------------------------------------------------------------- /Source/LButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LButton.cpp -------------------------------------------------------------------------------- /Source/LButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LButton.h -------------------------------------------------------------------------------- /Source/LButton_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LButton_inh.h -------------------------------------------------------------------------------- /Source/LCallOutBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LCallOutBox.cpp -------------------------------------------------------------------------------- /Source/LCallOutBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LCallOutBox.h -------------------------------------------------------------------------------- /Source/LCallOutBox_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LCallOutBox_inh.h -------------------------------------------------------------------------------- /Source/LColour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LColour.cpp -------------------------------------------------------------------------------- /Source/LColour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LColour.h -------------------------------------------------------------------------------- /Source/LColour_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LColour_inh.h -------------------------------------------------------------------------------- /Source/LComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LComboBox.cpp -------------------------------------------------------------------------------- /Source/LComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LComboBox.h -------------------------------------------------------------------------------- /Source/LComboBox_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LComboBox_inh.h -------------------------------------------------------------------------------- /Source/LComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LComponent.cpp -------------------------------------------------------------------------------- /Source/LComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LComponent.h -------------------------------------------------------------------------------- /Source/LComponent_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LComponent_inh.h -------------------------------------------------------------------------------- /Source/LComponent_inh.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LComponent_inh.list -------------------------------------------------------------------------------- /Source/LConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LConstants.h -------------------------------------------------------------------------------- /Source/LDocumentWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LDocumentWindow.cpp -------------------------------------------------------------------------------- /Source/LDocumentWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LDocumentWindow.h -------------------------------------------------------------------------------- /Source/LDocumentWindow_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LDocumentWindow_inh.h -------------------------------------------------------------------------------- /Source/LFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LFont.cpp -------------------------------------------------------------------------------- /Source/LFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LFont.h -------------------------------------------------------------------------------- /Source/LFont_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LFont_inh.h -------------------------------------------------------------------------------- /Source/LHighResolutionTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LHighResolutionTimer.cpp -------------------------------------------------------------------------------- /Source/LHighResolutionTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LHighResolutionTimer.h -------------------------------------------------------------------------------- /Source/LHighResolutionTimer_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LHighResolutionTimer_inh.h -------------------------------------------------------------------------------- /Source/LHyperlinkButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LHyperlinkButton.cpp -------------------------------------------------------------------------------- /Source/LHyperlinkButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LHyperlinkButton.h -------------------------------------------------------------------------------- /Source/LHyperlinkButton_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LHyperlinkButton_inh.h -------------------------------------------------------------------------------- /Source/LImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LImage.cpp -------------------------------------------------------------------------------- /Source/LImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LImage.h -------------------------------------------------------------------------------- /Source/LImageButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LImageButton.cpp -------------------------------------------------------------------------------- /Source/LImageButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LImageButton.h -------------------------------------------------------------------------------- /Source/LImageButton_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LImageButton_inh.h -------------------------------------------------------------------------------- /Source/LImage_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LImage_inh.h -------------------------------------------------------------------------------- /Source/LInputFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LInputFilter.cpp -------------------------------------------------------------------------------- /Source/LInputFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LInputFilter.h -------------------------------------------------------------------------------- /Source/LInputFilter_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LInputFilter_inh.h -------------------------------------------------------------------------------- /Source/LJComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LJComponent.cpp -------------------------------------------------------------------------------- /Source/LJComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LJComponent.h -------------------------------------------------------------------------------- /Source/LJComponent_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LJComponent_inh.h -------------------------------------------------------------------------------- /Source/LJUCEApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LJUCEApplication.cpp -------------------------------------------------------------------------------- /Source/LJUCEApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LJUCEApplication.h -------------------------------------------------------------------------------- /Source/LJUCEApplication_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LJUCEApplication_inh.h -------------------------------------------------------------------------------- /Source/LKeyPress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LKeyPress.cpp -------------------------------------------------------------------------------- /Source/LKeyPress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LKeyPress.h -------------------------------------------------------------------------------- /Source/LKeyPress_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LKeyPress_inh.h -------------------------------------------------------------------------------- /Source/LLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LLabel.cpp -------------------------------------------------------------------------------- /Source/LLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LLabel.h -------------------------------------------------------------------------------- /Source/LLabel_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LLabel_inh.h -------------------------------------------------------------------------------- /Source/LListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LListBox.cpp -------------------------------------------------------------------------------- /Source/LListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LListBox.h -------------------------------------------------------------------------------- /Source/LListBox_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LListBox_inh.h -------------------------------------------------------------------------------- /Source/LLookAndFeel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LLookAndFeel.cpp -------------------------------------------------------------------------------- /Source/LLookAndFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LLookAndFeel.h -------------------------------------------------------------------------------- /Source/LLookAndFeel_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LLookAndFeel_inh.h -------------------------------------------------------------------------------- /Source/LMainComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LMainComponent.cpp -------------------------------------------------------------------------------- /Source/LMainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LMainComponent.h -------------------------------------------------------------------------------- /Source/LMainComponent_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LMainComponent_inh.h -------------------------------------------------------------------------------- /Source/LModifierKeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LModifierKeys.cpp -------------------------------------------------------------------------------- /Source/LModifierKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LModifierKeys.h -------------------------------------------------------------------------------- /Source/LModifierKeys_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LModifierKeys_inh.h -------------------------------------------------------------------------------- /Source/LMouseEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LMouseEvent.cpp -------------------------------------------------------------------------------- /Source/LMouseEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LMouseEvent.h -------------------------------------------------------------------------------- /Source/LMouseEvent_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LMouseEvent_inh.h -------------------------------------------------------------------------------- /Source/LMouseInputSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LMouseInputSource.cpp -------------------------------------------------------------------------------- /Source/LMouseInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LMouseInputSource.h -------------------------------------------------------------------------------- /Source/LMouseInputSource_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LMouseInputSource_inh.h -------------------------------------------------------------------------------- /Source/LOpenGLComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LOpenGLComponent.cpp -------------------------------------------------------------------------------- /Source/LOpenGLComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LOpenGLComponent.h -------------------------------------------------------------------------------- /Source/LOpenGLComponent_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LOpenGLComponent_inh.h -------------------------------------------------------------------------------- /Source/LOpenGLShaderProgram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LOpenGLShaderProgram.cpp -------------------------------------------------------------------------------- /Source/LOpenGLShaderProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LOpenGLShaderProgram.h -------------------------------------------------------------------------------- /Source/LOpenGLShaderProgram_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LOpenGLShaderProgram_inh.h -------------------------------------------------------------------------------- /Source/LOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LOptions.cpp -------------------------------------------------------------------------------- /Source/LOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LOptions.h -------------------------------------------------------------------------------- /Source/LOptions_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LOptions_inh.h -------------------------------------------------------------------------------- /Source/LPopupMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LPopupMenu.cpp -------------------------------------------------------------------------------- /Source/LPopupMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LPopupMenu.h -------------------------------------------------------------------------------- /Source/LPopupMenu_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LPopupMenu_inh.h -------------------------------------------------------------------------------- /Source/LRefBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LRefBase.h -------------------------------------------------------------------------------- /Source/LScrollBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LScrollBar.cpp -------------------------------------------------------------------------------- /Source/LScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LScrollBar.h -------------------------------------------------------------------------------- /Source/LScrollBar_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LScrollBar_inh.h -------------------------------------------------------------------------------- /Source/LSelfKill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LSelfKill.cpp -------------------------------------------------------------------------------- /Source/LSelfKill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LSelfKill.h -------------------------------------------------------------------------------- /Source/LSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LSlider.cpp -------------------------------------------------------------------------------- /Source/LSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LSlider.h -------------------------------------------------------------------------------- /Source/LSlider_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LSlider_inh.h -------------------------------------------------------------------------------- /Source/LSourceDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LSourceDetails.cpp -------------------------------------------------------------------------------- /Source/LSourceDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LSourceDetails.h -------------------------------------------------------------------------------- /Source/LSourceDetails_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LSourceDetails_inh.h -------------------------------------------------------------------------------- /Source/LStretchableLayoutManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LStretchableLayoutManager.cpp -------------------------------------------------------------------------------- /Source/LStretchableLayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LStretchableLayoutManager.h -------------------------------------------------------------------------------- /Source/LStretchableLayoutManager_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LStretchableLayoutManager_inh.h -------------------------------------------------------------------------------- /Source/LStretchableLayoutResizerBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LStretchableLayoutResizerBar.cpp -------------------------------------------------------------------------------- /Source/LStretchableLayoutResizerBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LStretchableLayoutResizerBar.h -------------------------------------------------------------------------------- /Source/LStretchableLayoutResizerBar_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LStretchableLayoutResizerBar_inh.h -------------------------------------------------------------------------------- /Source/LSystemTrayIconComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LSystemTrayIconComponent.cpp -------------------------------------------------------------------------------- /Source/LSystemTrayIconComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LSystemTrayIconComponent.h -------------------------------------------------------------------------------- /Source/LSystemTrayIconComponent_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LSystemTrayIconComponent_inh.h -------------------------------------------------------------------------------- /Source/LTextButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LTextButton.cpp -------------------------------------------------------------------------------- /Source/LTextButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LTextButton.h -------------------------------------------------------------------------------- /Source/LTextButton_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LTextButton_inh.h -------------------------------------------------------------------------------- /Source/LTextEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LTextEditor.cpp -------------------------------------------------------------------------------- /Source/LTextEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LTextEditor.h -------------------------------------------------------------------------------- /Source/LTextEditor_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LTextEditor_inh.h -------------------------------------------------------------------------------- /Source/LTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LTimer.cpp -------------------------------------------------------------------------------- /Source/LTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LTimer.h -------------------------------------------------------------------------------- /Source/LTimer_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LTimer_inh.h -------------------------------------------------------------------------------- /Source/LToggleButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LToggleButton.cpp -------------------------------------------------------------------------------- /Source/LToggleButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LToggleButton.h -------------------------------------------------------------------------------- /Source/LToggleButton_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LToggleButton_inh.h -------------------------------------------------------------------------------- /Source/LTreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LTreeView.cpp -------------------------------------------------------------------------------- /Source/LTreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LTreeView.h -------------------------------------------------------------------------------- /Source/LTreeViewItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LTreeViewItem.cpp -------------------------------------------------------------------------------- /Source/LTreeViewItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LTreeViewItem.h -------------------------------------------------------------------------------- /Source/LTreeViewItem_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LTreeViewItem_inh.h -------------------------------------------------------------------------------- /Source/LTreeView_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LTreeView_inh.h -------------------------------------------------------------------------------- /Source/LViewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LViewport.cpp -------------------------------------------------------------------------------- /Source/LViewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LViewport.h -------------------------------------------------------------------------------- /Source/LViewport_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LViewport_inh.h -------------------------------------------------------------------------------- /Source/LuaO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LuaO.hpp -------------------------------------------------------------------------------- /Source/LuaO_Common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LuaO_Common.hpp -------------------------------------------------------------------------------- /Source/LuceO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/LuceO.hpp -------------------------------------------------------------------------------- /Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/Main.cpp -------------------------------------------------------------------------------- /Source/MainThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/MainThread.cpp -------------------------------------------------------------------------------- /Source/MainThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/MainThread.h -------------------------------------------------------------------------------- /Source/MyLookAndFeel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/MyLookAndFeel.cpp -------------------------------------------------------------------------------- /Source/MyLookAndFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/MyLookAndFeel.h -------------------------------------------------------------------------------- /Source/audio/LAudioAppComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/audio/LAudioAppComponent.cpp -------------------------------------------------------------------------------- /Source/audio/LAudioAppComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/audio/LAudioAppComponent.h -------------------------------------------------------------------------------- /Source/audio/LAudioAppComponent_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/audio/LAudioAppComponent_inh.h -------------------------------------------------------------------------------- /Source/audio/LAudioAppComponent_old_wip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/audio/LAudioAppComponent_old_wip.cpp -------------------------------------------------------------------------------- /Source/audio/LAudioAppComponent_old_wip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/audio/LAudioAppComponent_old_wip.h -------------------------------------------------------------------------------- /Source/audio/LAudioAppComponent_wip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/audio/LAudioAppComponent_wip.cpp -------------------------------------------------------------------------------- /Source/audio/LAudioAppComponent_wip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/audio/LAudioAppComponent_wip.h -------------------------------------------------------------------------------- /Source/audio/LAudioSampleBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/audio/LAudioSampleBuffer.cpp -------------------------------------------------------------------------------- /Source/audio/LAudioSampleBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/audio/LAudioSampleBuffer.h -------------------------------------------------------------------------------- /Source/audio/LAudioSampleBuffer_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/audio/LAudioSampleBuffer_inh.h -------------------------------------------------------------------------------- /Source/base/LBigInteger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/base/LBigInteger.cpp -------------------------------------------------------------------------------- /Source/base/LBigInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/base/LBigInteger.h -------------------------------------------------------------------------------- /Source/base/LBigInteger_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/base/LBigInteger_inh.h -------------------------------------------------------------------------------- /Source/base/LConnectionPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/base/LConnectionPool.cpp -------------------------------------------------------------------------------- /Source/base/LConnectionPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/base/LConnectionPool.h -------------------------------------------------------------------------------- /Source/base/LConnectionPool_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/base/LConnectionPool_inh.h -------------------------------------------------------------------------------- /Source/base/LInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/base/LInputStream.cpp -------------------------------------------------------------------------------- /Source/base/LInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/base/LInputStream.h -------------------------------------------------------------------------------- /Source/base/LInputStream_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/base/LInputStream_inh.h -------------------------------------------------------------------------------- /Source/base/LPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/base/LPointer.h -------------------------------------------------------------------------------- /Source/base/LRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/base/LRandom.cpp -------------------------------------------------------------------------------- /Source/base/LRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/base/LRandom.h -------------------------------------------------------------------------------- /Source/base/LRandom_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/base/LRandom_inh.h -------------------------------------------------------------------------------- /Source/base/LTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/base/LTime.cpp -------------------------------------------------------------------------------- /Source/base/LTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/base/LTime.h -------------------------------------------------------------------------------- /Source/base/LTime_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/base/LTime_inh.h -------------------------------------------------------------------------------- /Source/base/LURL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/base/LURL.cpp -------------------------------------------------------------------------------- /Source/base/LURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/base/LURL.h -------------------------------------------------------------------------------- /Source/base/LURL_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/base/LURL_inh.h -------------------------------------------------------------------------------- /Source/create_inh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/create_inh.sh -------------------------------------------------------------------------------- /Source/drawable/LDrawable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/drawable/LDrawable.cpp -------------------------------------------------------------------------------- /Source/drawable/LDrawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/drawable/LDrawable.h -------------------------------------------------------------------------------- /Source/drawable/LDrawableComposite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/drawable/LDrawableComposite.cpp -------------------------------------------------------------------------------- /Source/drawable/LDrawableComposite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/drawable/LDrawableComposite.h -------------------------------------------------------------------------------- /Source/drawable/LDrawableComposite_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/drawable/LDrawableComposite_inh.h -------------------------------------------------------------------------------- /Source/drawable/LDrawablePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/drawable/LDrawablePath.cpp -------------------------------------------------------------------------------- /Source/drawable/LDrawablePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/drawable/LDrawablePath.h -------------------------------------------------------------------------------- /Source/drawable/LDrawablePath_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/drawable/LDrawablePath_inh.h -------------------------------------------------------------------------------- /Source/drawable/LDrawableRectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/drawable/LDrawableRectangle.cpp -------------------------------------------------------------------------------- /Source/drawable/LDrawableRectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/drawable/LDrawableRectangle.h -------------------------------------------------------------------------------- /Source/drawable/LDrawableRectangle_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/drawable/LDrawableRectangle_inh.h -------------------------------------------------------------------------------- /Source/drawable/LDrawableShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/drawable/LDrawableShape.cpp -------------------------------------------------------------------------------- /Source/drawable/LDrawableShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/drawable/LDrawableShape.h -------------------------------------------------------------------------------- /Source/drawable/LDrawableShape_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/drawable/LDrawableShape_inh.h -------------------------------------------------------------------------------- /Source/drawable/LDrawableShape_inh.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/drawable/LDrawableShape_inh.h.in -------------------------------------------------------------------------------- /Source/drawable/LDrawable_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/drawable/LDrawable_inh.h -------------------------------------------------------------------------------- /Source/drawable/LDrawable_inh.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/drawable/LDrawable_inh.h.in -------------------------------------------------------------------------------- /Source/extra/LColourSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/extra/LColourSelector.cpp -------------------------------------------------------------------------------- /Source/extra/LColourSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/extra/LColourSelector.h -------------------------------------------------------------------------------- /Source/extra/LColourSelector_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/extra/LColourSelector_inh.h -------------------------------------------------------------------------------- /Source/extra/LFileChooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/extra/LFileChooser.cpp -------------------------------------------------------------------------------- /Source/extra/LFileChooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/extra/LFileChooser.h -------------------------------------------------------------------------------- /Source/extra/LFileChooser_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/extra/LFileChooser_inh.h -------------------------------------------------------------------------------- /Source/graphics/LAttribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LAttribute.cpp -------------------------------------------------------------------------------- /Source/graphics/LAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LAttribute.h -------------------------------------------------------------------------------- /Source/graphics/LAttribute_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LAttribute_inh.h -------------------------------------------------------------------------------- /Source/graphics/LAttributedString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LAttributedString.cpp -------------------------------------------------------------------------------- /Source/graphics/LAttributedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LAttributedString.h -------------------------------------------------------------------------------- /Source/graphics/LAttributedString_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LAttributedString_inh.h -------------------------------------------------------------------------------- /Source/graphics/LColourGradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LColourGradient.cpp -------------------------------------------------------------------------------- /Source/graphics/LColourGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LColourGradient.h -------------------------------------------------------------------------------- /Source/graphics/LColourGradient_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LColourGradient_inh.h -------------------------------------------------------------------------------- /Source/graphics/LFillType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LFillType.cpp -------------------------------------------------------------------------------- /Source/graphics/LFillType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LFillType.h -------------------------------------------------------------------------------- /Source/graphics/LFillType_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LFillType_inh.h -------------------------------------------------------------------------------- /Source/graphics/LGlyph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LGlyph.cpp -------------------------------------------------------------------------------- /Source/graphics/LGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LGlyph.h -------------------------------------------------------------------------------- /Source/graphics/LGlyphArrangement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LGlyphArrangement.cpp -------------------------------------------------------------------------------- /Source/graphics/LGlyphArrangement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LGlyphArrangement.h -------------------------------------------------------------------------------- /Source/graphics/LGlyphArrangement_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LGlyphArrangement_inh.h -------------------------------------------------------------------------------- /Source/graphics/LGlyph_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LGlyph_inh.h -------------------------------------------------------------------------------- /Source/graphics/LGraphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LGraphics.cpp -------------------------------------------------------------------------------- /Source/graphics/LGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LGraphics.h -------------------------------------------------------------------------------- /Source/graphics/LGraphics_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LGraphics_inh.h -------------------------------------------------------------------------------- /Source/graphics/LLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LLine.cpp -------------------------------------------------------------------------------- /Source/graphics/LLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LLine.h -------------------------------------------------------------------------------- /Source/graphics/LLine_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LLine_inh.h -------------------------------------------------------------------------------- /Source/graphics/LPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LPath.cpp -------------------------------------------------------------------------------- /Source/graphics/LPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LPath.h -------------------------------------------------------------------------------- /Source/graphics/LPathStrokeType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LPathStrokeType.cpp -------------------------------------------------------------------------------- /Source/graphics/LPathStrokeType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LPathStrokeType.h -------------------------------------------------------------------------------- /Source/graphics/LPathStrokeType_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LPathStrokeType_inh.h -------------------------------------------------------------------------------- /Source/graphics/LPath_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LPath_inh.h -------------------------------------------------------------------------------- /Source/graphics/LPositionedGlyph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LPositionedGlyph.cpp -------------------------------------------------------------------------------- /Source/graphics/LPositionedGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LPositionedGlyph.h -------------------------------------------------------------------------------- /Source/graphics/LPositionedGlyph_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LPositionedGlyph_inh.h -------------------------------------------------------------------------------- /Source/graphics/LRun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LRun.cpp -------------------------------------------------------------------------------- /Source/graphics/LRun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LRun.h -------------------------------------------------------------------------------- /Source/graphics/LRun_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LRun_inh.h -------------------------------------------------------------------------------- /Source/graphics/LTextLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LTextLayout.cpp -------------------------------------------------------------------------------- /Source/graphics/LTextLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LTextLayout.h -------------------------------------------------------------------------------- /Source/graphics/LTextLayout_inh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/graphics/LTextLayout_inh.h -------------------------------------------------------------------------------- /Source/inh_tmpl.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/inh_tmpl.h.in -------------------------------------------------------------------------------- /Source/lua/luce.lua: -------------------------------------------------------------------------------- 1 | return require"luce.init" 2 | -------------------------------------------------------------------------------- /Source/lua/luce/LAffineTransform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/lua/luce/LAffineTransform.lua -------------------------------------------------------------------------------- /Source/lua/luce/LAnimatedPosition.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/lua/luce/LAnimatedPosition.lua -------------------------------------------------------------------------------- /Source/lua/luce/LApplication.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/lua/luce/LApplication.lua -------------------------------------------------------------------------------- /Source/lua/luce/LClass.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/lua/luce/LClass.lua -------------------------------------------------------------------------------- /Source/lua/luce/LCommon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/lua/luce/LCommon.lua -------------------------------------------------------------------------------- /Source/lua/luce/LDocument.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/lua/luce/LDocument.lua -------------------------------------------------------------------------------- /Source/lua/luce/LEventCentral.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/lua/luce/LEventCentral.lua -------------------------------------------------------------------------------- /Source/lua/luce/LImageComponent.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/lua/luce/LImageComponent.lua -------------------------------------------------------------------------------- /Source/lua/luce/LLine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/lua/luce/LLine.lua -------------------------------------------------------------------------------- /Source/lua/luce/LPoint.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/lua/luce/LPoint.lua -------------------------------------------------------------------------------- /Source/lua/luce/LRange.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/lua/luce/LRange.lua -------------------------------------------------------------------------------- /Source/lua/luce/LRectangle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/lua/luce/LRectangle.lua -------------------------------------------------------------------------------- /Source/lua/luce/LRectangleList.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/lua/luce/LRectangleList.lua -------------------------------------------------------------------------------- /Source/lua/luce/LRectanglePlacement.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/lua/luce/LRectanglePlacement.lua -------------------------------------------------------------------------------- /Source/lua/luce/bit/numberlua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/lua/luce/bit/numberlua.lua -------------------------------------------------------------------------------- /Source/lua/luce/deepcopy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/lua/luce/deepcopy.lua -------------------------------------------------------------------------------- /Source/lua/luce/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/lua/luce/init.lua -------------------------------------------------------------------------------- /Source/lua/luce_template.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/lua/luce_template.lua -------------------------------------------------------------------------------- /Source/luce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/luce.cpp -------------------------------------------------------------------------------- /Source/luce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/luce.h -------------------------------------------------------------------------------- /Source/luce.mm: -------------------------------------------------------------------------------- 1 | #include "luce.cpp" 2 | -------------------------------------------------------------------------------- /Source/luce_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/luce_audio.cpp -------------------------------------------------------------------------------- /Source/luce_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/luce_audio.h -------------------------------------------------------------------------------- /Source/luna5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/luna5.h -------------------------------------------------------------------------------- /Source/mingw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/Source/mingw.h -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/TODO -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | luce.lua 2 | luce/ 3 | -------------------------------------------------------------------------------- /examples/2DGraphics/2DDemo.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/2DGraphics/2DDemo.app/Contents/Info.plist -------------------------------------------------------------------------------- /examples/2DGraphics/2DDemo.app/Contents/MacOS/LaunchLuce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/2DGraphics/2DDemo.app/Contents/MacOS/LaunchLuce -------------------------------------------------------------------------------- /examples/2DGraphics/2DDemo.app/Contents/MacOS/app.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/2DGraphics/2DDemo.app/Contents/MacOS/app.lua -------------------------------------------------------------------------------- /examples/2DGraphics/2DDemo.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLLUCE 2 | -------------------------------------------------------------------------------- /examples/2DGraphics/2DDemo.app/Contents/Resources/DemoHolder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/2DGraphics/2DDemo.app/Contents/Resources/DemoHolder.lua -------------------------------------------------------------------------------- /examples/2DGraphics/2DDemo.app/Contents/Resources/GlyphDemo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/2DGraphics/2DDemo.app/Contents/Resources/GlyphDemo.lua -------------------------------------------------------------------------------- /examples/2DGraphics/2DDemo.app/Contents/Resources/LinesDemo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/2DGraphics/2DDemo.app/Contents/Resources/LinesDemo.lua -------------------------------------------------------------------------------- /examples/2DGraphics/2DDemoLines.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/2DGraphics/2DDemoLines.app/Contents/Info.plist -------------------------------------------------------------------------------- /examples/2DGraphics/2DDemoLines.app/Contents/MacOS/LaunchLuce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/2DGraphics/2DDemoLines.app/Contents/MacOS/LaunchLuce -------------------------------------------------------------------------------- /examples/2DGraphics/2DDemoLines.app/Contents/MacOS/app.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/2DGraphics/2DDemoLines.app/Contents/MacOS/app.lua -------------------------------------------------------------------------------- /examples/2DGraphics/2DDemoLines.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLLUCE 2 | -------------------------------------------------------------------------------- /examples/2DGraphics/Demo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/2DGraphics/Demo.lua -------------------------------------------------------------------------------- /examples/2DGraphics/DemoHolder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/2DGraphics/DemoHolder.lua -------------------------------------------------------------------------------- /examples/2DGraphics/GlyphDemo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/2DGraphics/GlyphDemo.lua -------------------------------------------------------------------------------- /examples/2DGraphics/GraphicsDemoBase.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/2DGraphics/GraphicsDemoBase.lua -------------------------------------------------------------------------------- /examples/2DGraphics/LinesDemo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/2DGraphics/LinesDemo.lua -------------------------------------------------------------------------------- /examples/2DGraphics/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/2DGraphics/README -------------------------------------------------------------------------------- /examples/Audio/AudioNoise.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/Audio/AudioNoise.lua -------------------------------------------------------------------------------- /examples/Audio/AudioSine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/Audio/AudioSine.lua -------------------------------------------------------------------------------- /examples/Audio/AudioSineBasic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/Audio/AudioSineBasic.lua -------------------------------------------------------------------------------- /examples/Audio/AudioSineNativeVolume.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/Audio/AudioSineNativeVolume.lua -------------------------------------------------------------------------------- /examples/DropFiles/DropFiles.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/DropFiles/DropFiles.app/Contents/Info.plist -------------------------------------------------------------------------------- /examples/DropFiles/DropFiles.app/Contents/MacOS/LaunchLuce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/DropFiles/DropFiles.app/Contents/MacOS/LaunchLuce -------------------------------------------------------------------------------- /examples/DropFiles/DropFiles.app/Contents/MacOS/app.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/DropFiles/DropFiles.app/Contents/MacOS/app.lua -------------------------------------------------------------------------------- /examples/DropFiles/DropFiles.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLLUCE 2 | -------------------------------------------------------------------------------- /examples/DropFiles/DropFiles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/DropFiles/DropFiles.lua -------------------------------------------------------------------------------- /examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/README.rst -------------------------------------------------------------------------------- /examples/TreeView_JSON/TreeViewJSON.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/TreeView_JSON/TreeViewJSON.app/Contents/Info.plist -------------------------------------------------------------------------------- /examples/TreeView_JSON/TreeViewJSON.app/Contents/MacOS/LaunchLuce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/TreeView_JSON/TreeViewJSON.app/Contents/MacOS/LaunchLuce -------------------------------------------------------------------------------- /examples/TreeView_JSON/TreeViewJSON.app/Contents/MacOS/app.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/TreeView_JSON/TreeViewJSON.app/Contents/MacOS/app.lua -------------------------------------------------------------------------------- /examples/TreeView_JSON/TreeViewJSON.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLLUCE 2 | -------------------------------------------------------------------------------- /examples/TreeView_JSON/assets/json_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/TreeView_JSON/assets/json_sample.json -------------------------------------------------------------------------------- /examples/TreeView_JSON/classes/LItem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/TreeView_JSON/classes/LItem.lua -------------------------------------------------------------------------------- /examples/TreeView_JSON/classes/LJSONTreeViewItem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/TreeView_JSON/classes/LJSONTreeViewItem.lua -------------------------------------------------------------------------------- /examples/TreeView_JSON/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/TreeView_JSON/main.lua -------------------------------------------------------------------------------- /examples/TreeView_XML/TreeViewXML.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/TreeView_XML/TreeViewXML.app/Contents/Info.plist -------------------------------------------------------------------------------- /examples/TreeView_XML/TreeViewXML.app/Contents/MacOS/LaunchLuce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/TreeView_XML/TreeViewXML.app/Contents/MacOS/LaunchLuce -------------------------------------------------------------------------------- /examples/TreeView_XML/TreeViewXML.app/Contents/MacOS/app.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/TreeView_XML/TreeViewXML.app/Contents/MacOS/app.lua -------------------------------------------------------------------------------- /examples/TreeView_XML/TreeViewXML.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLLUCE 2 | -------------------------------------------------------------------------------- /examples/TreeView_XML/assets/cd_catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/TreeView_XML/assets/cd_catalog.xml -------------------------------------------------------------------------------- /examples/TreeView_XML/classes/LItem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/TreeView_XML/classes/LItem.lua -------------------------------------------------------------------------------- /examples/TreeView_XML/classes/XMLTreeViewItem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/TreeView_XML/classes/XMLTreeViewItem.lua -------------------------------------------------------------------------------- /examples/TreeView_XML/classes/XmlParser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/TreeView_XML/classes/XmlParser.lua -------------------------------------------------------------------------------- /examples/TreeView_XML/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/TreeView_XML/main.lua -------------------------------------------------------------------------------- /examples/demo/Demo.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/demo/Demo.app/Contents/Info.plist -------------------------------------------------------------------------------- /examples/demo/Demo.app/Contents/MacOS/LaunchLuce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/demo/Demo.app/Contents/MacOS/LaunchLuce -------------------------------------------------------------------------------- /examples/demo/Demo.app/Contents/MacOS/app.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/demo/Demo.app/Contents/MacOS/app.lua -------------------------------------------------------------------------------- /examples/demo/Demo.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLLUCE 2 | -------------------------------------------------------------------------------- /examples/demo/DemoAnimated.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/demo/DemoAnimated.app/Contents/Info.plist -------------------------------------------------------------------------------- /examples/demo/DemoAnimated.app/Contents/MacOS/LaunchLuce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/demo/DemoAnimated.app/Contents/MacOS/LaunchLuce -------------------------------------------------------------------------------- /examples/demo/DemoAnimated.app/Contents/MacOS/app.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/demo/DemoAnimated.app/Contents/MacOS/app.lua -------------------------------------------------------------------------------- /examples/demo/DemoAnimated.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLLUCE 2 | -------------------------------------------------------------------------------- /examples/demo/DemoHL.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/demo/DemoHL.app/Contents/Info.plist -------------------------------------------------------------------------------- /examples/demo/DemoHL.app/Contents/MacOS/LaunchLuce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/demo/DemoHL.app/Contents/MacOS/LaunchLuce -------------------------------------------------------------------------------- /examples/demo/DemoHL.app/Contents/MacOS/app.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/demo/DemoHL.app/Contents/MacOS/app.lua -------------------------------------------------------------------------------- /examples/demo/DemoHL.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLLUCE 2 | -------------------------------------------------------------------------------- /examples/demo/demo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/demo/demo.lua -------------------------------------------------------------------------------- /examples/demo/demoAnimated.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/demo/demoAnimated.lua -------------------------------------------------------------------------------- /examples/demo/demoHL.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/examples/demo/demoHL.lua -------------------------------------------------------------------------------- /luce-scm-0.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/luce-scm-0.rockspec -------------------------------------------------------------------------------- /luce-scm52-0.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/luce-scm52-0.rockspec -------------------------------------------------------------------------------- /luce-scm53-0.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/luce-scm53-0.rockspec -------------------------------------------------------------------------------- /luce.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/luce.jucer -------------------------------------------------------------------------------- /mingw_far_near.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peersuasive/luce/HEAD/mingw_far_near.patch --------------------------------------------------------------------------------