389309c add JUCE sources

Authored and Committed by billauger 5 years ago
1172 files changed. 486504 lines added. 14 lines removed.
.gitignore
file modified
+1 -1
Builds/Makefile/Makefile
file modified
+2 -2
JuceBoilerplate.jucer
file modified
+11 -11
JuceLibraryCode/modules/juce_audio_basics/audio_play_head/juce_AudioPlayHead.h
file added
+157
JuceLibraryCode/modules/juce_audio_basics/buffers/juce_AudioChannelSet.cpp
file added
+586
JuceLibraryCode/modules/juce_audio_basics/buffers/juce_AudioChannelSet.h
file added
+470
JuceLibraryCode/modules/juce_audio_basics/buffers/juce_AudioDataConverters.cpp
file added
+603
JuceLibraryCode/modules/juce_audio_basics/buffers/juce_AudioDataConverters.h
file added
+716
JuceLibraryCode/modules/juce_audio_basics/buffers/juce_AudioSampleBuffer.h
file added
+1136
JuceLibraryCode/modules/juce_audio_basics/buffers/juce_FloatVectorOperations.cpp
file added
+1302
JuceLibraryCode/modules/juce_audio_basics/buffers/juce_FloatVectorOperations.h
file added
+257
JuceLibraryCode/modules/juce_audio_basics/effects/juce_CatmullRomInterpolator.cpp
file added
+75
JuceLibraryCode/modules/juce_audio_basics/effects/juce_CatmullRomInterpolator.h
file added
+143
JuceLibraryCode/modules/juce_audio_basics/effects/juce_Decibels.h
file added
+112
JuceLibraryCode/modules/juce_audio_basics/effects/juce_IIRFilter.cpp
file added
+336
JuceLibraryCode/modules/juce_audio_basics/effects/juce_IIRFilter.h
file added
+217
JuceLibraryCode/modules/juce_audio_basics/effects/juce_LagrangeInterpolator.cpp
file added
+459
JuceLibraryCode/modules/juce_audio_basics/effects/juce_LagrangeInterpolator.h
file added
+143
JuceLibraryCode/modules/juce_audio_basics/effects/juce_LinearSmoothedValue.h
file added
+215
JuceLibraryCode/modules/juce_audio_basics/effects/juce_Reverb.h
file added
+322
JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.cpp
file added
+85
JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h
file added
+119
JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.mm
file added
+23
JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.cpp
file added
+230
JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.h
file added
+237
JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.cpp
file added
+443
JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.h
file added
+189
JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiKeyboardState.cpp
file added
+186
JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiKeyboardState.h
file added
+206
JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.cpp
file added
+1137
JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.h
file added
+952
JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessageSequence.cpp
file added
+405
JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessageSequence.h
file added
+300
JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.cpp
file added
+376
JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.h
file added
+154
JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.cpp
file added
+2212
JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.h
file added
+398
JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.cpp
file added
+238
JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.h
file added
+116
JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.cpp
file added
+124
JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.h
file added
+184
JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiser.cpp
file added
+327
JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiser.h
file added
+311
JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiserBase.cpp
file added
+180
JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiserBase.h
file added
+210
JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiserVoice.cpp
file added
+55
JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiserVoice.h
file added
+190
JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEUtils.cpp
file added
+478
JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEUtils.h
file added
+150
JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.cpp
file added
+170
JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.h
file added
+97
JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.cpp
file added
+387
JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h
file added
+226
JuceLibraryCode/modules/juce_audio_basics/native/juce_mac_CoreAudioLayouts.h
file added
+330
JuceLibraryCode/modules/juce_audio_basics/sources/juce_AudioSource.h
file added
+181
JuceLibraryCode/modules/juce_audio_basics/sources/juce_BufferingAudioSource.cpp
file added
+315
JuceLibraryCode/modules/juce_audio_basics/sources/juce_BufferingAudioSource.h
file added
+119
JuceLibraryCode/modules/juce_audio_basics/sources/juce_ChannelRemappingAudioSource.cpp
file added
+187
JuceLibraryCode/modules/juce_audio_basics/sources/juce_ChannelRemappingAudioSource.h
file added
+141
JuceLibraryCode/modules/juce_audio_basics/sources/juce_IIRFilterAudioSource.cpp
file added
+80
JuceLibraryCode/modules/juce_audio_basics/sources/juce_IIRFilterAudioSource.h
file added
+68
JuceLibraryCode/modules/juce_audio_basics/sources/juce_MemoryAudioSource.cpp
file added
+70
JuceLibraryCode/modules/juce_audio_basics/sources/juce_MemoryAudioSource.h
file added
+65
JuceLibraryCode/modules/juce_audio_basics/sources/juce_MixerAudioSource.cpp
file added
+158
JuceLibraryCode/modules/juce_audio_basics/sources/juce_MixerAudioSource.h
file added
+99
JuceLibraryCode/modules/juce_audio_basics/sources/juce_PositionableAudioSource.h
file added
+76
JuceLibraryCode/modules/juce_audio_basics/sources/juce_ResamplingAudioSource.cpp
file added
+266
JuceLibraryCode/modules/juce_audio_basics/sources/juce_ResamplingAudioSource.h
file added
+105
JuceLibraryCode/modules/juce_audio_basics/sources/juce_ReverbAudioSource.cpp
file added
+83
JuceLibraryCode/modules/juce_audio_basics/sources/juce_ReverbAudioSource.h
file added
+74
JuceLibraryCode/modules/juce_audio_basics/sources/juce_ToneGeneratorAudioSource.cpp
file added
+78
JuceLibraryCode/modules/juce_audio_basics/sources/juce_ToneGeneratorAudioSource.h
file added
+71
JuceLibraryCode/modules/juce_audio_basics/synthesisers/juce_Synthesiser.cpp
file added
+574
JuceLibraryCode/modules/juce_audio_basics/synthesisers/juce_Synthesiser.h
file added
+659
JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.cpp
file added
+1002
JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.h
file added
+541
JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioIODevice.cpp
file added
+45
JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioIODevice.h
file added
+325
JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioIODeviceType.cpp
file added
+89
JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_AudioIODeviceType.h
file added
+184
JuceLibraryCode/modules/juce_audio_devices/audio_io/juce_SystemAudioVolume.h
file added
+59
JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.cpp
file added
+246
JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h
file added
+189
JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.mm
file added
+23
JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiInput.h
file added
+180
JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiMessageCollector.cpp
file added
+158
JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiMessageCollector.h
file added
+105
JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiOutput.cpp
file added
+170
JuceLibraryCode/modules/juce_audio_devices/midi_io/juce_MidiOutput.h
file added
+145
JuceLibraryCode/modules/juce_audio_devices/native/juce_MidiDataConcatenator.h
file added
+193
JuceLibraryCode/modules/juce_audio_devices/native/juce_android_Audio.cpp
file added
+503
JuceLibraryCode/modules/juce_audio_devices/native/juce_android_Midi.cpp
file added
+348
JuceLibraryCode/modules/juce_audio_devices/native/juce_android_Oboe.cpp
file added
+1490
JuceLibraryCode/modules/juce_audio_devices/native/juce_android_OpenSL.cpp
file added
+1379
JuceLibraryCode/modules/juce_audio_devices/native/juce_ios_Audio.cpp
file added
+1444
JuceLibraryCode/modules/juce_audio_devices/native/juce_ios_Audio.h
file added
+93
JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_ALSA.cpp
file added
+1307
JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_Bela.cpp
file added
+373
JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_JackAudio.cpp
file added
+624
JuceLibraryCode/modules/juce_audio_devices/native/juce_linux_Midi.cpp
file added
+598
JuceLibraryCode/modules/juce_audio_devices/native/juce_mac_CoreAudio.cpp
file added
+2246
JuceLibraryCode/modules/juce_audio_devices/native/juce_mac_CoreMidi.cpp
file added
+594
JuceLibraryCode/modules/juce_audio_devices/native/juce_win32_ASIO.cpp
file added
+1607
JuceLibraryCode/modules/juce_audio_devices/native/juce_win32_DirectSound.cpp
file added
+1292
JuceLibraryCode/modules/juce_audio_devices/native/juce_win32_Midi.cpp
file added
+1318
JuceLibraryCode/modules/juce_audio_devices/native/juce_win32_WASAPI.cpp
file added
+1723
JuceLibraryCode/modules/juce_audio_devices/sources/juce_AudioSourcePlayer.cpp
file added
+180
JuceLibraryCode/modules/juce_audio_devices/sources/juce_AudioSourcePlayer.h
file added
+113
JuceLibraryCode/modules/juce_audio_devices/sources/juce_AudioTransportSource.cpp
file added
+286
JuceLibraryCode/modules/juce_audio_devices/sources/juce_AudioTransportSource.h
file added
+180
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/Flac Licence.txt
file added
+49
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/all.h
file added
+371
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/alloc.h
file added
+212
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/assert.h
file added
+49
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/callback.h
file added
+188
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/compat.h
file added
+167
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/endswap.h
file added
+80
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/export.h
file added
+97
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/format.h
file added
+1025
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/bitmath.c
file added
+109
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/bitreader.c
file added
+1058
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/bitwriter.c
file added
+842
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c
file added
+494
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/crc.c
file added
+143
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/fixed.c
file added
+418
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/float.c
file added
+302
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/format.c
file added
+584
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/include/private/all.h
file added
+50
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/include/private/bitmath.h
file added
+186
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/include/private/bitreader.h
file added
+91
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/include/private/bitwriter.h
file added
+104
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/include/private/cpu.h
file added
+99
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/include/private/crc.h
file added
+62
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/include/private/fixed.h
file added
+107
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/include/private/float.h
file added
+98
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/include/private/format.h
file added
+45
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/include/private/lpc.h
file added
+246
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/include/private/md5.h
file added
+50
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/include/private/memory.h
file added
+58
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/include/private/metadata.h
file added
+46
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/include/private/stream_encoder.h
file added
+67
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/include/private/stream_encoder_framing.h
file added
+46
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/include/private/window.h
file added
+74
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/include/protected/all.h
file added
+39
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/include/protected/stream_decoder.h
file added
+60
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/include/protected/stream_encoder.h
file added
+118
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/lpc_flac.c
file added
+1356
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/md5.c
file added
+518
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/memory.c
file added
+218
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/stream_decoder.c
file added
+3395
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/stream_encoder.c
file added
+4527
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/stream_encoder_framing.c
file added
+549
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/libFLAC/window_flac.c
file added
+281
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/metadata.h
file added
+2181
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/ordinals.h
file added
+86
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/stream_decoder.h
file added
+1559
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/stream_encoder.h
file added
+1789
JuceLibraryCode/modules/juce_audio_formats/codecs/flac/win_utf8_io.h
file added
+64
JuceLibraryCode/modules/juce_audio_formats/codecs/juce_AiffAudioFormat.cpp
file added
+1006
JuceLibraryCode/modules/juce_audio_formats/codecs/juce_AiffAudioFormat.h
file added
+94
JuceLibraryCode/modules/juce_audio_formats/codecs/juce_CoreAudioFormat.cpp
file added
+853
JuceLibraryCode/modules/juce_audio_formats/codecs/juce_CoreAudioFormat.h
file added
+86
JuceLibraryCode/modules/juce_audio_formats/codecs/juce_FlacAudioFormat.cpp
file added
+599
JuceLibraryCode/modules/juce_audio_formats/codecs/juce_FlacAudioFormat.h
file added
+74
JuceLibraryCode/modules/juce_audio_formats/codecs/juce_LAMEEncoderAudioFormat.cpp
file added
+229
JuceLibraryCode/modules/juce_audio_formats/codecs/juce_LAMEEncoderAudioFormat.h
file added
+80
JuceLibraryCode/modules/juce_audio_formats/codecs/juce_MP3AudioFormat.cpp
file added
+3156
JuceLibraryCode/modules/juce_audio_formats/codecs/juce_MP3AudioFormat.h
file added
+73
JuceLibraryCode/modules/juce_audio_formats/codecs/juce_OggVorbisAudioFormat.cpp
file added
+520
JuceLibraryCode/modules/juce_audio_formats/codecs/juce_OggVorbisAudioFormat.h
file added
+102
JuceLibraryCode/modules/juce_audio_formats/codecs/juce_WavAudioFormat.cpp
file added
+1896
JuceLibraryCode/modules/juce_audio_formats/codecs/juce_WavAudioFormat.h
file added
+227
JuceLibraryCode/modules/juce_audio_formats/codecs/juce_WindowsMediaAudioFormat.cpp
file added
+361
JuceLibraryCode/modules/juce_audio_formats/codecs/juce_WindowsMediaAudioFormat.h
file added
+62
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/Ogg Vorbis Licence.txt
file added
+47
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/bitwise.c
file added
+788
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/codec.h
file added
+242
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/config_types.h
file added
+10
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/framing.c
file added
+1796
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/AUTHORS
file added
+3
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/CHANGES
file added
+126
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/COPYING
file added
+28
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/README
file added
+134
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/analysis.c
file added
+109
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/backends.h
file added
+144
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/bitrate.c
file added
+253
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/bitrate.h
file added
+59
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/block.c
file added
+1033
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/books/coupled/res_books_51.h
file added
+12256
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/books/coupled/res_books_stereo.h
file added
+15782
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/books/floor/floor_books.h
file added
+1546
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/books/uncoupled/res_books_uncoupled.h
file added
+7757
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/codebook.c
file added
+451
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/codebook.h
file added
+119
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/codec_internal.h
file added
+187
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/envelope.c
file added
+375
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/envelope.h
file added
+80
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/floor0.c
file added
+223
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/floor1.c
file added
+1084
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/highlevel.h
file added
+58
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/info.c
file added
+660
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lookup.c
file added
+94
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lookup.h
file added
+32
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lookup_data.h
file added
+192
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lpc.c
file added
+160
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lpc.h
file added
+29
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lsp.c
file added
+454
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/lsp.h
file added
+28
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/mapping0.c
file added
+816
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/masking.h
file added
+785
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/mdct.c
file added
+563
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/mdct.h
file added
+71
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/misc.h
file added
+53
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/floor_all.h
file added
+260
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/psych_11.h
file added
+50
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/psych_16.h
file added
+133
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/psych_44.h
file added
+642
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/psych_8.h
file added
+101
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/residue_16.h
file added
+163
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/residue_44.h
file added
+292
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/residue_44p51.h
file added
+451
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/residue_44u.h
file added
+318
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/residue_8.h
file added
+109
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_11.h
file added
+143
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_16.h
file added
+153
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_22.h
file added
+128
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_32.h
file added
+132
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_44.h
file added
+117
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_44p51.h
file added
+74
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_44u.h
file added
+74
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_8.h
file added
+149
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/modes/setup_X.h
file added
+225
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/os.h
file added
+186
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/psy.c
file added
+1205
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/psy.h
file added
+154
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/registry.c
file added
+45
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/registry.h
file added
+32
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/res0.c
file added
+891
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/scales.h
file added
+90
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/sharedbook.c
file added
+585
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/smallft.c
file added
+1255
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/smallft.h
file added
+34
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/synthesis.c
file added
+184
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/vorbisenc.c
file added
+1215
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/vorbisfile.c
file added
+2358
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/window.c
file added
+2135
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/libvorbis-1.3.2/lib/window.h
file added
+26
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/ogg.h
file added
+206
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/os_types.h
file added
+127
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/vorbisenc.h
file added
+436
JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/vorbisfile.h
file added
+205
JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormat.cpp
file added
+92
JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormat.h
file added
+219
JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatManager.cpp
file added
+166
JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatManager.h
file added
+144
JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatReader.cpp
file added
+419
JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatReader.h
file added
+308
JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatReaderSource.cpp
file added
+92
JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatReaderSource.h
file added
+102
JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatWriter.cpp
file added
+361
JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioFormatWriter.h
file added
+301
JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioSubsectionReader.cpp
file added
+73
JuceLibraryCode/modules/juce_audio_formats/format/juce_AudioSubsectionReader.h
file added
+86
JuceLibraryCode/modules/juce_audio_formats/format/juce_BufferingAudioFormatReader.cpp
file added
+180
JuceLibraryCode/modules/juce_audio_formats/format/juce_BufferingAudioFormatReader.h
file added
+96
JuceLibraryCode/modules/juce_audio_formats/format/juce_MemoryMappedAudioFormatReader.h
file added
+114
JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.cpp
file added
+74
JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h
file added
+129
JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.mm
file added
+27
JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.cpp
file added
+205
JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.h
file added
+150
JuceLibraryCode/modules/juce_audio_processors/format/juce_AudioPluginFormat.cpp
file added
+214
JuceLibraryCode/modules/juce_audio_processors/format/juce_AudioPluginFormat.h
file added
+171
JuceLibraryCode/modules/juce_audio_processors/format/juce_AudioPluginFormatManager.cpp
file added
+182
JuceLibraryCode/modules/juce_audio_processors/format/juce_AudioPluginFormatManager.h
file added
+140
JuceLibraryCode/modules/juce_audio_processors/format_types/juce_AU_Shared.h
file added
+537
JuceLibraryCode/modules/juce_audio_processors/format_types/juce_AudioUnitPluginFormat.h
file added
+81
JuceLibraryCode/modules/juce_audio_processors/format_types/juce_AudioUnitPluginFormat.mm
file added
+2833
JuceLibraryCode/modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.cpp
file added
+711
JuceLibraryCode/modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.h
file added
+72
JuceLibraryCode/modules/juce_audio_processors/format_types/juce_LegacyAudioParameter.cpp
file added
+184
JuceLibraryCode/modules/juce_audio_processors/format_types/juce_VST3Common.h
file added
+679
JuceLibraryCode/modules/juce_audio_processors/format_types/juce_VST3Headers.h
file added
+198
JuceLibraryCode/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp
file added
+3037
JuceLibraryCode/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.h
file added
+80
JuceLibraryCode/modules/juce_audio_processors/format_types/juce_VSTCommon.h
file added
+304
JuceLibraryCode/modules/juce_audio_processors/format_types/juce_VSTInterface.h
file added
+529
JuceLibraryCode/modules/juce_audio_processors/format_types/juce_VSTMidiEventList.h
file added
+193
JuceLibraryCode/modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp
file added
+3652
JuceLibraryCode/modules/juce_audio_processors/format_types/juce_VSTPluginFormat.h
file added
+134
JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.cpp
file added
+172
JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.h
file added
+133
JuceLibraryCode/modules/juce_audio_processors/juce_audio_processors.mm
file added
+27
JuceLibraryCode/modules/juce_audio_processors/processors/juce_AudioPluginInstance.cpp
file added
+249
JuceLibraryCode/modules/juce_audio_processors/processors/juce_AudioPluginInstance.h
file added
+138
JuceLibraryCode/modules/juce_audio_processors/processors/juce_AudioProcessor.cpp
file added
+1549
JuceLibraryCode/modules/juce_audio_processors/processors/juce_AudioProcessor.h
file added
+1652
JuceLibraryCode/modules/juce_audio_processors/processors/juce_AudioProcessorEditor.cpp
file added
+210
JuceLibraryCode/modules/juce_audio_processors/processors/juce_AudioProcessorEditor.h
file added
+212
JuceLibraryCode/modules/juce_audio_processors/processors/juce_AudioProcessorGraph.cpp
file added
+1505
JuceLibraryCode/modules/juce_audio_processors/processors/juce_AudioProcessorGraph.h
file added
+404
JuceLibraryCode/modules/juce_audio_processors/processors/juce_AudioProcessorListener.h
file added
+109
JuceLibraryCode/modules/juce_audio_processors/processors/juce_AudioProcessorParameter.h
file added
+304
JuceLibraryCode/modules/juce_audio_processors/processors/juce_GenericAudioProcessorEditor.cpp
file added
+557
JuceLibraryCode/modules/juce_audio_processors/processors/juce_GenericAudioProcessorEditor.h
file added
+61
JuceLibraryCode/modules/juce_audio_processors/processors/juce_PluginDescription.cpp
file added
+151
JuceLibraryCode/modules/juce_audio_processors/processors/juce_PluginDescription.h
file added
+158
JuceLibraryCode/modules/juce_audio_processors/scanning/juce_KnownPluginList.cpp
file added
+575
JuceLibraryCode/modules/juce_audio_processors/scanning/juce_KnownPluginList.h
file added
+229
JuceLibraryCode/modules/juce_audio_processors/scanning/juce_PluginDirectoryScanner.cpp
file added
+140
JuceLibraryCode/modules/juce_audio_processors/scanning/juce_PluginDirectoryScanner.h
file added
+139
JuceLibraryCode/modules/juce_audio_processors/scanning/juce_PluginListComponent.cpp
file added
+602
JuceLibraryCode/modules/juce_audio_processors/scanning/juce_PluginListComponent.h
file added
+138
JuceLibraryCode/modules/juce_audio_processors/utilities/juce_AudioParameterBool.h
file added
+94
JuceLibraryCode/modules/juce_audio_processors/utilities/juce_AudioParameterChoice.h
file added
+110
JuceLibraryCode/modules/juce_audio_processors/utilities/juce_AudioParameterFloat.h
file added
+111
JuceLibraryCode/modules/juce_audio_processors/utilities/juce_AudioParameterInt.h
file added
+107
JuceLibraryCode/modules/juce_audio_processors/utilities/juce_AudioProcessorParameterWithID.h
file added
+71
JuceLibraryCode/modules/juce_audio_processors/utilities/juce_AudioProcessorParameters.cpp
file added
+251
JuceLibraryCode/modules/juce_audio_processors/utilities/juce_AudioProcessorValueTreeState.cpp
file added
+659
JuceLibraryCode/modules/juce_audio_processors/utilities/juce_AudioProcessorValueTreeState.h
file added
+279
JuceLibraryCode/modules/juce_audio_utils/audio_cd/juce_AudioCDBurner.h
file added
+174
JuceLibraryCode/modules/juce_audio_utils/audio_cd/juce_AudioCDReader.cpp
file added
+64
JuceLibraryCode/modules/juce_audio_utils/audio_cd/juce_AudioCDReader.h
file added
+179
JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioAppComponent.cpp
file added
+91
JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioAppComponent.h
file added
+136
JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioDeviceSelectorComponent.cpp
file added
+1197
JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioDeviceSelectorComponent.h
file added
+123
JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioThumbnail.cpp
file added
+826
JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioThumbnail.h
file added
+229
JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioThumbnailBase.h
file added
+159
JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioThumbnailCache.cpp
file added
+198
JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioThumbnailCache.h
file added
+120
JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioVisualiserComponent.cpp
file added
+227
JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioVisualiserComponent.h
file added
+136
JuceLibraryCode/modules/juce_audio_utils/gui/juce_BluetoothMidiDevicePairingDialogue.h
file added
+84
JuceLibraryCode/modules/juce_audio_utils/gui/juce_MidiKeyboardComponent.cpp
file added
+918
JuceLibraryCode/modules/juce_audio_utils/gui/juce_MidiKeyboardComponent.h
file added
+443
JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.cpp
file added
+102
JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.h
file added
+88
JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.mm
file added
+27
JuceLibraryCode/modules/juce_audio_utils/native/juce_android_BluetoothMidiDevicePairingDialogue.cpp
file added
+509
JuceLibraryCode/modules/juce_audio_utils/native/juce_ios_BluetoothMidiDevicePairingDialogue.mm
file added
+149
JuceLibraryCode/modules/juce_audio_utils/native/juce_linux_AudioCDReader.cpp
file added
+84
JuceLibraryCode/modules/juce_audio_utils/native/juce_linux_BluetoothMidiDevicePairingDialogue.cpp
file added
+46
JuceLibraryCode/modules/juce_audio_utils/native/juce_mac_AudioCDBurner.mm
file added
+469
JuceLibraryCode/modules/juce_audio_utils/native/juce_mac_AudioCDReader.mm
file added
+267
JuceLibraryCode/modules/juce_audio_utils/native/juce_mac_BluetoothMidiDevicePairingDialogue.mm
file added
+45
JuceLibraryCode/modules/juce_audio_utils/native/juce_win32_AudioCDBurner.cpp
file added
+418
JuceLibraryCode/modules/juce_audio_utils/native/juce_win32_AudioCDReader.cpp
file added
+1316
JuceLibraryCode/modules/juce_audio_utils/native/juce_win_BluetoothMidiDevicePairingDialogue.cpp
file added
+46
JuceLibraryCode/modules/juce_audio_utils/players/juce_AudioProcessorPlayer.cpp
file added
+221
JuceLibraryCode/modules/juce_audio_utils/players/juce_AudioProcessorPlayer.h
file added
+114
JuceLibraryCode/modules/juce_audio_utils/players/juce_SoundPlayer.cpp
file added
+278
JuceLibraryCode/modules/juce_audio_utils/players/juce_SoundPlayer.h
file added
+137
JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.cpp
file added
+296
JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.h
file added
+316
JuceLibraryCode/modules/juce_core/containers/juce_Array.h
file added
+1296
JuceLibraryCode/modules/juce_core/containers/juce_ArrayAllocationBase.h
file added
+129
JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.cpp
file added
+132
JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.h
file added
+132
JuceLibraryCode/modules/juce_core/containers/juce_ElementComparator.h
file added
+197
JuceLibraryCode/modules/juce_core/containers/juce_HashMap.h
file added
+506
JuceLibraryCode/modules/juce_core/containers/juce_HashMap_test.cpp
file added
+276
JuceLibraryCode/modules/juce_core/containers/juce_LinkedListPointer.h
file added
+363
JuceLibraryCode/modules/juce_core/containers/juce_ListenerList.h
file added
+313
JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.cpp
file added
+282
JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.h
file added
+161
JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.h
file added
+920
JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.cpp
file added
+218
JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.h
file added
+205
JuceLibraryCode/modules/juce_core/containers/juce_ReferenceCountedArray.h
file added
+913
JuceLibraryCode/modules/juce_core/containers/juce_ScopedValueSetter.h
file added
+93
JuceLibraryCode/modules/juce_core/containers/juce_SortedSet.h
file added
+488
JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.cpp
file added
+204
JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.h
file added
+268
JuceLibraryCode/modules/juce_core/containers/juce_Variant.cpp
file added
+802
JuceLibraryCode/modules/juce_core/containers/juce_Variant.h
file added
+351
JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.cpp
file added
+162
JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.h
file added
+159
JuceLibraryCode/modules/juce_core/files/juce_File.cpp
file added
+1205
JuceLibraryCode/modules/juce_core/files/juce_File.h
file added
+1077
JuceLibraryCode/modules/juce_core/files/juce_FileFilter.cpp
file added
+40
JuceLibraryCode/modules/juce_core/files/juce_FileFilter.h
file added
+71
JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.cpp
file added
+79
JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.h
file added
+90
JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.cpp
file added
+129
JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.h
file added
+115
JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.cpp
file added
+173
JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.h
file added
+171
JuceLibraryCode/modules/juce_core/files/juce_MemoryMappedFile.h
file added
+115
JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.cpp
file added
+116
JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.h
file added
+164
JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.cpp
file added
+74
JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.h
file added
+76
JuceLibraryCode/modules/juce_core/javascript/juce_JSON.cpp
file added
+653
JuceLibraryCode/modules/juce_core/javascript/juce_JSON.h
file added
+134
JuceLibraryCode/modules/juce_core/javascript/juce_Javascript.cpp
file added
+1910
JuceLibraryCode/modules/juce_core/javascript/juce_Javascript.h
file added
+122
JuceLibraryCode/modules/juce_core/juce_core.cpp
file added
+255
JuceLibraryCode/modules/juce_core/juce_core.h
file added
+360
JuceLibraryCode/modules/juce_core/juce_core.mm
file added
+23
JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.cpp
file added
+133
JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.h
file added
+133
JuceLibraryCode/modules/juce_core/logging/juce_Logger.cpp
file added
+62
JuceLibraryCode/modules/juce_core/logging/juce_Logger.h
file added
+91
JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.cpp
file added
+1368
JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.h
file added
+342
JuceLibraryCode/modules/juce_core/maths/juce_Expression.cpp
file added
+1176
JuceLibraryCode/modules/juce_core/maths/juce_Expression.h
file added
+255
JuceLibraryCode/modules/juce_core/maths/juce_MathsFunctions.h
file added
+686
JuceLibraryCode/modules/juce_core/maths/juce_NormalisableRange.h
file added
+284
JuceLibraryCode/modules/juce_core/maths/juce_Random.cpp
file added
+188
JuceLibraryCode/modules/juce_core/maths/juce_Random.h
file added
+137
JuceLibraryCode/modules/juce_core/maths/juce_Range.h
file added
+307
JuceLibraryCode/modules/juce_core/maths/juce_StatisticsAccumulator.h
file added
+139
JuceLibraryCode/modules/juce_core/memory/juce_Atomic.h
file added
+146
JuceLibraryCode/modules/juce_core/memory/juce_ByteOrder.h
file added
+220
JuceLibraryCode/modules/juce_core/memory/juce_ContainerDeletePolicy.h
file added
+58
JuceLibraryCode/modules/juce_core/memory/juce_HeapBlock.h
file added
+320
JuceLibraryCode/modules/juce_core/memory/juce_LeakedObjectDetector.h
file added
+140
JuceLibraryCode/modules/juce_core/memory/juce_Memory.h
file added
+146
JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.cpp
file added
+410
JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.h
file added
+262
JuceLibraryCode/modules/juce_core/memory/juce_OptionalScopedPointer.h
file added
+189
JuceLibraryCode/modules/juce_core/memory/juce_ReferenceCountedObject.h
file added
+426
JuceLibraryCode/modules/juce_core/memory/juce_ScopedPointer.h
file added
+287
JuceLibraryCode/modules/juce_core/memory/juce_SharedResourcePointer.h
file added
+164
JuceLibraryCode/modules/juce_core/memory/juce_Singleton.h
file added
+280
JuceLibraryCode/modules/juce_core/memory/juce_WeakReference.h
file added
+242
JuceLibraryCode/modules/juce_core/misc/juce_Result.cpp
file added
+80
JuceLibraryCode/modules/juce_core/misc/juce_Result.h
file added
+116
JuceLibraryCode/modules/juce_core/misc/juce_RuntimePermissions.cpp
file added
+36
JuceLibraryCode/modules/juce_core/misc/juce_RuntimePermissions.h
file added
+131
JuceLibraryCode/modules/juce_core/misc/juce_StdFunctionCompat.cpp
file added
+259
JuceLibraryCode/modules/juce_core/misc/juce_StdFunctionCompat.h
file added
+210
JuceLibraryCode/modules/juce_core/misc/juce_Uuid.cpp
file added
+157
JuceLibraryCode/modules/juce_core/misc/juce_Uuid.h
file added
+137
JuceLibraryCode/modules/juce_core/misc/juce_WindowsRegistry.h
file added
+138
JuceLibraryCode/modules/juce_core/native/java/AndroidCamera.java
file added
+169
JuceLibraryCode/modules/juce_core/native/java/AndroidMidi.java
file added
+999
JuceLibraryCode/modules/juce_core/native/java/AndroidMidiFallback.java
file added
+85
JuceLibraryCode/modules/juce_core/native/java/AndroidRuntimePermissions.java
file added
+12
JuceLibraryCode/modules/juce_core/native/java/AndroidSharingContentProvider.java
file added
+138
JuceLibraryCode/modules/juce_core/native/java/AndroidWebView.java
file added
+69
JuceLibraryCode/modules/juce_core/native/java/IInAppBillingService.java
file added
+971
JuceLibraryCode/modules/juce_core/native/java/JuceAppActivity.java
file added
+1778
JuceLibraryCode/modules/juce_core/native/java/JuceFirebaseInstanceIdService.java
file added
+16
JuceLibraryCode/modules/juce_core/native/java/JuceFirebaseMessagingService.java
file added
+35
JuceLibraryCode/modules/juce_core/native/juce_BasicNativeHeaders.h
file added
+295
JuceLibraryCode/modules/juce_core/native/juce_android_Files.cpp
file added
+625
JuceLibraryCode/modules/juce_core/native/juce_android_JNIHelpers.h
file added
+781
JuceLibraryCode/modules/juce_core/native/juce_android_Misc.cpp
file added
+31
JuceLibraryCode/modules/juce_core/native/juce_android_Network.cpp
file added
+403
JuceLibraryCode/modules/juce_core/native/juce_android_RuntimePermissions.cpp
file added
+88
JuceLibraryCode/modules/juce_core/native/juce_android_SystemStats.cpp
file added
+539
JuceLibraryCode/modules/juce_core/native/juce_android_Threads.cpp
file added
+77
JuceLibraryCode/modules/juce_core/native/juce_curl_Network.cpp
file added
+559
JuceLibraryCode/modules/juce_core/native/juce_linux_CommonFile.cpp
file added
+142
JuceLibraryCode/modules/juce_core/native/juce_linux_Files.cpp
file added
+236
JuceLibraryCode/modules/juce_core/native/juce_linux_Network.cpp
file added
+585
JuceLibraryCode/modules/juce_core/native/juce_linux_SystemStats.cpp
file added
+211
JuceLibraryCode/modules/juce_core/native/juce_linux_Threads.cpp
file added
+62
JuceLibraryCode/modules/juce_core/native/juce_mac_ClangBugWorkaround.h
file added
+35
JuceLibraryCode/modules/juce_core/native/juce_mac_Files.mm
file added
+513
JuceLibraryCode/modules/juce_core/native/juce_mac_Network.mm
file added
+1134
JuceLibraryCode/modules/juce_core/native/juce_mac_Strings.mm
file added
+105
JuceLibraryCode/modules/juce_core/native/juce_mac_SystemStats.mm
file added
+325
JuceLibraryCode/modules/juce_core/native/juce_mac_Threads.mm
file added
+93
JuceLibraryCode/modules/juce_core/native/juce_osx_ObjCHelpers.h
file added
+437
JuceLibraryCode/modules/juce_core/native/juce_posix_NamedPipe.cpp
file added
+229
JuceLibraryCode/modules/juce_core/native/juce_posix_SharedCode.h
file added
+1504
JuceLibraryCode/modules/juce_core/native/juce_win32_ComSmartPtr.h
file added
+198
JuceLibraryCode/modules/juce_core/native/juce_win32_Files.cpp
file added
+1199
JuceLibraryCode/modules/juce_core/native/juce_win32_Network.cpp
file added
+667
JuceLibraryCode/modules/juce_core/native/juce_win32_Registry.cpp
file added
+251
JuceLibraryCode/modules/juce_core/native/juce_win32_SystemStats.cpp
file added
+499
JuceLibraryCode/modules/juce_core/native/juce_win32_Threads.cpp
file added
+591
JuceLibraryCode/modules/juce_core/network/juce_IPAddress.cpp
file added
+304
JuceLibraryCode/modules/juce_core/network/juce_IPAddress.h
file added
+114
JuceLibraryCode/modules/juce_core/network/juce_MACAddress.cpp
file added
+93
JuceLibraryCode/modules/juce_core/network/juce_MACAddress.h
file added
+85
JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.cpp
file added
+63
JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.h
file added
+100
JuceLibraryCode/modules/juce_core/network/juce_Socket.cpp
file added
+770
JuceLibraryCode/modules/juce_core/network/juce_Socket.h
file added
+359
JuceLibraryCode/modules/juce_core/network/juce_URL.cpp
file added
+912
JuceLibraryCode/modules/juce_core/network/juce_URL.h
file added
+569
JuceLibraryCode/modules/juce_core/network/juce_WebInputStream.cpp
file added
+87
JuceLibraryCode/modules/juce_core/network/juce_WebInputStream.h
file added
+216
JuceLibraryCode/modules/juce_core/streams/juce_BufferedInputStream.cpp
file added
+199
JuceLibraryCode/modules/juce_core/streams/juce_BufferedInputStream.h
file added
+90
JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.cpp
file added
+55
JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.h
file added
+60
JuceLibraryCode/modules/juce_core/streams/juce_InputSource.h
file added
+72
JuceLibraryCode/modules/juce_core/streams/juce_InputStream.cpp
file added
+229
JuceLibraryCode/modules/juce_core/streams/juce_InputStream.h
file added
+261
JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.cpp
file added
+158
JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.h
file added
+92
JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.cpp
file added
+210
JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.h
file added
+133
JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.cpp
file added
+383
JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.h
file added
+274
JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.cpp
file added
+81
JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.h
file added
+83
JuceLibraryCode/modules/juce_core/streams/juce_URLInputSource.cpp
file added
+59
JuceLibraryCode/modules/juce_core/streams/juce_URLInputSource.h
file added
+61
JuceLibraryCode/modules/juce_core/system/juce_CompilerSupport.h
file added
+130
JuceLibraryCode/modules/juce_core/system/juce_PlatformDefs.h
file added
+323
JuceLibraryCode/modules/juce_core/system/juce_StandardHeader.h
file added
+157
JuceLibraryCode/modules/juce_core/system/juce_SystemStats.cpp
file added
+237
JuceLibraryCode/modules/juce_core/system/juce_SystemStats.h
file added
+228
JuceLibraryCode/modules/juce_core/system/juce_TargetPlatform.h
file added
+196
JuceLibraryCode/modules/juce_core/text/juce_Base64.cpp
file added
+164
JuceLibraryCode/modules/juce_core/text/juce_Base64.h
file added
+53
JuceLibraryCode/modules/juce_core/text/juce_CharPointer_ASCII.h
file added
+380
JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF16.h
file added
+522
JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF32.h
file added
+375
JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF8.h
file added
+567
JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.cpp
file added
+287
JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.h
file added
+763
JuceLibraryCode/modules/juce_core/text/juce_Identifier.cpp
file added
+74
JuceLibraryCode/modules/juce_core/text/juce_Identifier.h
file added
+132
JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.cpp
file added
+206
JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.h
file added
+241
JuceLibraryCode/modules/juce_core/text/juce_NewLine.h
file added
+82
JuceLibraryCode/modules/juce_core/text/juce_String.cpp
file added
+2691
JuceLibraryCode/modules/juce_core/text/juce_String.h
file added
+1430
JuceLibraryCode/modules/juce_core/text/juce_StringArray.cpp
file added
+465
JuceLibraryCode/modules/juce_core/text/juce_StringArray.h
file added
+432
JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.cpp
file added
+169
JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.h
file added
+151
JuceLibraryCode/modules/juce_core/text/juce_StringPool.cpp
file added
+165
JuceLibraryCode/modules/juce_core/text/juce_StringPool.h
file added
+90
JuceLibraryCode/modules/juce_core/text/juce_StringRef.h
file added
+142
JuceLibraryCode/modules/juce_core/text/juce_TextDiff.cpp
file added
+283
JuceLibraryCode/modules/juce_core/text/juce_TextDiff.h
file added
+74
JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.cpp
file added
+114
JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.h
file added
+113
JuceLibraryCode/modules/juce_core/threads/juce_CriticalSection.h
file added
+262
JuceLibraryCode/modules/juce_core/threads/juce_DynamicLibrary.h
file added
+86
JuceLibraryCode/modules/juce_core/threads/juce_HighResolutionTimer.cpp
file added
+35
JuceLibraryCode/modules/juce_core/threads/juce_HighResolutionTimer.h
file added
+104
JuceLibraryCode/modules/juce_core/threads/juce_InterProcessLock.h
file added
+122
JuceLibraryCode/modules/juce_core/threads/juce_Process.h
file added
+156
JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.cpp
file added
+149
JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.h
file added
+146
JuceLibraryCode/modules/juce_core/threads/juce_ScopedLock.h
file added
+244
JuceLibraryCode/modules/juce_core/threads/juce_ScopedReadLock.h
file added
+84
JuceLibraryCode/modules/juce_core/threads/juce_ScopedWriteLock.h
file added
+84
JuceLibraryCode/modules/juce_core/threads/juce_SpinLock.h
file added
+85
JuceLibraryCode/modules/juce_core/threads/juce_Thread.cpp
file added
+536
JuceLibraryCode/modules/juce_core/threads/juce_Thread.h
file added
+359
JuceLibraryCode/modules/juce_core/threads/juce_ThreadLocalValue.h
file added
+150
JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.cpp
file added
+433
JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.h
file added
+345
JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.cpp
file added
+184
JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.h
file added
+150
JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.h
file added
+112
JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.cpp
file added
+131
JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.h
file added
+165
JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.cpp
file added
+138
JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.h
file added
+177
JuceLibraryCode/modules/juce_core/time/juce_Time.cpp
file added
+687
JuceLibraryCode/modules/juce_core/time/juce_Time.h
file added
+409
JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.cpp
file added
+283
JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.h
file added
+439
JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.cpp
file added
+865
JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.h
file added
+175
JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.cpp
file added
+926
JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.h
file added
+773
JuceLibraryCode/modules/juce_core/zip/juce_GZIPCompressorOutputStream.cpp
file added
+210
JuceLibraryCode/modules/juce_core/zip/juce_GZIPCompressorOutputStream.h
file added
+109
JuceLibraryCode/modules/juce_core/zip/juce_GZIPDecompressorInputStream.cpp
file added
+298
JuceLibraryCode/modules/juce_core/zip/juce_GZIPDecompressorInputStream.h
file added
+104
JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.cpp
file added
+687
JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.h
file added
+261
JuceLibraryCode/modules/juce_core/zip/zlib/README
file added
+125
JuceLibraryCode/modules/juce_core/zip/zlib/adler32.c
file added
+143
JuceLibraryCode/modules/juce_core/zip/zlib/compress.c
file added
+70
JuceLibraryCode/modules/juce_core/zip/zlib/crc32.c
file added
+407
JuceLibraryCode/modules/juce_core/zip/zlib/crc32.h
file added
+441
JuceLibraryCode/modules/juce_core/zip/zlib/deflate.c
file added
+1679
JuceLibraryCode/modules/juce_core/zip/zlib/deflate.h
file added
+333
JuceLibraryCode/modules/juce_core/zip/zlib/infback.c
file added
+611
JuceLibraryCode/modules/juce_core/zip/zlib/inffast.c
file added
+316
JuceLibraryCode/modules/juce_core/zip/zlib/inffast.h
file added
+11
JuceLibraryCode/modules/juce_core/zip/zlib/inffixed.h
file added
+94
JuceLibraryCode/modules/juce_core/zip/zlib/inflate.c
file added
+1339
JuceLibraryCode/modules/juce_core/zip/zlib/inflate.h
file added
+121
JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.c
file added
+328
JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.h
file added
+61
JuceLibraryCode/modules/juce_core/zip/zlib/trees.c
file added
+1191
JuceLibraryCode/modules/juce_core/zip/zlib/trees.h
file added
+127
JuceLibraryCode/modules/juce_core/zip/zlib/uncompr.c
file added
+60
JuceLibraryCode/modules/juce_core/zip/zlib/zconf.h
file added
+345
JuceLibraryCode/modules/juce_core/zip/zlib/zconf.in.h
file added
+332
JuceLibraryCode/modules/juce_core/zip/zlib/zlib.h
file added
+1358
JuceLibraryCode/modules/juce_core/zip/zlib/zutil.c
file added
+311
JuceLibraryCode/modules/juce_core/zip/zlib/zutil.h
file added
+271
JuceLibraryCode/modules/juce_data_structures/app_properties/juce_ApplicationProperties.cpp
file added
+108
JuceLibraryCode/modules/juce_data_structures/app_properties/juce_ApplicationProperties.h
file added
+134
JuceLibraryCode/modules/juce_data_structures/app_properties/juce_PropertiesFile.cpp
file added
+369
JuceLibraryCode/modules/juce_data_structures/app_properties/juce_PropertiesFile.h
file added
+256
JuceLibraryCode/modules/juce_data_structures/juce_data_structures.cpp
file added
+44
JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h
file added
+65
JuceLibraryCode/modules/juce_data_structures/juce_data_structures.mm
file added
+27
JuceLibraryCode/modules/juce_data_structures/undomanager/juce_UndoManager.cpp
file added
+370
JuceLibraryCode/modules/juce_data_structures/undomanager/juce_UndoManager.h
file added
+263
JuceLibraryCode/modules/juce_data_structures/undomanager/juce_UndoableAction.h
file added
+101
JuceLibraryCode/modules/juce_data_structures/values/juce_CachedValue.cpp
file added
+159
JuceLibraryCode/modules/juce_data_structures/values/juce_CachedValue.h
file added
+314
JuceLibraryCode/modules/juce_data_structures/values/juce_Value.cpp
file added
+242
JuceLibraryCode/modules/juce_data_structures/values/juce_Value.h
file added
+243
JuceLibraryCode/modules/juce_data_structures/values/juce_ValueTree.cpp
file added
+1170
JuceLibraryCode/modules/juce_data_structures/values/juce_ValueTree.h
file added
+626
JuceLibraryCode/modules/juce_data_structures/values/juce_ValueTreeSynchroniser.cpp
file added
+242
JuceLibraryCode/modules/juce_data_structures/values/juce_ValueTreeSynchroniser.h
file added
+99
JuceLibraryCode/modules/juce_data_structures/values/juce_ValueWithDefault.h
file added
+229
JuceLibraryCode/modules/juce_events/broadcasters/juce_ActionBroadcaster.cpp
file added
+92
JuceLibraryCode/modules/juce_events/broadcasters/juce_ActionBroadcaster.h
file added
+79
JuceLibraryCode/modules/juce_events/broadcasters/juce_ActionListener.h
file added
+48
JuceLibraryCode/modules/juce_events/broadcasters/juce_AsyncUpdater.cpp
file added
+93
JuceLibraryCode/modules/juce_events/broadcasters/juce_AsyncUpdater.h
file added
+110
JuceLibraryCode/modules/juce_events/broadcasters/juce_ChangeBroadcaster.cpp
file added
+99
JuceLibraryCode/modules/juce_events/broadcasters/juce_ChangeBroadcaster.h
file added
+103
JuceLibraryCode/modules/juce_events/broadcasters/juce_ChangeListener.h
file added
+63
JuceLibraryCode/modules/juce_events/interprocess/juce_ConnectedChildProcess.cpp
file added
+267
JuceLibraryCode/modules/juce_events/interprocess/juce_ConnectedChildProcess.h
file added
+204
JuceLibraryCode/modules/juce_events/interprocess/juce_InterprocessConnection.cpp
file added
+371
JuceLibraryCode/modules/juce_events/interprocess/juce_InterprocessConnection.h
file added
+210
JuceLibraryCode/modules/juce_events/interprocess/juce_InterprocessConnectionServer.cpp
file added
+80
JuceLibraryCode/modules/juce_events/interprocess/juce_InterprocessConnectionServer.h
file added
+106
JuceLibraryCode/modules/juce_events/juce_events.cpp
file added
+102
JuceLibraryCode/modules/juce_events/juce_events.h
file added
+96
JuceLibraryCode/modules/juce_events/juce_events.mm
file added
+23
JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.cpp
file added
+332
JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.h
file added
+323
JuceLibraryCode/modules/juce_events/messages/juce_CallbackMessage.h
file added
+74
JuceLibraryCode/modules/juce_events/messages/juce_DeletedAtShutdown.cpp
file added
+94
JuceLibraryCode/modules/juce_events/messages/juce_DeletedAtShutdown.h
file added
+65
JuceLibraryCode/modules/juce_events/messages/juce_Initialisation.h
file added
+204
JuceLibraryCode/modules/juce_events/messages/juce_Message.h
file added
+64
JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.cpp
file added
+52
JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.h
file added
+70
JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.cpp
file added
+452
JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.h
file added
+465
JuceLibraryCode/modules/juce_events/messages/juce_MountedVolumeListChangeDetector.h
file added
+59
JuceLibraryCode/modules/juce_events/messages/juce_NotificationType.h
file added
+39
JuceLibraryCode/modules/juce_events/native/juce_android_Messaging.cpp
file added
+171
JuceLibraryCode/modules/juce_events/native/juce_ios_MessageManager.mm
file added
+103
JuceLibraryCode/modules/juce_events/native/juce_linux_EventLoop.h
file added
+55
JuceLibraryCode/modules/juce_events/native/juce_linux_Messaging.cpp
file added
+265
JuceLibraryCode/modules/juce_events/native/juce_mac_MessageManager.mm
file added
+521
JuceLibraryCode/modules/juce_events/native/juce_osx_MessageQueue.h
file added
+105
JuceLibraryCode/modules/juce_events/native/juce_win32_HiddenMessageWindow.h
file added
+135
JuceLibraryCode/modules/juce_events/native/juce_win32_Messaging.cpp
file added
+240
JuceLibraryCode/modules/juce_events/native/juce_win32_WinRTWrapper.cpp
file added
+26
JuceLibraryCode/modules/juce_events/native/juce_win32_WinRTWrapper.h
file added
+133
JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.cpp
file added
+108
JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.h
file added
+125
JuceLibraryCode/modules/juce_events/timers/juce_Timer.cpp
file added
+389
JuceLibraryCode/modules/juce_events/timers/juce_Timer.h
file added
+137
JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.cpp
file added
+468
JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.h
file added
+369
JuceLibraryCode/modules/juce_graphics/colour/juce_ColourGradient.cpp
file added
+271
JuceLibraryCode/modules/juce_graphics/colour/juce_ColourGradient.h
file added
+225
JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.cpp
file added
+335
JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.h
file added
+111
JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.cpp
file added
+158
JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.h
file added
+157
JuceLibraryCode/modules/juce_graphics/colour/juce_PixelFormats.h
file added
+763
JuceLibraryCode/modules/juce_graphics/contexts/juce_GraphicsContext.cpp
file added
+705
JuceLibraryCode/modules/juce_graphics/contexts/juce_GraphicsContext.h
file added
+750
JuceLibraryCode/modules/juce_graphics/contexts/juce_LowLevelGraphicsContext.h
file added
+103
JuceLibraryCode/modules/juce_graphics/contexts/juce_LowLevelGraphicsPostScriptRenderer.cpp
file added
+540
JuceLibraryCode/modules/juce_graphics/contexts/juce_LowLevelGraphicsPostScriptRenderer.h
file added
+120
JuceLibraryCode/modules/juce_graphics/contexts/juce_LowLevelGraphicsSoftwareRenderer.cpp
file added
+45
JuceLibraryCode/modules/juce_graphics/contexts/juce_LowLevelGraphicsSoftwareRenderer.h
file added
+58
JuceLibraryCode/modules/juce_graphics/effects/juce_DropShadowEffect.cpp
file added
+189
JuceLibraryCode/modules/juce_graphics/effects/juce_DropShadowEffect.h
file added
+114
JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.cpp
file added
+58
JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.h
file added
+77
JuceLibraryCode/modules/juce_graphics/effects/juce_ImageEffectFilter.h
file added
+72
JuceLibraryCode/modules/juce_graphics/fonts/juce_AttributedString.cpp
file added
+356
JuceLibraryCode/modules/juce_graphics/fonts/juce_AttributedString.h
file added
+209
JuceLibraryCode/modules/juce_graphics/fonts/juce_CustomTypeface.cpp
file added
+399
JuceLibraryCode/modules/juce_graphics/fonts/juce_CustomTypeface.h
file added
+167
JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.cpp
file added
+722
JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.h
file added
+480
JuceLibraryCode/modules/juce_graphics/fonts/juce_GlyphArrangement.cpp
file added
+791
JuceLibraryCode/modules/juce_graphics/fonts/juce_GlyphArrangement.h
file added
+332
JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.cpp
file added
+614
JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.h
file added
+200
JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.cpp
file added
+267
JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.h
file added
+163
JuceLibraryCode/modules/juce_graphics/geometry/juce_AffineTransform.cpp
file added
+268
JuceLibraryCode/modules/juce_graphics/geometry/juce_AffineTransform.h
file added
+289
JuceLibraryCode/modules/juce_graphics/geometry/juce_BorderSize.h
file added
+155
JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.cpp
file added
+842
JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.h
file added
+223
JuceLibraryCode/modules/juce_graphics/geometry/juce_Line.h
file added
+430
JuceLibraryCode/modules/juce_graphics/geometry/juce_Parallelogram.h
file added
+194
JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.cpp
file added
+1540
JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.h
file added
+840
JuceLibraryCode/modules/juce_graphics/geometry/juce_PathIterator.cpp
file added
+286
JuceLibraryCode/modules/juce_graphics/geometry/juce_PathIterator.h
file added
+112
JuceLibraryCode/modules/juce_graphics/geometry/juce_PathStrokeType.cpp
file added
+745
JuceLibraryCode/modules/juce_graphics/geometry/juce_PathStrokeType.h
file added
+207
JuceLibraryCode/modules/juce_graphics/geometry/juce_Point.h
file added
+245
JuceLibraryCode/modules/juce_graphics/geometry/juce_Rectangle.h
file added
+994
JuceLibraryCode/modules/juce_graphics/geometry/juce_RectangleList.h
file added
+654
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/README
file added
+385
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/cderror.h
file added
+132
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/changes to libjpeg for JUCE.txt
file added
+16
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcapimin.c
file added
+280
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcapistd.c
file added
+161
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jccoefct.c
file added
+449
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jccolor.c
file added
+459
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcdctmgr.c
file added
+387
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jchuff.c
file added
+909
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jchuff.h
file added
+52
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcinit.c
file added
+72
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcmainct.c
file added
+293
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcmarker.c
file added
+597
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcmaster.c
file added
+590
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcomapi.c
file added
+106
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jconfig.h
file added
+59
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcparam.c
file added
+610
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcphuff.c
file added
+833
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcprepct.c
file added
+354
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcsample.c
file added
+519
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jctrans.c
file added
+388
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdapimin.c
file added
+395
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdapistd.c
file added
+275
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdatasrc.c
file added
+212
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdcoefct.c
file added
+736
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdcolor.c
file added
+396
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdct.h
file added
+182
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jddctmgr.c
file added
+269
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdhuff.c
file added
+625
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdhuff.h
file added
+206
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdinput.c
file added
+381
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmainct.c
file added
+512
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmarker.c
file added
+1292
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmaster.c
file added
+557
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdmerge.c
file added
+400
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdphuff.c
file added
+642
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdpostct.c
file added
+290
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdsample.c
file added
+478
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdtrans.c
file added
+143
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jerror.c
file added
+252
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jerror.h
file added
+291
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jfdctflt.c
file added
+168
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jfdctfst.c
file added
+224
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jfdctint.c
file added
+283
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jidctflt.c
file added
+242
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jidctfst.c
file added
+368
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jidctint.c
file added
+389
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jidctred.c
file added
+398
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jinclude.h
file added
+197
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jmemmgr.c
file added
+1118
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jmemnobs.c
file added
+109
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jmemsys.h
file added
+203
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jmorecfg.h
file added
+363
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jpegint.h
file added
+392
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jpeglib.h
file added
+1096
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jquant1.c
file added
+856
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jquant2.c
file added
+1310
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jutils.c
file added
+179
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jversion.h
file added
+14
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/transupp.c
file added
+928
JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/transupp.h
file added
+135
JuceLibraryCode/modules/juce_graphics/image_formats/juce_GIFLoader.cpp
file added
+451
JuceLibraryCode/modules/juce_graphics/image_formats/juce_JPEGLoader.cpp
file added
+456
JuceLibraryCode/modules/juce_graphics/image_formats/juce_PNGLoader.cpp
file added
+605
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/LICENSE
file added
+109
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/libpng_readme.txt
file added
+2
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.c
file added
+4295
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.h
file added
+3292
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngconf.h
file added
+616
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngerror.c
file added
+932
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngget.c
file added
+1177
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pnginfo.h
file added
+260
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngmem.c
file added
+277
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngpread.c
file added
+1291
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngpriv.h
file added
+1904
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngread.c
file added
+4000
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngrio.c
file added
+118
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngrtran.c
file added
+5102
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngrutil.c
file added
+4459
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngset.c
file added
+1606
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngstruct.h
file added
+489
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngtrans.c
file added
+830
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngwio.c
file added
+164
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngwrite.c
file added
+2331
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngwtran.c
file added
+637
JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngwutil.c
file added
+3020
JuceLibraryCode/modules/juce_graphics/images/juce_Image.cpp
file added
+678
JuceLibraryCode/modules/juce_graphics/images/juce_Image.h
file added
+555
JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.cpp
file added
+170
JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.h
file added
+128
JuceLibraryCode/modules/juce_graphics/images/juce_ImageConvolutionKernel.cpp
file added
+297
JuceLibraryCode/modules/juce_graphics/images/juce_ImageConvolutionKernel.h
file added
+113
JuceLibraryCode/modules/juce_graphics/images/juce_ImageFileFormat.cpp
file added
+112
JuceLibraryCode/modules/juce_graphics/images/juce_ImageFileFormat.h
file added
+224
JuceLibraryCode/modules/juce_graphics/juce_graphics.cpp
file added
+181
JuceLibraryCode/modules/juce_graphics/juce_graphics.h
file added
+148
JuceLibraryCode/modules/juce_graphics/juce_graphics.mm
file added
+27
JuceLibraryCode/modules/juce_graphics/native/juce_RenderingHelpers.h
file added
+2779
JuceLibraryCode/modules/juce_graphics/native/juce_android_Fonts.cpp
file added
+401
JuceLibraryCode/modules/juce_graphics/native/juce_android_GraphicsContext.cpp
file added
+67
JuceLibraryCode/modules/juce_graphics/native/juce_android_IconHelpers.cpp
file added
+30
JuceLibraryCode/modules/juce_graphics/native/juce_freetype_Fonts.cpp
file added
+462
JuceLibraryCode/modules/juce_graphics/native/juce_linux_Fonts.cpp
file added
+199
JuceLibraryCode/modules/juce_graphics/native/juce_linux_IconHelpers.cpp
file added
+30
JuceLibraryCode/modules/juce_graphics/native/juce_mac_CoreGraphicsContext.h
file added
+115
JuceLibraryCode/modules/juce_graphics/native/juce_mac_CoreGraphicsContext.mm
file added
+946
JuceLibraryCode/modules/juce_graphics/native/juce_mac_CoreGraphicsHelpers.h
file added
+69
JuceLibraryCode/modules/juce_graphics/native/juce_mac_Fonts.mm
file added
+856
JuceLibraryCode/modules/juce_graphics/native/juce_mac_IconHelpers.cpp
file added
+152
JuceLibraryCode/modules/juce_graphics/native/juce_win32_Direct2DGraphicsContext.cpp
file added
+830
JuceLibraryCode/modules/juce_graphics/native/juce_win32_Direct2DGraphicsContext.h
file added
+106
JuceLibraryCode/modules/juce_graphics/native/juce_win32_DirectWriteTypeLayout.cpp
file added
+460
JuceLibraryCode/modules/juce_graphics/native/juce_win32_DirectWriteTypeface.cpp
file added
+327
JuceLibraryCode/modules/juce_graphics/native/juce_win32_Fonts.cpp
file added
+649
JuceLibraryCode/modules/juce_graphics/native/juce_win32_IconHelpers.cpp
file added
+30
JuceLibraryCode/modules/juce_graphics/placement/juce_Justification.h
file added
+192
JuceLibraryCode/modules/juce_graphics/placement/juce_RectanglePlacement.cpp
file added
+134
JuceLibraryCode/modules/juce_graphics/placement/juce_RectanglePlacement.h
file added
+175
JuceLibraryCode/modules/juce_gui_basics/application/juce_Application.cpp
file added
+105
JuceLibraryCode/modules/juce_gui_basics/application/juce_Application.h
file added
+194
JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ArrowButton.cpp
file added
+52
JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ArrowButton.h
file added
+66
JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.cpp
file added
+696
JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.h
file added
+525
JuceLibraryCode/modules/juce_gui_basics/buttons/juce_DrawableButton.cpp
file added
+227
JuceLibraryCode/modules/juce_gui_basics/buttons/juce_DrawableButton.h
file added
+193
JuceLibraryCode/modules/juce_gui_basics/buttons/juce_HyperlinkButton.cpp
file added
+125
JuceLibraryCode/modules/juce_gui_basics/buttons/juce_HyperlinkButton.h
file added
+126
JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ImageButton.cpp
file added
+199
JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ImageButton.h
file added
+162
JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ShapeButton.cpp
file added
+136
JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ShapeButton.h
file added
+127
JuceLibraryCode/modules/juce_gui_basics/buttons/juce_TextButton.cpp
file added
+78
JuceLibraryCode/modules/juce_gui_basics/buttons/juce_TextButton.h
file added
+115
JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ToggleButton.cpp
file added
+61
JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ToggleButton.h
file added
+91
JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ToolbarButton.cpp
file added
+114
JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ToolbarButton.h
file added
+99
JuceLibraryCode/modules/juce_gui_basics/commands/juce_ApplicationCommandID.h
file added
+91
JuceLibraryCode/modules/juce_gui_basics/commands/juce_ApplicationCommandInfo.cpp
file added
+67
JuceLibraryCode/modules/juce_gui_basics/commands/juce_ApplicationCommandInfo.h
file added
+191
JuceLibraryCode/modules/juce_gui_basics/commands/juce_ApplicationCommandManager.cpp
file added
+318
JuceLibraryCode/modules/juce_gui_basics/commands/juce_ApplicationCommandManager.h
file added
+356
JuceLibraryCode/modules/juce_gui_basics/commands/juce_ApplicationCommandTarget.cpp
file added
+187
JuceLibraryCode/modules/juce_gui_basics/commands/juce_ApplicationCommandTarget.h
file added
+245
JuceLibraryCode/modules/juce_gui_basics/commands/juce_KeyPressMappingSet.cpp
file added
+419
JuceLibraryCode/modules/juce_gui_basics/commands/juce_KeyPressMappingSet.h
file added
+247
JuceLibraryCode/modules/juce_gui_basics/components/juce_CachedComponentImage.h
file added
+73
JuceLibraryCode/modules/juce_gui_basics/components/juce_Component.cpp
file added
+2954
JuceLibraryCode/modules/juce_gui_basics/components/juce_Component.h
file added
+2389
JuceLibraryCode/modules/juce_gui_basics/components/juce_ComponentListener.cpp
file added
+39
JuceLibraryCode/modules/juce_gui_basics/components/juce_ComponentListener.h
file added
+123
JuceLibraryCode/modules/juce_gui_basics/components/juce_Desktop.cpp
file added
+423
JuceLibraryCode/modules/juce_gui_basics/components/juce_Desktop.h
file added
+479
JuceLibraryCode/modules/juce_gui_basics/components/juce_ModalComponentManager.cpp
file added
+299
JuceLibraryCode/modules/juce_gui_basics/components/juce_ModalComponentManager.h
file added
+303
JuceLibraryCode/modules/juce_gui_basics/drawables/juce_Drawable.cpp
file added
+215
JuceLibraryCode/modules/juce_gui_basics/drawables/juce_Drawable.h
file added
+216
JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableComposite.cpp
file added
+165
JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableComposite.h
file added
+118
JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableImage.cpp
file added
+137
JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableImage.h
file added
+110
JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawablePath.cpp
file added
+58
JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawablePath.h
file added
+78
JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableRectangle.cpp
file added
+88
JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableRectangle.h
file added
+77
JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableShape.cpp
file added
+182
JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableShape.h
file added
+127
JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableText.cpp
file added
+203
JuceLibraryCode/modules/juce_gui_basics/drawables/juce_DrawableText.h
file added
+118
JuceLibraryCode/modules/juce_gui_basics/drawables/juce_SVGParser.cpp
file added
+1730
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_ContentSharer.cpp
file added
+283
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_ContentSharer.h
file added
+151
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_DirectoryContentsDisplayComponent.cpp
file added
+71
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_DirectoryContentsDisplayComponent.h
file added
+117
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_DirectoryContentsList.cpp
file added
+268
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_DirectoryContentsList.h
file added
+225
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FileBrowserComponent.cpp
file added
+613
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FileBrowserComponent.h
file added
+296
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FileBrowserListener.h
file added
+59
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FileChooser.cpp
file added
+269
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FileChooser.h
file added
+334
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FileChooserDialogBox.cpp
file added
+257
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FileChooserDialogBox.h
file added
+157
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FileListComponent.cpp
file added
+270
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FileListComponent.h
file added
+95
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FilePreviewComponent.h
file added
+67
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FileSearchPathListComponent.cpp
file added
+275
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FileSearchPathListComponent.h
file added
+120
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FileTreeComponent.cpp
file added
+335
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FileTreeComponent.h
file added
+106
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FilenameComponent.cpp
file added
+267
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_FilenameComponent.h
file added
+235
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_ImagePreviewComponent.cpp
file added
+121
JuceLibraryCode/modules/juce_gui_basics/filebrowser/juce_ImagePreviewComponent.h
file added
+68
JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.cpp
file added
+325
JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h
file added
+301
JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.mm
file added
+27
JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_CaretComponent.cpp
file added
+65
JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_CaretComponent.h
file added
+82
JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyListener.cpp
file added
+35
JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyListener.h
file added
+78
JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyPress.cpp
file added
+307
JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyPress.h
file added
+275
JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyboardFocusTraverser.cpp
file added
+131
JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyboardFocusTraverser.h
file added
+91
JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_ModifierKeys.cpp
file added
+58
JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_ModifierKeys.h
file added
+212
JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_SystemClipboard.h
file added
+50
JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_TextEditorKeyMapper.h
file added
+124
JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_TextInputTarget.h
file added
+97
JuceLibraryCode/modules/juce_gui_basics/layout/juce_AnimatedPosition.h
file added
+209
JuceLibraryCode/modules/juce_gui_basics/layout/juce_AnimatedPositionBehaviours.h
file added
+161
JuceLibraryCode/modules/juce_gui_basics/layout/juce_ComponentAnimator.cpp
file added
+345
JuceLibraryCode/modules/juce_gui_basics/layout/juce_ComponentAnimator.h
file added
+163
JuceLibraryCode/modules/juce_gui_basics/layout/juce_ComponentBoundsConstrainer.cpp
file added
+297
JuceLibraryCode/modules/juce_gui_basics/layout/juce_ComponentBoundsConstrainer.h
file added
+198
JuceLibraryCode/modules/juce_gui_basics/layout/juce_ComponentBuilder.cpp
file added
+287
JuceLibraryCode/modules/juce_gui_basics/layout/juce_ComponentBuilder.h
file added
+248
JuceLibraryCode/modules/juce_gui_basics/layout/juce_ComponentMovementWatcher.cpp
file added
+143
JuceLibraryCode/modules/juce_gui_basics/layout/juce_ComponentMovementWatcher.h
file added
+97
JuceLibraryCode/modules/juce_gui_basics/layout/juce_ConcertinaPanel.cpp
file added
+458
JuceLibraryCode/modules/juce_gui_basics/layout/juce_ConcertinaPanel.h
file added
+147
JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexBox.cpp
file added
+860
JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexBox.h
file added
+147
JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexItem.h
file added
+178
JuceLibraryCode/modules/juce_gui_basics/layout/juce_Grid.cpp
file added
+1028
JuceLibraryCode/modules/juce_gui_basics/layout/juce_Grid.h
file added
+228
JuceLibraryCode/modules/juce_gui_basics/layout/juce_GridItem.cpp
file added
+182
JuceLibraryCode/modules/juce_gui_basics/layout/juce_GridItem.h
file added
+251
JuceLibraryCode/modules/juce_gui_basics/layout/juce_GridUnitTests.cpp
file added
+262
JuceLibraryCode/modules/juce_gui_basics/layout/juce_GroupComponent.cpp
file added
+73
JuceLibraryCode/modules/juce_gui_basics/layout/juce_GroupComponent.h
file added
+113
JuceLibraryCode/modules/juce_gui_basics/layout/juce_MultiDocumentPanel.cpp
file added
+502
JuceLibraryCode/modules/juce_gui_basics/layout/juce_MultiDocumentPanel.h
file added
+308
JuceLibraryCode/modules/juce_gui_basics/layout/juce_ResizableBorderComponent.cpp
file added
+202
JuceLibraryCode/modules/juce_gui_basics/layout/juce_ResizableBorderComponent.h
file added
+197
JuceLibraryCode/modules/juce_gui_basics/layout/juce_ResizableCornerComponent.cpp
file added
+106
JuceLibraryCode/modules/juce_gui_basics/layout/juce_ResizableCornerComponent.h
file added
+93
JuceLibraryCode/modules/juce_gui_basics/layout/juce_ResizableEdgeComponent.cpp
file added
+114
JuceLibraryCode/modules/juce_gui_basics/layout/juce_ResizableEdgeComponent.h
file added
+101
JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.cpp
file added
+442
JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.h
file added
+436
JuceLibraryCode/modules/juce_gui_basics/layout/juce_SidePanel.cpp
file added
+278
JuceLibraryCode/modules/juce_gui_basics/layout/juce_SidePanel.h
file added
+232
JuceLibraryCode/modules/juce_gui_basics/layout/juce_StretchableLayoutManager.cpp
file added
+343
JuceLibraryCode/modules/juce_gui_basics/layout/juce_StretchableLayoutManager.h
file added
+262
JuceLibraryCode/modules/juce_gui_basics/layout/juce_StretchableLayoutResizerBar.cpp
file added
+80
JuceLibraryCode/modules/juce_gui_basics/layout/juce_StretchableLayoutResizerBar.h
file added
+106
JuceLibraryCode/modules/juce_gui_basics/layout/juce_StretchableObjectResizer.cpp
file added
+123
JuceLibraryCode/modules/juce_gui_basics/layout/juce_StretchableObjectResizer.h
file added
+103
JuceLibraryCode/modules/juce_gui_basics/layout/juce_TabbedButtonBar.cpp
file added
+581
JuceLibraryCode/modules/juce_gui_basics/layout/juce_TabbedButtonBar.h
file added
+374
JuceLibraryCode/modules/juce_gui_basics/layout/juce_TabbedComponent.cpp
file added
+315
JuceLibraryCode/modules/juce_gui_basics/layout/juce_TabbedComponent.h
file added
+226
JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.cpp
file added
+634
JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.h
file added
+342
JuceLibraryCode/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel.cpp
file added
+192
JuceLibraryCode/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel.h
file added
+247
JuceLibraryCode/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V1.cpp
file added
+574
JuceLibraryCode/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V1.h
file added
+104
JuceLibraryCode/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V2.cpp
file added
+3026
JuceLibraryCode/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V2.h
file added
+385
JuceLibraryCode/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V3.cpp
file added
+641
JuceLibraryCode/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V3.h
file added
+99
JuceLibraryCode/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V4.cpp
file added
+1485
JuceLibraryCode/modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V4.h
file added
+257
JuceLibraryCode/modules/juce_gui_basics/menus/juce_BurgerMenuComponent.cpp
file added
+294
JuceLibraryCode/modules/juce_gui_basics/menus/juce_BurgerMenuComponent.h
file added
+107
JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarComponent.cpp
file added
+359
JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarComponent.h
file added
+121
JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarModel.cpp
file added
+100
JuceLibraryCode/modules/juce_gui_basics/menus/juce_MenuBarModel.h
file added
+193
JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.cpp
file added
+1876
JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.h
file added
+769
JuceLibraryCode/modules/juce_gui_basics/misc/juce_BubbleComponent.cpp
file added
+151
JuceLibraryCode/modules/juce_gui_basics/misc/juce_BubbleComponent.h
file added
+187
JuceLibraryCode/modules/juce_gui_basics/misc/juce_DropShadower.cpp
file added
+223
JuceLibraryCode/modules/juce_gui_basics/misc/juce_DropShadower.h
file added
+82
JuceLibraryCode/modules/juce_gui_basics/misc/juce_JUCESplashScreen.cpp
file added
+367
JuceLibraryCode/modules/juce_gui_basics/misc/juce_JUCESplashScreen.h
file added
+78
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_ComponentDragger.cpp
file added
+68
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_ComponentDragger.h
file added
+102
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_DragAndDropContainer.cpp
file added
+617
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_DragAndDropContainer.h
file added
+252
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_DragAndDropTarget.h
file added
+155
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_FileDragAndDropTarget.h
file added
+107
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_LassoComponent.h
file added
+225
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseCursor.cpp
file added
+213
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseCursor.h
file added
+184
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.cpp
file added
+143
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.h
file added
+448
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseInactivityDetector.cpp
file added
+78
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseInactivityDetector.h
file added
+113
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseInputSource.cpp
file added
+777
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseInputSource.h
file added
+267
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseListener.cpp
file added
+40
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseListener.h
file added
+180
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_SelectedItemSet.h
file added
+325
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_TextDragAndDropTarget.h
file added
+107
JuceLibraryCode/modules/juce_gui_basics/mouse/juce_TooltipClient.h
file added
+89
JuceLibraryCode/modules/juce_gui_basics/native/juce_MultiTouchMapper.h
file added
+114
JuceLibraryCode/modules/juce_gui_basics/native/juce_android_ContentSharer.cpp
file added
+846
JuceLibraryCode/modules/juce_gui_basics/native/juce_android_FileChooser.cpp
file added
+228
JuceLibraryCode/modules/juce_gui_basics/native/juce_android_Windowing.cpp
file added
+1184
JuceLibraryCode/modules/juce_gui_basics/native/juce_common_MimeTypes.cpp
file added
+735
JuceLibraryCode/modules/juce_gui_basics/native/juce_ios_ContentSharer.cpp
file added
+210
JuceLibraryCode/modules/juce_gui_basics/native/juce_ios_FileChooser.mm
file added
+321
JuceLibraryCode/modules/juce_gui_basics/native/juce_ios_UIViewComponentPeer.mm
file added
+1163
JuceLibraryCode/modules/juce_gui_basics/native/juce_ios_Windowing.mm
file added
+753
JuceLibraryCode/modules/juce_gui_basics/native/juce_linux_FileChooser.cpp
file added
+256
JuceLibraryCode/modules/juce_gui_basics/native/juce_linux_X11.cpp
file added
+341
JuceLibraryCode/modules/juce_gui_basics/native/juce_linux_X11.h
file added
+142
JuceLibraryCode/modules/juce_gui_basics/native/juce_linux_X11_Clipboard.cpp
file added
+280
JuceLibraryCode/modules/juce_gui_basics/native/juce_linux_X11_Windowing.cpp
file added
+4336
JuceLibraryCode/modules/juce_gui_basics/native/juce_mac_FileChooser.mm
file added
+349
JuceLibraryCode/modules/juce_gui_basics/native/juce_mac_MainMenu.mm
file added
+811
JuceLibraryCode/modules/juce_gui_basics/native/juce_mac_MouseCursor.mm
file added
+192
JuceLibraryCode/modules/juce_gui_basics/native/juce_mac_NSViewComponentPeer.mm
file added
+2234
JuceLibraryCode/modules/juce_gui_basics/native/juce_mac_Windowing.mm
file added
+609
JuceLibraryCode/modules/juce_gui_basics/native/juce_win32_DragAndDrop.cpp
file added
+289
JuceLibraryCode/modules/juce_gui_basics/native/juce_win32_FileChooser.cpp
file added
+577
JuceLibraryCode/modules/juce_gui_basics/native/juce_win32_Windowing.cpp
file added
+4230
JuceLibraryCode/modules/juce_gui_basics/positioning/juce_MarkerList.cpp
file added
+285
JuceLibraryCode/modules/juce_gui_basics/positioning/juce_MarkerList.h
file added
+196
JuceLibraryCode/modules/juce_gui_basics/positioning/juce_RelativeCoordinate.cpp
file added
+154
JuceLibraryCode/modules/juce_gui_basics/positioning/juce_RelativeCoordinate.h
file added
+182
JuceLibraryCode/modules/juce_gui_basics/positioning/juce_RelativeCoordinatePositioner.cpp
file added
+337
JuceLibraryCode/modules/juce_gui_basics/positioning/juce_RelativeCoordinatePositioner.h
file added
+94
JuceLibraryCode/modules/juce_gui_basics/positioning/juce_RelativeParallelogram.cpp
file added
+141
JuceLibraryCode/modules/juce_gui_basics/positioning/juce_RelativeParallelogram.h
file added
+67
JuceLibraryCode/modules/juce_gui_basics/positioning/juce_RelativePoint.cpp
file added
+102
JuceLibraryCode/modules/juce_gui_basics/positioning/juce_RelativePoint.h
file added
+92
JuceLibraryCode/modules/juce_gui_basics/positioning/juce_RelativePointPath.cpp
file added
+263
JuceLibraryCode/modules/juce_gui_basics/positioning/juce_RelativePointPath.h
file added
+194
JuceLibraryCode/modules/juce_gui_basics/positioning/juce_RelativeRectangle.cpp
file added
+269
JuceLibraryCode/modules/juce_gui_basics/positioning/juce_RelativeRectangle.h
file added
+109
JuceLibraryCode/modules/juce_gui_basics/properties/juce_BooleanPropertyComponent.cpp
file added
+87
JuceLibraryCode/modules/juce_gui_basics/properties/juce_BooleanPropertyComponent.h
file added
+110
JuceLibraryCode/modules/juce_gui_basics/properties/juce_ButtonPropertyComponent.cpp
file added
+47
JuceLibraryCode/modules/juce_gui_basics/properties/juce_ButtonPropertyComponent.h
file added
+77
JuceLibraryCode/modules/juce_gui_basics/properties/juce_ChoicePropertyComponent.cpp
file added
+280
JuceLibraryCode/modules/juce_gui_basics/properties/juce_ChoicePropertyComponent.h
file added
+155
JuceLibraryCode/modules/juce_gui_basics/properties/juce_MultiChoicePropertyComponent.cpp
file added
+340
JuceLibraryCode/modules/juce_gui_basics/properties/juce_MultiChoicePropertyComponent.h
file added
+127
JuceLibraryCode/modules/juce_gui_basics/properties/juce_PropertyComponent.cpp
file added
+57
JuceLibraryCode/modules/juce_gui_basics/properties/juce_PropertyComponent.h
file added
+146
JuceLibraryCode/modules/juce_gui_basics/properties/juce_PropertyPanel.cpp
file added
+374
JuceLibraryCode/modules/juce_gui_basics/properties/juce_PropertyPanel.h
file added
+179
JuceLibraryCode/modules/juce_gui_basics/properties/juce_SliderPropertyComponent.cpp
file added
+87
JuceLibraryCode/modules/juce_gui_basics/properties/juce_SliderPropertyComponent.h
file added
+108
JuceLibraryCode/modules/juce_gui_basics/properties/juce_TextPropertyComponent.cpp
file added
+262
JuceLibraryCode/modules/juce_gui_basics/properties/juce_TextPropertyComponent.h
file added
+188
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.cpp
file added
+650
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.h
file added
+453
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ImageComponent.cpp
file added
+84
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ImageComponent.h
file added
+80
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.cpp
file added
+481
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.h
file added
+365
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.cpp
file added
+957
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.h
file added
+606
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ProgressBar.cpp
file added
+118
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ProgressBar.h
file added
+144
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.cpp
file added
+1648
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.h
file added
+1001
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TableHeaderComponent.cpp
file added
+901
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TableHeaderComponent.h
file added
+459
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TableListBox.cpp
file added
+488
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TableListBox.h
file added
+353
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TextEditor.cpp
file added
+2545
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TextEditor.h
file added
+790
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.cpp
file added
+805
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.h
file added
+332
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ToolbarItemComponent.cpp
file added
+243
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ToolbarItemComponent.h
file added
+207
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ToolbarItemFactory.h
file added
+110
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ToolbarItemPalette.cpp
file added
+111
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ToolbarItemPalette.h
file added
+78
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.cpp
file added
+1915
JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.h
file added
+943
JuceLibraryCode/modules/juce_gui_basics/windows/juce_AlertWindow.cpp
file added
+708
JuceLibraryCode/modules/juce_gui_basics/windows/juce_AlertWindow.h
file added
+490
JuceLibraryCode/modules/juce_gui_basics/windows/juce_CallOutBox.cpp
file added
+267
JuceLibraryCode/modules/juce_gui_basics/windows/juce_CallOutBox.h
file added
+188
JuceLibraryCode/modules/juce_gui_basics/windows/juce_ComponentPeer.cpp
file added
+575
JuceLibraryCode/modules/juce_gui_basics/windows/juce_ComponentPeer.h
file added
+399
JuceLibraryCode/modules/juce_gui_basics/windows/juce_DialogWindow.cpp
file added
+173
JuceLibraryCode/modules/juce_gui_basics/windows/juce_DialogWindow.h
file added
+266
JuceLibraryCode/modules/juce_gui_basics/windows/juce_DocumentWindow.cpp
file added
+361
JuceLibraryCode/modules/juce_gui_basics/windows/juce_DocumentWindow.h
file added
+297
JuceLibraryCode/modules/juce_gui_basics/windows/juce_NativeMessageBox.h
file added
+222
JuceLibraryCode/modules/juce_gui_basics/windows/juce_ResizableWindow.cpp
file added
+655
JuceLibraryCode/modules/juce_gui_basics/windows/juce_ResizableWindow.h
file added
+412
JuceLibraryCode/modules/juce_gui_basics/windows/juce_ThreadWithProgressWindow.cpp
file added
+120
JuceLibraryCode/modules/juce_gui_basics/windows/juce_ThreadWithProgressWindow.h
file added
+176
JuceLibraryCode/modules/juce_gui_basics/windows/juce_TooltipWindow.cpp
file added
+204
JuceLibraryCode/modules/juce_gui_basics/windows/juce_TooltipWindow.h
file added
+146
JuceLibraryCode/modules/juce_gui_basics/windows/juce_TopLevelWindow.cpp
file added
+350
JuceLibraryCode/modules/juce_gui_basics/windows/juce_TopLevelWindow.h
file added
+166
JuceLibraryCode/modules/juce_gui_extra/code_editor/juce_CPlusPlusCodeTokeniser.cpp
file added
+75
JuceLibraryCode/modules/juce_gui_extra/code_editor/juce_CPlusPlusCodeTokeniser.h
file added
+73
JuceLibraryCode/modules/juce_gui_extra/code_editor/juce_CPlusPlusCodeTokeniserFunctions.h
file added
+675
JuceLibraryCode/modules/juce_gui_extra/code_editor/juce_CodeDocument.cpp
file added
+942
JuceLibraryCode/modules/juce_gui_extra/code_editor/juce_CodeDocument.h
file added
+420
JuceLibraryCode/modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.cpp
file added
+1652
JuceLibraryCode/modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.h
file added
+439
JuceLibraryCode/modules/juce_gui_extra/code_editor/juce_CodeTokeniser.h
file added
+60
JuceLibraryCode/modules/juce_gui_extra/code_editor/juce_LuaCodeTokeniser.cpp
file added
+240
JuceLibraryCode/modules/juce_gui_extra/code_editor/juce_LuaCodeTokeniser.h
file added
+66
JuceLibraryCode/modules/juce_gui_extra/code_editor/juce_XMLCodeTokeniser.cpp
file added
+173
JuceLibraryCode/modules/juce_gui_extra/code_editor/juce_XMLCodeTokeniser.h
file added
+64
JuceLibraryCode/modules/juce_gui_extra/documents/juce_FileBasedDocument.cpp
file added
+266
JuceLibraryCode/modules/juce_gui_extra/documents/juce_FileBasedDocument.h
file added
+296
JuceLibraryCode/modules/juce_gui_extra/embedding/juce_ActiveXControlComponent.h
file added
+130
JuceLibraryCode/modules/juce_gui_extra/embedding/juce_AndroidViewComponent.h
file added
+87
JuceLibraryCode/modules/juce_gui_extra/embedding/juce_NSViewComponent.h
file added
+92
JuceLibraryCode/modules/juce_gui_extra/embedding/juce_UIViewComponent.h
file added
+91
JuceLibraryCode/modules/juce_gui_extra/embedding/juce_XEmbedComponent.h
file added
+116
JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.cpp
file added
+188
JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h
file added
+101
JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.mm
file added
+27
JuceLibraryCode/modules/juce_gui_extra/misc/juce_AnimatedAppComponent.cpp
file added
+55
JuceLibraryCode/modules/juce_gui_extra/misc/juce_AnimatedAppComponent.h
file added
+78
JuceLibraryCode/modules/juce_gui_extra/misc/juce_AppleRemote.h
file added
+118
JuceLibraryCode/modules/juce_gui_extra/misc/juce_BubbleMessageComponent.cpp
file added
+125
JuceLibraryCode/modules/juce_gui_extra/misc/juce_BubbleMessageComponent.h
file added
+132
JuceLibraryCode/modules/juce_gui_extra/misc/juce_ColourSelector.cpp
file added
+583
JuceLibraryCode/modules/juce_gui_extra/misc/juce_ColourSelector.h
file added
+177
JuceLibraryCode/modules/juce_gui_extra/misc/juce_KeyMappingEditorComponent.cpp
file added
+471
JuceLibraryCode/modules/juce_gui_extra/misc/juce_KeyMappingEditorComponent.h
file added
+136
JuceLibraryCode/modules/juce_gui_extra/misc/juce_LiveConstantEditor.cpp
file added
+498
JuceLibraryCode/modules/juce_gui_extra/misc/juce_LiveConstantEditor.h
file added
+312
JuceLibraryCode/modules/juce_gui_extra/misc/juce_PreferencesPanel.cpp
file added
+157
JuceLibraryCode/modules/juce_gui_extra/misc/juce_PreferencesPanel.h
file added
+148
JuceLibraryCode/modules/juce_gui_extra/misc/juce_PushNotifications.cpp
file added
+230
JuceLibraryCode/modules/juce_gui_extra/misc/juce_PushNotifications.h
file added
+718
JuceLibraryCode/modules/juce_gui_extra/misc/juce_RecentlyOpenedFilesList.cpp
file added
+189
JuceLibraryCode/modules/juce_gui_extra/misc/juce_RecentlyOpenedFilesList.h
file added
+181
JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.cpp
file added
+102
JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.h
file added
+157
JuceLibraryCode/modules/juce_gui_extra/misc/juce_SystemTrayIconComponent.cpp
file added
+43
JuceLibraryCode/modules/juce_gui_extra/misc/juce_SystemTrayIconComponent.h
file added
+107
JuceLibraryCode/modules/juce_gui_extra/misc/juce_WebBrowserComponent.h
file added
+160
JuceLibraryCode/modules/juce_gui_extra/native/juce_AndroidViewComponent.cpp
file added
+191
JuceLibraryCode/modules/juce_gui_extra/native/juce_android_PushNotifications.cpp
file added
+1649
JuceLibraryCode/modules/juce_gui_extra/native/juce_android_WebBrowserComponent.cpp
file added
+608
JuceLibraryCode/modules/juce_gui_extra/native/juce_ios_PushNotifications.cpp
file added
+987
JuceLibraryCode/modules/juce_gui_extra/native/juce_ios_UIViewComponent.mm
file added
+133
JuceLibraryCode/modules/juce_gui_extra/native/juce_linux_X11_SystemTrayIcon.cpp
file added
+149
JuceLibraryCode/modules/juce_gui_extra/native/juce_linux_X11_WebBrowserComponent.cpp
file added
+824
JuceLibraryCode/modules/juce_gui_extra/native/juce_linux_XEmbedComponent.cpp
file added
+685
JuceLibraryCode/modules/juce_gui_extra/native/juce_mac_AppleRemote.mm
file added
+269
JuceLibraryCode/modules/juce_gui_extra/native/juce_mac_CarbonViewWrapperComponent.h
file added
+347
JuceLibraryCode/modules/juce_gui_extra/native/juce_mac_NSViewComponent.mm
file added
+248
JuceLibraryCode/modules/juce_gui_extra/native/juce_mac_PushNotifications.cpp
file added
+553
JuceLibraryCode/modules/juce_gui_extra/native/juce_mac_SystemTrayIcon.cpp
file added
+276
JuceLibraryCode/modules/juce_gui_extra/native/juce_mac_WebBrowserComponent.mm
file added
+487
JuceLibraryCode/modules/juce_gui_extra/native/juce_win32_ActiveXComponent.cpp
file added
+458
JuceLibraryCode/modules/juce_gui_extra/native/juce_win32_SystemTrayIcon.cpp
file added
+243
JuceLibraryCode/modules/juce_gui_extra/native/juce_win32_WebBrowserComponent.cpp
file added
+435
    add JUCE sources
    
        
file modified
+1 -1
file modified
+2 -2
file modified
+11 -11