From bac6d332a33ca0647de4773f149a2951289052b6 Mon Sep 17 00:00:00 2001 From: Julian Storer Date: Sun, 7 Feb 2010 15:18:10 +0000 Subject: [PATCH] Created an option to use the amalgamated template files as a set of 4 separate files instead of one big one, to help when compiling in low-memory environments. Moved all the amalgamated templates out of the src folder and into their own subfolder, so if you have files that include them, you might need to tweak the path that you're using. Also tweaked the amalgamator to deal with this new setup. --- amalgamation/juce_amalgamated1.cpp | 31 + amalgamation/juce_amalgamated2.cpp | 31 + amalgamation/juce_amalgamated3.cpp | 31 + amalgamation/juce_amalgamated4.cpp | 31 + amalgamation/juce_amalgamated_template.cpp | 388 +++ amalgamation/juce_amalgamated_template.h | 46 + build/linux/JUCE.make | 48 +- extras/amalgamator/juce_AmalgamatorMain.cpp | 2 +- .../mac/Amalgamator.xcodeproj/project.pbxproj | 6 +- .../src/juce_LibrarySource.mm | 2 +- .../demo/src/juce_LibrarySource.mm | 2 +- extras/juce demo/src/juce_LibrarySource.cpp | 2 +- extras/juce demo/src/juce_LibrarySource.mm | 2 +- extras/the jucer/src/juce_LibrarySource.cpp | 2 +- extras/the jucer/src/juce_LibrarySource.mm | 2 +- juce_amalgamated.cpp | 2753 +++++++++-------- juce_amalgamated.h | 1653 ++++++---- 17 files changed, 3132 insertions(+), 1900 deletions(-) create mode 100644 amalgamation/juce_amalgamated1.cpp create mode 100644 amalgamation/juce_amalgamated2.cpp create mode 100644 amalgamation/juce_amalgamated3.cpp create mode 100644 amalgamation/juce_amalgamated4.cpp create mode 100644 amalgamation/juce_amalgamated_template.cpp create mode 100644 amalgamation/juce_amalgamated_template.h diff --git a/amalgamation/juce_amalgamated1.cpp b/amalgamation/juce_amalgamated1.cpp new file mode 100644 index 0000000000..08bce1c572 --- /dev/null +++ b/amalgamation/juce_amalgamated1.cpp @@ -0,0 +1,31 @@ +/* + ============================================================================== + + This file is part of the JUCE library - "Jules' Utility Class Extensions" + Copyright 2004-9 by Raw Material Software Ltd. + + ------------------------------------------------------------------------------ + + JUCE can be redistributed and/or modified under the terms of the GNU General + Public License (Version 2), as published by the Free Software Foundation. + A copy of the license is included in the JUCE distribution, or can be found + online at www.gnu.org/licenses. + + JUCE is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + ------------------------------------------------------------------------------ + + To release a closed-source product which uses JUCE, commercial licenses are + available: visit www.rawmaterialsoftware.com/juce for more information. + + ============================================================================== +*/ + +#define JUCE_BUILD_CORE 1 +#define JUCE_BUILD_MISC 0 +#define JUCE_BUILD_GUI 0 +#define JUCE_BUILD_NATIVE 0 + +#include "juce_amalgamated_template.cpp" diff --git a/amalgamation/juce_amalgamated2.cpp b/amalgamation/juce_amalgamated2.cpp new file mode 100644 index 0000000000..bbb143a7f4 --- /dev/null +++ b/amalgamation/juce_amalgamated2.cpp @@ -0,0 +1,31 @@ +/* + ============================================================================== + + This file is part of the JUCE library - "Jules' Utility Class Extensions" + Copyright 2004-9 by Raw Material Software Ltd. + + ------------------------------------------------------------------------------ + + JUCE can be redistributed and/or modified under the terms of the GNU General + Public License (Version 2), as published by the Free Software Foundation. + A copy of the license is included in the JUCE distribution, or can be found + online at www.gnu.org/licenses. + + JUCE is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + ------------------------------------------------------------------------------ + + To release a closed-source product which uses JUCE, commercial licenses are + available: visit www.rawmaterialsoftware.com/juce for more information. + + ============================================================================== +*/ + +#define JUCE_BUILD_CORE 0 +#define JUCE_BUILD_MISC 1 +#define JUCE_BUILD_GUI 0 +#define JUCE_BUILD_NATIVE 0 + +#include "juce_amalgamated_template.cpp" diff --git a/amalgamation/juce_amalgamated3.cpp b/amalgamation/juce_amalgamated3.cpp new file mode 100644 index 0000000000..559fb631d4 --- /dev/null +++ b/amalgamation/juce_amalgamated3.cpp @@ -0,0 +1,31 @@ +/* + ============================================================================== + + This file is part of the JUCE library - "Jules' Utility Class Extensions" + Copyright 2004-9 by Raw Material Software Ltd. + + ------------------------------------------------------------------------------ + + JUCE can be redistributed and/or modified under the terms of the GNU General + Public License (Version 2), as published by the Free Software Foundation. + A copy of the license is included in the JUCE distribution, or can be found + online at www.gnu.org/licenses. + + JUCE is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + ------------------------------------------------------------------------------ + + To release a closed-source product which uses JUCE, commercial licenses are + available: visit www.rawmaterialsoftware.com/juce for more information. + + ============================================================================== +*/ + +#define JUCE_BUILD_CORE 0 +#define JUCE_BUILD_MISC 0 +#define JUCE_BUILD_GUI 1 +#define JUCE_BUILD_NATIVE 0 + +#include "juce_amalgamated_template.cpp" diff --git a/amalgamation/juce_amalgamated4.cpp b/amalgamation/juce_amalgamated4.cpp new file mode 100644 index 0000000000..95631abeaa --- /dev/null +++ b/amalgamation/juce_amalgamated4.cpp @@ -0,0 +1,31 @@ +/* + ============================================================================== + + This file is part of the JUCE library - "Jules' Utility Class Extensions" + Copyright 2004-9 by Raw Material Software Ltd. + + ------------------------------------------------------------------------------ + + JUCE can be redistributed and/or modified under the terms of the GNU General + Public License (Version 2), as published by the Free Software Foundation. + A copy of the license is included in the JUCE distribution, or can be found + online at www.gnu.org/licenses. + + JUCE is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + ------------------------------------------------------------------------------ + + To release a closed-source product which uses JUCE, commercial licenses are + available: visit www.rawmaterialsoftware.com/juce for more information. + + ============================================================================== +*/ + +#define JUCE_BUILD_CORE 0 +#define JUCE_BUILD_MISC 0 +#define JUCE_BUILD_GUI 0 +#define JUCE_BUILD_NATIVE 1 + +#include "juce_amalgamated_template.cpp" diff --git a/amalgamation/juce_amalgamated_template.cpp b/amalgamation/juce_amalgamated_template.cpp new file mode 100644 index 0000000000..a2d12034de --- /dev/null +++ b/amalgamation/juce_amalgamated_template.cpp @@ -0,0 +1,388 @@ +/* + ============================================================================== + + This file is part of the JUCE library - "Jules' Utility Class Extensions" + Copyright 2004-9 by Raw Material Software Ltd. + + ------------------------------------------------------------------------------ + + JUCE can be redistributed and/or modified under the terms of the GNU General + Public License (Version 2), as published by the Free Software Foundation. + A copy of the license is included in the JUCE distribution, or can be found + online at www.gnu.org/licenses. + + JUCE is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + ------------------------------------------------------------------------------ + + To release a closed-source product which uses JUCE, commercial licenses are + available: visit www.rawmaterialsoftware.com/juce for more information. + + ============================================================================== +*/ + +/* + This monolithic file contains the entire Juce source tree! + + To build an app which uses Juce, all you need to do is to add this + file to your project, and include juce.h in your own cpp files. + +*/ + +#ifdef __JUCE_JUCEHEADER__ + /* When you add the amalgamated cpp file to your project, you mustn't include it in + a file where you've already included juce.h - just put it inside a file on its own, + possibly with your config flags preceding it, but don't include anything else. */ + #error +#endif + +#include "../src/core/juce_TargetPlatform.h" // FORCE_AMALGAMATOR_INCLUDE +#include "../juce_Config.h" // FORCE_AMALGAMATOR_INCLUDE + +#ifndef JUCE_BUILD_CORE + #define JUCE_BUILD_CORE 1 +#endif +#ifndef JUCE_BUILD_MISC + #define JUCE_BUILD_MISC 1 +#endif +#ifndef JUCE_BUILD_GUI + #define JUCE_BUILD_GUI 1 +#endif +#ifndef JUCE_BUILD_NATIVE + #define JUCE_BUILD_NATIVE 1 +#endif + +#if JUCE_ONLY_BUILD_CORE_LIBRARY + #undef JUCE_BUILD_MISC + #undef JUCE_BUILD_GUI +#endif + +//============================================================================== +#if JUCE_BUILD_NATIVE || JUCE_BUILD_CORE + #if JUCE_WINDOWS + #include "../src/native/windows/juce_win32_NativeIncludes.h" + #elif JUCE_LINUX + #include "../src/native/linux/juce_linux_NativeIncludes.h" + #elif JUCE_MAC || JUCE_IPHONE + #include "../src/native/mac/juce_mac_NativeIncludes.h" + #else + #error "Unknown platform!" + #endif +#endif + +//============================================================================== +#define DONT_SET_USING_JUCE_NAMESPACE 1 +#undef max +#undef min +#define NO_DUMMY_DECL + +#if JUCE_BUILD_NATIVE + #include "../src/../juce_amalgamated.h" +#endif + +#if (defined(_MSC_VER) && (_MSC_VER <= 1200)) + #pragma warning (disable: 4309 4305) +#endif + +#if JUCE_MAC && JUCE_32BIT && JUCE_SUPPORT_CARBON && JUCE_BUILD_NATIVE && ! JUCE_ONLY_BUILD_CORE_LIBRARY + BEGIN_JUCE_NAMESPACE + #include "../src/native/mac/juce_mac_CarbonViewWrapperComponent.h" + END_JUCE_NAMESPACE +#endif + +#define JUCE_AMALGAMATED_TEMPLATE 1 + +//============================================================================== +#if JUCE_BUILD_CORE + #include "../src/core/juce_FileLogger.cpp" + #include "../src/core/juce_Logger.cpp" + #include "../src/core/juce_Random.cpp" + #include "../src/core/juce_RelativeTime.cpp" + #include "../src/core/juce_SystemStats.cpp" + #include "../src/core/juce_Time.cpp" + #include "../src/containers/juce_BitArray.cpp" + #include "../src/containers/juce_MemoryBlock.cpp" + #include "../src/containers/juce_PropertySet.cpp" + #include "../src/containers/juce_Variant.cpp" + #include "../src/containers/juce_NamedValueSet.cpp" + #include "../src/containers/juce_DynamicObject.cpp" + #include "../src/cryptography/juce_BlowFish.cpp" + #include "../src/cryptography/juce_MD5.cpp" + #include "../src/cryptography/juce_Primes.cpp" + #include "../src/cryptography/juce_RSAKey.cpp" + #include "../src/io/streams/juce_InputStream.cpp" + #include "../src/io/streams/juce_OutputStream.cpp" + #include "../src/io/files/juce_DirectoryIterator.cpp" + #include "../src/io/files/juce_File.cpp" + #include "../src/io/files/juce_FileInputStream.cpp" + #include "../src/io/files/juce_FileOutputStream.cpp" + #include "../src/io/files/juce_FileSearchPath.cpp" + #include "../src/io/files/juce_NamedPipe.cpp" + #include "../src/io/files/juce_TemporaryFile.cpp" + #include "../src/io/network/juce_Socket.cpp" + #include "../src/io/network/juce_URL.cpp" + #include "../src/io/streams/juce_BufferedInputStream.cpp" + #include "../src/io/streams/juce_FileInputSource.cpp" + #include "../src/io/streams/juce_MemoryInputStream.cpp" + #include "../src/io/streams/juce_MemoryOutputStream.cpp" + #include "../src/io/streams/juce_SubregionStream.cpp" + #include "../src/core/juce_PerformanceCounter.cpp" + #include "../src/core/juce_Uuid.cpp" + #include "../src/io/files/juce_ZipFile.cpp" + #include "../src/text/juce_CharacterFunctions.cpp" + #include "../src/text/juce_LocalisedStrings.cpp" + #include "../src/text/juce_String.cpp" + #include "../src/text/juce_StringArray.cpp" + #include "../src/text/juce_StringPairArray.cpp" + #include "../src/text/juce_XmlDocument.cpp" + #include "../src/text/juce_XmlElement.cpp" + #include "../src/threads/juce_InterProcessLock.cpp" + #include "../src/threads/juce_ReadWriteLock.cpp" + #include "../src/threads/juce_Thread.cpp" + #include "../src/threads/juce_ThreadPool.cpp" + #include "../src/threads/juce_TimeSliceThread.cpp" +#endif + +#if JUCE_BUILD_MISC + #include "../src/containers/juce_ValueTree.cpp" + #include "../src/containers/juce_Value.cpp" + #include "../src/application/juce_Application.cpp" + #include "../src/application/juce_ApplicationCommandInfo.cpp" + #include "../src/application/juce_ApplicationCommandManager.cpp" + #include "../src/application/juce_ApplicationCommandTarget.cpp" + #include "../src/application/juce_ApplicationProperties.cpp" + #include "../src/utilities/juce_DeletedAtShutdown.cpp" + #include "../src/utilities/juce_PropertiesFile.cpp" + #include "../src/utilities/juce_FileBasedDocument.cpp" + #include "../src/utilities/juce_RecentlyOpenedFilesList.cpp" + #include "../src/utilities/juce_UndoManager.cpp" + #include "../src/audio/audio_file_formats/juce_AiffAudioFormat.cpp" + #include "../src/audio/audio_file_formats/juce_AudioCDReader.cpp" + #include "../src/audio/audio_file_formats/juce_AudioFormat.cpp" + #include "../src/audio/audio_file_formats/juce_AudioFormatManager.cpp" + #include "../src/audio/audio_file_formats/juce_AudioSubsectionReader.cpp" + #include "../src/audio/audio_file_formats/juce_AudioThumbnail.cpp" + #include "../src/audio/audio_file_formats/juce_AudioThumbnailCache.cpp" + #include "../src/audio/audio_file_formats/juce_QuickTimeAudioFormat.cpp" + #include "../src/audio/audio_file_formats/juce_WavAudioFormat.cpp" + #include "../src/audio/audio_sources/juce_AudioFormatReaderSource.cpp" + #include "../src/audio/audio_sources/juce_AudioSourcePlayer.cpp" + #include "../src/audio/audio_sources/juce_AudioTransportSource.cpp" + #include "../src/audio/audio_sources/juce_BufferingAudioSource.cpp" + #include "../src/audio/audio_sources/juce_ChannelRemappingAudioSource.cpp" + #include "../src/audio/audio_sources/juce_IIRFilterAudioSource.cpp" + #include "../src/audio/audio_sources/juce_MixerAudioSource.cpp" + #include "../src/audio/audio_sources/juce_ResamplingAudioSource.cpp" + #include "../src/audio/audio_sources/juce_ToneGeneratorAudioSource.cpp" + #include "../src/audio/devices/juce_AudioDeviceManager.cpp" + #include "../src/audio/devices/juce_AudioIODevice.cpp" + #include "../src/audio/devices/juce_AudioIODeviceType.cpp" + #include "../src/audio/devices/juce_MidiOutput.cpp" + #include "../src/audio/dsp/juce_AudioDataConverters.cpp" + #include "../src/audio/dsp/juce_AudioSampleBuffer.cpp" + #include "../src/audio/dsp/juce_IIRFilter.cpp" + #include "../src/audio/midi/juce_MidiBuffer.cpp" + #include "../src/audio/midi/juce_MidiFile.cpp" + #include "../src/audio/midi/juce_MidiKeyboardState.cpp" + #include "../src/audio/midi/juce_MidiMessage.cpp" + #include "../src/audio/midi/juce_MidiMessageCollector.cpp" + #include "../src/audio/midi/juce_MidiMessageSequence.cpp" + #include "../src/audio/plugins/juce_AudioPluginFormat.cpp" + #include "../src/audio/plugins/juce_AudioPluginFormatManager.cpp" + #include "../src/audio/plugins/juce_AudioPluginInstance.cpp" + #include "../src/audio/plugins/juce_KnownPluginList.cpp" + #include "../src/audio/plugins/juce_PluginDescription.cpp" + #include "../src/audio/plugins/juce_PluginDirectoryScanner.cpp" + #include "../src/audio/plugins/juce_PluginListComponent.cpp" + #include "../src/audio/plugins/formats/juce_AudioUnitPluginFormat.mm" + #include "../src/audio/plugins/formats/juce_VSTPluginFormat.mm" + #include "../src/audio/processors/juce_AudioProcessor.cpp" + #include "../src/audio/processors/juce_AudioProcessorEditor.cpp" + #include "../src/audio/processors/juce_AudioProcessorGraph.cpp" + #include "../src/audio/processors/juce_AudioProcessorPlayer.cpp" + #include "../src/audio/processors/juce_GenericAudioProcessorEditor.cpp" + #include "../src/audio/synthesisers/juce_Sampler.cpp" + #include "../src/audio/synthesisers/juce_Synthesiser.cpp" + #include "../src/events/juce_ActionBroadcaster.cpp" + #include "../src/events/juce_ActionListenerList.cpp" + #include "../src/events/juce_AsyncUpdater.cpp" + #include "../src/events/juce_ChangeBroadcaster.cpp" + #include "../src/events/juce_ChangeListenerList.cpp" + #include "../src/events/juce_InterprocessConnection.cpp" + #include "../src/events/juce_InterprocessConnectionServer.cpp" + #include "../src/events/juce_Message.cpp" + #include "../src/events/juce_MessageListener.cpp" + #include "../src/events/juce_MessageManager.cpp" + #include "../src/events/juce_MultiTimer.cpp" + #include "../src/events/juce_Timer.cpp" +#endif + +#if JUCE_BUILD_GUI + #include "../src/gui/components/juce_Component.cpp" + #include "../src/gui/components/juce_ComponentListener.cpp" + #include "../src/gui/components/juce_Desktop.cpp" + #include "../src/gui/components/buttons/juce_ArrowButton.cpp" + #include "../src/gui/components/buttons/juce_Button.cpp" + #include "../src/gui/components/buttons/juce_DrawableButton.cpp" + #include "../src/gui/components/buttons/juce_HyperlinkButton.cpp" + #include "../src/gui/components/buttons/juce_ImageButton.cpp" + #include "../src/gui/components/buttons/juce_ShapeButton.cpp" + #include "../src/gui/components/buttons/juce_TextButton.cpp" + #include "../src/gui/components/buttons/juce_ToggleButton.cpp" + #include "../src/gui/components/buttons/juce_ToolbarButton.cpp" + #include "../src/gui/components/code_editor/juce_CodeDocument.cpp" + #include "../src/gui/components/code_editor/juce_CodeEditorComponent.cpp" + #include "../src/gui/components/code_editor/juce_CPlusPlusCodeTokeniser.cpp" + #include "../src/gui/components/controls/juce_ComboBox.cpp" + #include "../src/gui/components/controls/juce_Label.cpp" + #include "../src/gui/components/controls/juce_ListBox.cpp" + #include "../src/gui/components/controls/juce_ProgressBar.cpp" + #include "../src/gui/components/controls/juce_Slider.cpp" + #include "../src/gui/components/controls/juce_TableHeaderComponent.cpp" + #include "../src/gui/components/controls/juce_TableListBox.cpp" + #include "../src/gui/components/controls/juce_TextEditor.cpp" + #include "../src/gui/components/controls/juce_Toolbar.cpp" + #include "../src/gui/components/controls/juce_ToolbarItemComponent.cpp" + #include "../src/gui/components/controls/juce_ToolbarItemPalette.cpp" + #include "../src/gui/components/controls/juce_TreeView.cpp" + #include "../src/gui/components/filebrowser/juce_DirectoryContentsDisplayComponent.cpp" + #include "../src/gui/components/filebrowser/juce_DirectoryContentsList.cpp" + #include "../src/gui/components/filebrowser/juce_FileBrowserComponent.cpp" + #include "../src/gui/components/filebrowser/juce_FileChooser.cpp" + #include "../src/gui/components/filebrowser/juce_FileChooserDialogBox.cpp" + #include "../src/gui/components/filebrowser/juce_FileFilter.cpp" + #include "../src/gui/components/filebrowser/juce_FileListComponent.cpp" + #include "../src/gui/components/filebrowser/juce_FilenameComponent.cpp" + #include "../src/gui/components/filebrowser/juce_FileSearchPathListComponent.cpp" + #include "../src/gui/components/filebrowser/juce_FileTreeComponent.cpp" + #include "../src/gui/components/filebrowser/juce_ImagePreviewComponent.cpp" + #include "../src/gui/components/filebrowser/juce_WildcardFileFilter.cpp" + #include "../src/gui/components/keyboard/juce_KeyboardFocusTraverser.cpp" + #include "../src/gui/components/keyboard/juce_KeyListener.cpp" + #include "../src/gui/components/keyboard/juce_KeyMappingEditorComponent.cpp" + #include "../src/gui/components/keyboard/juce_KeyPress.cpp" + #include "../src/gui/components/keyboard/juce_KeyPressMappingSet.cpp" + #include "../src/gui/components/keyboard/juce_ModifierKeys.cpp" + #include "../src/gui/components/layout/juce_ComponentAnimator.cpp" + #include "../src/gui/components/layout/juce_ComponentBoundsConstrainer.cpp" + #include "../src/gui/components/layout/juce_ComponentMovementWatcher.cpp" + #include "../src/gui/components/layout/juce_GroupComponent.cpp" + #include "../src/gui/components/layout/juce_MultiDocumentPanel.cpp" + #include "../src/gui/components/layout/juce_ResizableBorderComponent.cpp" + #include "../src/gui/components/layout/juce_ResizableCornerComponent.cpp" + #include "../src/gui/components/layout/juce_ScrollBar.cpp" + #include "../src/gui/components/layout/juce_StretchableLayoutManager.cpp" + #include "../src/gui/components/layout/juce_StretchableLayoutResizerBar.cpp" + #include "../src/gui/components/layout/juce_StretchableObjectResizer.cpp" + #include "../src/gui/components/layout/juce_TabbedButtonBar.cpp" + #include "../src/gui/components/layout/juce_TabbedComponent.cpp" + #include "../src/gui/components/layout/juce_Viewport.cpp" + #include "../src/gui/components/lookandfeel/juce_LookAndFeel.cpp" + #include "../src/gui/components/lookandfeel/juce_OldSchoolLookAndFeel.cpp" + #include "../src/gui/components/menus/juce_MenuBarComponent.cpp" + #include "../src/gui/components/menus/juce_MenuBarModel.cpp" + #include "../src/gui/components/menus/juce_PopupMenu.cpp" + #include "../src/gui/components/mouse/juce_ComponentDragger.cpp" + #include "../src/gui/components/mouse/juce_DragAndDropContainer.cpp" + #include "../src/gui/components/mouse/juce_MouseCursor.cpp" + #include "../src/gui/components/mouse/juce_MouseEvent.cpp" + #include "../src/gui/components/mouse/juce_MouseHoverDetector.cpp" + #include "../src/gui/components/mouse/juce_MouseListener.cpp" + #include "../src/gui/components/properties/juce_BooleanPropertyComponent.cpp" + #include "../src/gui/components/properties/juce_ButtonPropertyComponent.cpp" + #include "../src/gui/components/properties/juce_ChoicePropertyComponent.cpp" + #include "../src/gui/components/properties/juce_PropertyComponent.cpp" + #include "../src/gui/components/properties/juce_PropertyPanel.cpp" + #include "../src/gui/components/properties/juce_SliderPropertyComponent.cpp" + #include "../src/gui/components/properties/juce_TextPropertyComponent.cpp" + #include "../src/gui/components/special/juce_AudioDeviceSelectorComponent.cpp" + #include "../src/gui/components/special/juce_BubbleComponent.cpp" + #include "../src/gui/components/special/juce_BubbleMessageComponent.cpp" + #include "../src/gui/components/special/juce_ColourSelector.cpp" + #include "../src/gui/components/special/juce_DropShadower.cpp" + #include "../src/gui/components/special/juce_MagnifierComponent.cpp" + #include "../src/gui/components/special/juce_MidiKeyboardComponent.cpp" + #include "../src/gui/components/special/juce_OpenGLComponent.cpp" + #include "../src/gui/components/special/juce_PreferencesPanel.cpp" + #include "../src/gui/components/special/juce_SystemTrayIconComponent.cpp" + #include "../src/gui/components/windows/juce_AlertWindow.cpp" + #include "../src/gui/components/windows/juce_ComponentPeer.cpp" + #include "../src/gui/components/windows/juce_DialogWindow.cpp" + #include "../src/gui/components/windows/juce_DocumentWindow.cpp" + #include "../src/gui/components/windows/juce_ResizableWindow.cpp" + #include "../src/gui/components/windows/juce_SplashScreen.cpp" + #include "../src/gui/components/windows/juce_ThreadWithProgressWindow.cpp" + #include "../src/gui/components/windows/juce_TooltipWindow.cpp" + #include "../src/gui/components/windows/juce_TopLevelWindow.cpp" + #include "../src/gui/graphics/colour/juce_Colour.cpp" + #include "../src/gui/graphics/colour/juce_ColourGradient.cpp" + #include "../src/gui/graphics/colour/juce_Colours.cpp" + #include "../src/gui/graphics/contexts/juce_EdgeTable.cpp" + #include "../src/gui/graphics/contexts/juce_FillType.cpp" + #include "../src/gui/graphics/contexts/juce_Graphics.cpp" + #include "../src/gui/graphics/contexts/juce_Justification.cpp" + #include "../src/gui/graphics/contexts/juce_LowLevelGraphicsPostScriptRenderer.cpp" + #include "../src/gui/graphics/contexts/juce_LowLevelGraphicsSoftwareRenderer.cpp" + #include "../src/gui/graphics/contexts/juce_RectanglePlacement.cpp" + #include "../src/gui/graphics/drawables/juce_Drawable.cpp" + #include "../src/gui/graphics/drawables/juce_DrawableComposite.cpp" + #include "../src/gui/graphics/drawables/juce_DrawableImage.cpp" + #include "../src/gui/graphics/drawables/juce_DrawablePath.cpp" + #include "../src/gui/graphics/drawables/juce_DrawableText.cpp" + #include "../src/gui/graphics/drawables/juce_SVGParser.cpp" + #include "../src/gui/graphics/effects/juce_DropShadowEffect.cpp" + #include "../src/gui/graphics/effects/juce_GlowEffect.cpp" + #include "../src/gui/graphics/effects/juce_ReduceOpacityEffect.cpp" + #include "../src/gui/graphics/fonts/juce_Font.cpp" + #include "../src/gui/graphics/fonts/juce_GlyphArrangement.cpp" + #include "../src/gui/graphics/fonts/juce_TextLayout.cpp" + #include "../src/gui/graphics/fonts/juce_Typeface.cpp" + #include "../src/gui/graphics/geometry/juce_AffineTransform.cpp" + #include "../src/gui/graphics/geometry/juce_BorderSize.cpp" + #include "../src/gui/graphics/geometry/juce_Line.cpp" + #include "../src/gui/graphics/geometry/juce_Path.cpp" + #include "../src/gui/graphics/geometry/juce_PathIterator.cpp" + #include "../src/gui/graphics/geometry/juce_PathStrokeType.cpp" + #include "../src/gui/graphics/geometry/juce_PositionedRectangle.cpp" + #include "../src/gui/graphics/geometry/juce_RectangleList.cpp" + #include "../src/gui/graphics/imaging/juce_Image.cpp" + #include "../src/gui/graphics/imaging/juce_ImageCache.cpp" + #include "../src/gui/graphics/imaging/juce_ImageConvolutionKernel.cpp" + #include "../src/gui/graphics/imaging/juce_ImageFileFormat.cpp" + #include "../src/gui/graphics/imaging/image_file_formats/juce_GIFLoader.cpp" +#endif + +//============================================================================== +// some files include lots of library code, so leave them to the end to avoid cluttering +// up the build for the clean files. +#if JUCE_BUILD_CORE + #include "../src/io/streams/juce_GZIPCompressorOutputStream.cpp" + #include "../src/io/streams/juce_GZIPDecompressorInputStream.cpp" +#endif + +#if JUCE_BUILD_MISC + #include "../src/audio/audio_file_formats/juce_FlacAudioFormat.cpp" + #include "../src/audio/audio_file_formats/juce_OggVorbisAudioFormat.cpp" +#endif + +#if JUCE_BUILD_GUI + #include "../src/gui/graphics/imaging/image_file_formats/juce_JPEGLoader.cpp" + #include "../src/gui/graphics/imaging/image_file_formats/juce_PNGLoader.cpp" +#endif + +//============================================================================== +#if JUCE_BUILD_NATIVE + #if JUCE_WINDOWS + #include "../src/native/juce_win32_NativeCode.cpp" + #endif + + #if JUCE_LINUX + #include "../src/native/juce_linux_NativeCode.cpp" + #endif + + #if JUCE_MAC || JUCE_IPHONE + #include "../src/native/juce_mac_NativeCode.mm" + #endif +#endif diff --git a/amalgamation/juce_amalgamated_template.h b/amalgamation/juce_amalgamated_template.h new file mode 100644 index 0000000000..882d01031a --- /dev/null +++ b/amalgamation/juce_amalgamated_template.h @@ -0,0 +1,46 @@ +/* + ============================================================================== + + This file is part of the JUCE library - "Jules' Utility Class Extensions" + Copyright 2004-9 by Raw Material Software Ltd. + + ------------------------------------------------------------------------------ + + JUCE can be redistributed and/or modified under the terms of the GNU General + Public License (Version 2), as published by the Free Software Foundation. + A copy of the license is included in the JUCE distribution, or can be found + online at www.gnu.org/licenses. + + JUCE is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + ------------------------------------------------------------------------------ + + To release a closed-source product which uses JUCE, commercial licenses are + available: visit www.rawmaterialsoftware.com/juce for more information. + + ============================================================================== +*/ + +/* + ============================================================================== + + This header contains the entire Juce source tree, and can be #included in + all your source files. + + As well as including this in your files, you should also add juce_inline.cpp + to your project (or juce_inline.mm on the Mac). + + + ============================================================================== +*/ + +#ifndef __JUCE_AMALGAMATED_TEMPLATE_JUCEHEADER__ +#define __JUCE_AMALGAMATED_TEMPLATE_JUCEHEADER__ + +#define DONT_AUTOLINK_TO_JUCE_LIBRARY 1 + +#include "../juce.h" + +#endif // __JUCE_AMALGAMATED_TEMPLATE_JUCEHEADER__ diff --git a/build/linux/JUCE.make b/build/linux/JUCE.make index 57dff2aaf7..32be57b7ec 100644 --- a/build/linux/JUCE.make +++ b/build/linux/JUCE.make @@ -72,12 +72,12 @@ OBJECTS := \ $(OBJDIR)/juce_MemoryInputStream.o \ $(OBJDIR)/juce_OutputStream.o \ $(OBJDIR)/juce_FileInputSource.o \ - $(OBJDIR)/juce_MemoryOutputStream.o \ $(OBJDIR)/juce_BufferedInputStream.o \ $(OBJDIR)/juce_SubregionStream.o \ $(OBJDIR)/juce_GZIPDecompressorInputStream.o \ $(OBJDIR)/juce_GZIPCompressorOutputStream.o \ $(OBJDIR)/juce_InputStream.o \ + $(OBJDIR)/juce_MemoryOutputStream.o \ $(OBJDIR)/juce_StringArray.o \ $(OBJDIR)/juce_StringPairArray.o \ $(OBJDIR)/juce_LocalisedStrings.o \ @@ -165,10 +165,10 @@ OBJECTS := \ $(OBJDIR)/juce_ColourGradient.o \ $(OBJDIR)/juce_Justification.o \ $(OBJDIR)/juce_RectanglePlacement.o \ - $(OBJDIR)/juce_LowLevelGraphicsSoftwareRenderer.o \ $(OBJDIR)/juce_EdgeTable.o \ $(OBJDIR)/juce_FillType.o \ $(OBJDIR)/juce_LowLevelGraphicsPostScriptRenderer.o \ + $(OBJDIR)/juce_LowLevelGraphicsSoftwareRenderer.o \ $(OBJDIR)/juce_Graphics.o \ $(OBJDIR)/juce_DrawableComposite.o \ $(OBJDIR)/juce_SVGParser.o \ @@ -183,9 +183,9 @@ OBJECTS := \ $(OBJDIR)/juce_GlyphArrangement.o \ $(OBJDIR)/juce_Typeface.o \ $(OBJDIR)/juce_Font.o \ + $(OBJDIR)/juce_Path.o \ $(OBJDIR)/juce_BorderSize.o \ $(OBJDIR)/juce_Line.o \ - $(OBJDIR)/juce_Path.o \ $(OBJDIR)/juce_AffineTransform.o \ $(OBJDIR)/juce_PathIterator.o \ $(OBJDIR)/juce_PathStrokeType.o \ @@ -295,7 +295,6 @@ OBJECTS := \ $(OBJDIR)/juce_ResizableWindow.o \ $(OBJDIR)/juce_TopLevelWindow.o \ $(OBJDIR)/juce_linux_Midi.o \ - $(OBJDIR)/juce_linux_Windowing.o \ $(OBJDIR)/juce_linux_Fonts.o \ $(OBJDIR)/juce_linux_Audio.o \ $(OBJDIR)/juce_linux_WebBrowserComponent.o \ @@ -307,6 +306,7 @@ OBJECTS := \ $(OBJDIR)/juce_linux_SystemStats.o \ $(OBJDIR)/juce_linux_FileChooser.o \ $(OBJDIR)/juce_linux_Network.o \ + $(OBJDIR)/juce_linux_Windowing.o \ $(OBJDIR)/juce_linux_Messaging.o \ $(OBJDIR)/juce_linux_NativeCode.o \ @@ -515,11 +515,6 @@ $(OBJDIR)/juce_FileInputSource.o: ../../src/io/streams/juce_FileInputSource.cpp @echo $(notdir $<) @$(CXX) $(CXXFLAGS) -o "$@" -c "$<" -$(OBJDIR)/juce_MemoryOutputStream.o: ../../src/io/streams/juce_MemoryOutputStream.cpp - -@$(CMD_MKOBJDIR) - @echo $(notdir $<) - @$(CXX) $(CXXFLAGS) -o "$@" -c "$<" - $(OBJDIR)/juce_BufferedInputStream.o: ../../src/io/streams/juce_BufferedInputStream.cpp -@$(CMD_MKOBJDIR) @echo $(notdir $<) @@ -545,6 +540,11 @@ $(OBJDIR)/juce_InputStream.o: ../../src/io/streams/juce_InputStream.cpp @echo $(notdir $<) @$(CXX) $(CXXFLAGS) -o "$@" -c "$<" +$(OBJDIR)/juce_MemoryOutputStream.o: ../../src/io/streams/juce_MemoryOutputStream.cpp + -@$(CMD_MKOBJDIR) + @echo $(notdir $<) + @$(CXX) $(CXXFLAGS) -o "$@" -c "$<" + $(OBJDIR)/juce_StringArray.o: ../../src/text/juce_StringArray.cpp -@$(CMD_MKOBJDIR) @echo $(notdir $<) @@ -980,11 +980,6 @@ $(OBJDIR)/juce_RectanglePlacement.o: ../../src/gui/graphics/contexts/juce_Rectan @echo $(notdir $<) @$(CXX) $(CXXFLAGS) -o "$@" -c "$<" -$(OBJDIR)/juce_LowLevelGraphicsSoftwareRenderer.o: ../../src/gui/graphics/contexts/juce_LowLevelGraphicsSoftwareRenderer.cpp - -@$(CMD_MKOBJDIR) - @echo $(notdir $<) - @$(CXX) $(CXXFLAGS) -o "$@" -c "$<" - $(OBJDIR)/juce_EdgeTable.o: ../../src/gui/graphics/contexts/juce_EdgeTable.cpp -@$(CMD_MKOBJDIR) @echo $(notdir $<) @@ -1000,6 +995,11 @@ $(OBJDIR)/juce_LowLevelGraphicsPostScriptRenderer.o: ../../src/gui/graphics/cont @echo $(notdir $<) @$(CXX) $(CXXFLAGS) -o "$@" -c "$<" +$(OBJDIR)/juce_LowLevelGraphicsSoftwareRenderer.o: ../../src/gui/graphics/contexts/juce_LowLevelGraphicsSoftwareRenderer.cpp + -@$(CMD_MKOBJDIR) + @echo $(notdir $<) + @$(CXX) $(CXXFLAGS) -o "$@" -c "$<" + $(OBJDIR)/juce_Graphics.o: ../../src/gui/graphics/contexts/juce_Graphics.cpp -@$(CMD_MKOBJDIR) @echo $(notdir $<) @@ -1070,6 +1070,11 @@ $(OBJDIR)/juce_Font.o: ../../src/gui/graphics/fonts/juce_Font.cpp @echo $(notdir $<) @$(CXX) $(CXXFLAGS) -o "$@" -c "$<" +$(OBJDIR)/juce_Path.o: ../../src/gui/graphics/geometry/juce_Path.cpp + -@$(CMD_MKOBJDIR) + @echo $(notdir $<) + @$(CXX) $(CXXFLAGS) -o "$@" -c "$<" + $(OBJDIR)/juce_BorderSize.o: ../../src/gui/graphics/geometry/juce_BorderSize.cpp -@$(CMD_MKOBJDIR) @echo $(notdir $<) @@ -1080,11 +1085,6 @@ $(OBJDIR)/juce_Line.o: ../../src/gui/graphics/geometry/juce_Line.cpp @echo $(notdir $<) @$(CXX) $(CXXFLAGS) -o "$@" -c "$<" -$(OBJDIR)/juce_Path.o: ../../src/gui/graphics/geometry/juce_Path.cpp - -@$(CMD_MKOBJDIR) - @echo $(notdir $<) - @$(CXX) $(CXXFLAGS) -o "$@" -c "$<" - $(OBJDIR)/juce_AffineTransform.o: ../../src/gui/graphics/geometry/juce_AffineTransform.cpp -@$(CMD_MKOBJDIR) @echo $(notdir $<) @@ -1630,11 +1630,6 @@ $(OBJDIR)/juce_linux_Midi.o: ../../src/native/linux/juce_linux_Midi.cpp @echo $(notdir $<) @$(CXX) $(CXXFLAGS) -o "$@" -c "$<" -$(OBJDIR)/juce_linux_Windowing.o: ../../src/native/linux/juce_linux_Windowing.cpp - -@$(CMD_MKOBJDIR) - @echo $(notdir $<) - @$(CXX) $(CXXFLAGS) -o "$@" -c "$<" - $(OBJDIR)/juce_linux_Fonts.o: ../../src/native/linux/juce_linux_Fonts.cpp -@$(CMD_MKOBJDIR) @echo $(notdir $<) @@ -1690,6 +1685,11 @@ $(OBJDIR)/juce_linux_Network.o: ../../src/native/linux/juce_linux_Network.cpp @echo $(notdir $<) @$(CXX) $(CXXFLAGS) -o "$@" -c "$<" +$(OBJDIR)/juce_linux_Windowing.o: ../../src/native/linux/juce_linux_Windowing.cpp + -@$(CMD_MKOBJDIR) + @echo $(notdir $<) + @$(CXX) $(CXXFLAGS) -o "$@" -c "$<" + $(OBJDIR)/juce_linux_Messaging.o: ../../src/native/linux/juce_linux_Messaging.cpp -@$(CMD_MKOBJDIR) @echo $(notdir $<) diff --git a/extras/amalgamator/juce_AmalgamatorMain.cpp b/extras/amalgamator/juce_AmalgamatorMain.cpp index cc575b9593..989c046d07 100644 --- a/extras/amalgamator/juce_AmalgamatorMain.cpp +++ b/extras/amalgamator/juce_AmalgamatorMain.cpp @@ -273,7 +273,7 @@ static bool munge (const File& templateFile, const File& targetFile, const Strin TemporaryFile temp (targetFile); ScopedPointer out (temp.getFile().createOutputStream (1024 * 128)); - + if (out == 0) { std::cout << "\n!! ERROR - couldn't write to the target file: " diff --git a/extras/amalgamator/mac/Amalgamator.xcodeproj/project.pbxproj b/extras/amalgamator/mac/Amalgamator.xcodeproj/project.pbxproj index fbe969dd67..4594cf4ace 100755 --- a/extras/amalgamator/mac/Amalgamator.xcodeproj/project.pbxproj +++ b/extras/amalgamator/mac/Amalgamator.xcodeproj/project.pbxproj @@ -39,7 +39,7 @@ 844B0AB20F52DCCD00B2F1FD /* juce_LibrarySource.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = juce_LibrarySource.mm; path = ../juce_LibrarySource.mm; sourceTree = SOURCE_ROOT; }; 844B0AC20F52DEB900B2F1FD /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /System/Library/Frameworks/IOKit.framework; sourceTree = ""; }; 844B0ACB0F52DECD00B2F1FD /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = /System/Library/Frameworks/CoreAudio.framework; sourceTree = ""; }; - 8DD76FB20486AB0100D96B5E /* amalgamator */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = amalgamator; sourceTree = BUILT_PRODUCTS_DIR; }; + 8DD76FB20486AB0100D96B5E /* Amalgamator */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = Amalgamator; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -82,7 +82,7 @@ 1AB674ADFE9D54B511CA2CBB /* Products */ = { isa = PBXGroup; children = ( - 8DD76FB20486AB0100D96B5E /* amalgamator */, + 8DD76FB20486AB0100D96B5E /* Amalgamator */, ); name = Products; sourceTree = ""; @@ -118,7 +118,7 @@ name = Amalgamator; productInstallPath = "$(HOME)/bin"; productName = Amalgamator; - productReference = 8DD76FB20486AB0100D96B5E /* amalgamator */; + productReference = 8DD76FB20486AB0100D96B5E /* Amalgamator */; productType = "com.apple.product-type.tool"; }; /* End PBXNativeTarget section */ diff --git a/extras/audio plugin host/src/juce_LibrarySource.mm b/extras/audio plugin host/src/juce_LibrarySource.mm index 429beb2475..88960e4696 100644 --- a/extras/audio plugin host/src/juce_LibrarySource.mm +++ b/extras/audio plugin host/src/juce_LibrarySource.mm @@ -17,4 +17,4 @@ the amalgamated file can be slow or impossible for the debugger. But if you use the following line instead of the one above, then it makes it a lot easier.. */ -//#include "../../../src/juce_amalgamated_template.cpp" +//#include "../../../amalgamation/juce_amalgamated_template.cpp" diff --git a/extras/audio plugins/demo/src/juce_LibrarySource.mm b/extras/audio plugins/demo/src/juce_LibrarySource.mm index 43c4e45d0a..a5a850f057 100644 --- a/extras/audio plugins/demo/src/juce_LibrarySource.mm +++ b/extras/audio plugins/demo/src/juce_LibrarySource.mm @@ -17,4 +17,4 @@ the amalgamated file can be slow or impossible for the debugger. But if you use the following line instead of the one above, then it makes it a lot easier.. */ -//#include "../../../../src/juce_amalgamated_template.cpp" +//#include "../../../../amalgamation/juce_amalgamated_template.cpp" diff --git a/extras/juce demo/src/juce_LibrarySource.cpp b/extras/juce demo/src/juce_LibrarySource.cpp index b447646246..acbb7ed749 100644 --- a/extras/juce demo/src/juce_LibrarySource.cpp +++ b/extras/juce demo/src/juce_LibrarySource.cpp @@ -18,4 +18,4 @@ the amalgamated file can be slow or impossible for the debugger. But if you use the following line instead of the one above, then it makes it a lot easier.. */ -//#include "../../../src/juce_amalgamated_template.cpp" +//#include "../../../amalgamation/juce_amalgamated_template.cpp" diff --git a/extras/juce demo/src/juce_LibrarySource.mm b/extras/juce demo/src/juce_LibrarySource.mm index 429beb2475..88960e4696 100644 --- a/extras/juce demo/src/juce_LibrarySource.mm +++ b/extras/juce demo/src/juce_LibrarySource.mm @@ -17,4 +17,4 @@ the amalgamated file can be slow or impossible for the debugger. But if you use the following line instead of the one above, then it makes it a lot easier.. */ -//#include "../../../src/juce_amalgamated_template.cpp" +//#include "../../../amalgamation/juce_amalgamated_template.cpp" diff --git a/extras/the jucer/src/juce_LibrarySource.cpp b/extras/the jucer/src/juce_LibrarySource.cpp index b447646246..acbb7ed749 100644 --- a/extras/the jucer/src/juce_LibrarySource.cpp +++ b/extras/the jucer/src/juce_LibrarySource.cpp @@ -18,4 +18,4 @@ the amalgamated file can be slow or impossible for the debugger. But if you use the following line instead of the one above, then it makes it a lot easier.. */ -//#include "../../../src/juce_amalgamated_template.cpp" +//#include "../../../amalgamation/juce_amalgamated_template.cpp" diff --git a/extras/the jucer/src/juce_LibrarySource.mm b/extras/the jucer/src/juce_LibrarySource.mm index 429beb2475..88960e4696 100644 --- a/extras/the jucer/src/juce_LibrarySource.mm +++ b/extras/the jucer/src/juce_LibrarySource.mm @@ -17,4 +17,4 @@ the amalgamated file can be slow or impossible for the debugger. But if you use the following line instead of the one above, then it makes it a lot easier.. */ -//#include "../../../src/juce_amalgamated_template.cpp" +//#include "../../../amalgamation/juce_amalgamated_template.cpp" diff --git a/juce_amalgamated.cpp b/juce_amalgamated.cpp index 75cf605a0a..1c6c41f817 100644 --- a/juce_amalgamated.cpp +++ b/juce_amalgamated.cpp @@ -1,9 +1,34 @@ +/* + ============================================================================== + + This file is part of the JUCE library - "Jules' Utility Class Extensions" + Copyright 2004-9 by Raw Material Software Ltd. + + ------------------------------------------------------------------------------ + + JUCE can be redistributed and/or modified under the terms of the GNU General + Public License (Version 2), as published by the Free Software Foundation. + A copy of the license is included in the JUCE distribution, or can be found + online at www.gnu.org/licenses. + + JUCE is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + ------------------------------------------------------------------------------ + + To release a closed-source product which uses JUCE, commercial licenses are + available: visit www.rawmaterialsoftware.com/juce for more information. + + ============================================================================== +*/ #ifdef __JUCE_JUCEHEADER__ #error #endif -/********* Start of inlined file: juce_TargetPlatform.h *********/ + +/*** Start of inlined file: juce_TargetPlatform.h ***/ #ifndef __JUCE_TARGETPLATFORM_JUCEHEADER__ #define __JUCE_TARGETPLATFORM_JUCEHEADER__ @@ -128,11 +153,11 @@ #endif #endif // __JUCE_TARGETPLATFORM_JUCEHEADER__ -/********* End of inlined file: juce_TargetPlatform.h *********/ +/*** End of inlined file: juce_TargetPlatform.h ***/ // FORCE_AMALGAMATOR_INCLUDE -/********* Start of inlined file: juce_Config.h *********/ +/*** Start of inlined file: juce_Config.h ***/ #ifndef __JUCE_CONFIG_JUCEHEADER__ #define __JUCE_CONFIG_JUCEHEADER__ @@ -279,15 +304,33 @@ #endif #endif -/********* End of inlined file: juce_Config.h *********/ +/*** End of inlined file: juce_Config.h ***/ // FORCE_AMALGAMATOR_INCLUDE +#ifndef JUCE_BUILD_CORE + #define JUCE_BUILD_CORE 1 +#endif +#ifndef JUCE_BUILD_MISC + #define JUCE_BUILD_MISC 1 +#endif +#ifndef JUCE_BUILD_GUI + #define JUCE_BUILD_GUI 1 +#endif +#ifndef JUCE_BUILD_NATIVE + #define JUCE_BUILD_NATIVE 1 +#endif + +#if JUCE_ONLY_BUILD_CORE_LIBRARY + #undef JUCE_BUILD_MISC + #undef JUCE_BUILD_GUI +#endif + //============================================================================== -#if JUCE_WINDOWS - -/********* Start of inlined file: juce_win32_NativeIncludes.h *********/ +#if JUCE_BUILD_NATIVE || JUCE_BUILD_CORE + #if JUCE_WINDOWS +/*** Start of inlined file: juce_win32_NativeIncludes.h ***/ #ifndef __JUCE_WIN32_NATIVEINCLUDES_JUCEHEADER__ #define __JUCE_WIN32_NATIVEINCLUDES_JUCEHEADER__ @@ -423,11 +466,12 @@ public: }; #endif // __JUCE_WIN32_NATIVEINCLUDES_JUCEHEADER__ -/********* End of inlined file: juce_win32_NativeIncludes.h *********/ +/*** End of inlined file: juce_win32_NativeIncludes.h ***/ -#elif JUCE_LINUX -/********* Start of inlined file: juce_linux_NativeIncludes.h *********/ + #elif JUCE_LINUX + +/*** Start of inlined file: juce_linux_NativeIncludes.h ***/ #ifndef __JUCE_LINUX_NATIVEINCLUDES_JUCEHEADER__ #define __JUCE_LINUX_NATIVEINCLUDES_JUCEHEADER__ @@ -495,11 +539,12 @@ public: #undef SIZEOF #endif // __JUCE_LINUX_NATIVEINCLUDES_JUCEHEADER__ -/********* End of inlined file: juce_linux_NativeIncludes.h *********/ +/*** End of inlined file: juce_linux_NativeIncludes.h ***/ -#elif JUCE_MAC || JUCE_IPHONE -/********* Start of inlined file: juce_mac_NativeIncludes.h *********/ + #elif JUCE_MAC || JUCE_IPHONE + +/*** Start of inlined file: juce_mac_NativeIncludes.h ***/ #ifndef __JUCE_MAC_NATIVEINCLUDES_JUCEHEADER__ #define __JUCE_MAC_NATIVEINCLUDES_JUCEHEADER__ @@ -551,30 +596,32 @@ public: #endif #endif // __JUCE_MAC_NATIVEINCLUDES_JUCEHEADER__ -/********* End of inlined file: juce_mac_NativeIncludes.h *********/ +/*** End of inlined file: juce_mac_NativeIncludes.h ***/ -#else - #error "Unknown platform!" + + #else + #error "Unknown platform!" + #endif #endif //============================================================================== #define DONT_SET_USING_JUCE_NAMESPACE 1 - #undef max #undef min - -#include "juce_amalgamated.h" - #define NO_DUMMY_DECL +#if JUCE_BUILD_NATIVE + #include "src/../juce_amalgamated.h" +#endif + #if (defined(_MSC_VER) && (_MSC_VER <= 1200)) #pragma warning (disable: 4309 4305) #endif -#if JUCE_MAC && JUCE_32BIT && JUCE_SUPPORT_CARBON && ! JUCE_ONLY_BUILD_CORE_LIBRARY +#if JUCE_MAC && JUCE_32BIT && JUCE_SUPPORT_CARBON && JUCE_BUILD_NATIVE && ! JUCE_ONLY_BUILD_CORE_LIBRARY BEGIN_JUCE_NAMESPACE -/********* Start of inlined file: juce_mac_CarbonViewWrapperComponent.h *********/ +/*** Start of inlined file: juce_mac_CarbonViewWrapperComponent.h ***/ #ifndef __JUCE_MAC_CARBONVIEWWRAPPERCOMPONENT_JUCEHEADER__ #define __JUCE_MAC_CARBONVIEWWRAPPERCOMPONENT_JUCEHEADER__ @@ -809,7 +856,8 @@ protected: }; #endif // __JUCE_MAC_CARBONVIEWWRAPPERCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_mac_CarbonViewWrapperComponent.h *********/ +/*** End of inlined file: juce_mac_CarbonViewWrapperComponent.h ***/ + END_JUCE_NAMESPACE #endif @@ -817,9 +865,9 @@ protected: #define JUCE_AMALGAMATED_TEMPLATE 1 //============================================================================== +#if JUCE_BUILD_CORE -/********* Start of inlined file: juce_FileLogger.cpp *********/ - +/*** Start of inlined file: juce_FileLogger.cpp ***/ BEGIN_JUCE_NAMESPACE FileLogger::FileLogger (const File& logFile_, @@ -933,10 +981,11 @@ FileLogger* FileLogger::createDefaultAppLogger (const String& logFileSubDirector } END_JUCE_NAMESPACE -/********* End of inlined file: juce_FileLogger.cpp *********/ +/*** End of inlined file: juce_FileLogger.cpp ***/ -/********* Start of inlined file: juce_Logger.cpp *********/ + +/*** Start of inlined file: juce_Logger.cpp ***/ BEGIN_JUCE_NAMESPACE Logger::Logger() @@ -978,10 +1027,10 @@ void JUCE_API juce_LogAssertion (const char* filename, const int lineNum) throw( #endif END_JUCE_NAMESPACE -/********* End of inlined file: juce_Logger.cpp *********/ +/*** End of inlined file: juce_Logger.cpp ***/ -/********* Start of inlined file: juce_Random.cpp *********/ +/*** Start of inlined file: juce_Random.cpp ***/ BEGIN_JUCE_NAMESPACE Random::Random (const int64 seedValue) throw() @@ -1081,10 +1130,10 @@ Random& Random::getSystemRandom() throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Random.cpp *********/ +/*** End of inlined file: juce_Random.cpp ***/ -/********* Start of inlined file: juce_RelativeTime.cpp *********/ +/*** Start of inlined file: juce_RelativeTime.cpp ***/ BEGIN_JUCE_NAMESPACE RelativeTime::RelativeTime (const double seconds_) throw() @@ -1310,10 +1359,10 @@ const RelativeTime& RelativeTime::operator-= (const double secondsToSubtract) th } END_JUCE_NAMESPACE -/********* End of inlined file: juce_RelativeTime.cpp *********/ +/*** End of inlined file: juce_RelativeTime.cpp ***/ -/********* Start of inlined file: juce_SystemStats.cpp *********/ +/*** Start of inlined file: juce_SystemStats.cpp ***/ BEGIN_JUCE_NAMESPACE void juce_initialiseStrings(); @@ -1477,9 +1526,10 @@ void juce_DebugFree (void* const block) #endif END_JUCE_NAMESPACE -/********* End of inlined file: juce_SystemStats.cpp *********/ +/*** End of inlined file: juce_SystemStats.cpp ***/ -/********* Start of inlined file: juce_Time.cpp *********/ + +/*** Start of inlined file: juce_Time.cpp ***/ #ifdef _MSC_VER #pragma warning (disable: 4514) #pragma warning (push) @@ -1953,10 +2003,10 @@ const String Time::getWeekdayName (int day, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Time.cpp *********/ +/*** End of inlined file: juce_Time.cpp ***/ -/********* Start of inlined file: juce_BitArray.cpp *********/ +/*** Start of inlined file: juce_BitArray.cpp ***/ BEGIN_JUCE_NAMESPACE BitArray::BitArray() throw() @@ -2863,10 +2913,10 @@ void BitArray::loadFromMemoryBlock (const MemoryBlock& data) throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_BitArray.cpp *********/ +/*** End of inlined file: juce_BitArray.cpp ***/ -/********* Start of inlined file: juce_MemoryBlock.cpp *********/ +/*** Start of inlined file: juce_MemoryBlock.cpp ***/ BEGIN_JUCE_NAMESPACE MemoryBlock::MemoryBlock() throw() @@ -3225,10 +3275,10 @@ bool MemoryBlock::fromBase64Encoding (const String& s) throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MemoryBlock.cpp *********/ +/*** End of inlined file: juce_MemoryBlock.cpp ***/ -/********* Start of inlined file: juce_PropertySet.cpp *********/ +/*** Start of inlined file: juce_PropertySet.cpp ***/ BEGIN_JUCE_NAMESPACE PropertySet::PropertySet (const bool ignoreCaseOfKeyNames) throw() @@ -3444,10 +3494,10 @@ void PropertySet::propertyChanged() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_PropertySet.cpp *********/ +/*** End of inlined file: juce_PropertySet.cpp ***/ -/********* Start of inlined file: juce_Variant.cpp *********/ +/*** Start of inlined file: juce_Variant.cpp ***/ BEGIN_JUCE_NAMESPACE var::var() throw() @@ -3784,10 +3834,10 @@ var::identifier::~identifier() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Variant.cpp *********/ +/*** End of inlined file: juce_Variant.cpp ***/ -/********* Start of inlined file: juce_NamedValueSet.cpp *********/ +/*** Start of inlined file: juce_NamedValueSet.cpp ***/ BEGIN_JUCE_NAMESPACE NamedValueSet::NamedValue::NamedValue() throw() @@ -3906,10 +3956,10 @@ void NamedValueSet::clear() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_NamedValueSet.cpp *********/ +/*** End of inlined file: juce_NamedValueSet.cpp ***/ -/********* Start of inlined file: juce_DynamicObject.cpp *********/ +/*** Start of inlined file: juce_DynamicObject.cpp ***/ BEGIN_JUCE_NAMESPACE DynamicObject::DynamicObject() @@ -3965,10 +4015,10 @@ void DynamicObject::clear() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_DynamicObject.cpp *********/ +/*** End of inlined file: juce_DynamicObject.cpp ***/ -/********* Start of inlined file: juce_BlowFish.cpp *********/ +/*** Start of inlined file: juce_BlowFish.cpp ***/ BEGIN_JUCE_NAMESPACE static const uint32 initialPValues [18] = @@ -4387,10 +4437,10 @@ void BlowFish::decrypt (uint32& data1, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_BlowFish.cpp *********/ +/*** End of inlined file: juce_BlowFish.cpp ***/ -/********* Start of inlined file: juce_MD5.cpp *********/ +/*** Start of inlined file: juce_MD5.cpp ***/ BEGIN_JUCE_NAMESPACE MD5::MD5() @@ -4728,10 +4778,10 @@ bool MD5::operator!= (const MD5& other) const } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MD5.cpp *********/ +/*** End of inlined file: juce_MD5.cpp ***/ -/********* Start of inlined file: juce_Primes.cpp *********/ +/*** Start of inlined file: juce_Primes.cpp ***/ BEGIN_JUCE_NAMESPACE static void createSmallSieve (const int numBits, BitArray& result) throw() @@ -4958,10 +5008,10 @@ bool Primes::isProbablyPrime (const BitArray& number, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Primes.cpp *********/ +/*** End of inlined file: juce_Primes.cpp ***/ -/********* Start of inlined file: juce_RSAKey.cpp *********/ +/*** Start of inlined file: juce_RSAKey.cpp ***/ BEGIN_JUCE_NAMESPACE RSAKey::RSAKey() throw() @@ -5083,10 +5133,10 @@ void RSAKey::createKeyPair (RSAKey& publicKey, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_RSAKey.cpp *********/ +/*** End of inlined file: juce_RSAKey.cpp ***/ -/********* Start of inlined file: juce_InputStream.cpp *********/ +/*** Start of inlined file: juce_InputStream.cpp ***/ BEGIN_JUCE_NAMESPACE char InputStream::readByte() @@ -5334,10 +5384,10 @@ void InputStream::skipNextBytes (int64 numBytesToSkip) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_InputStream.cpp *********/ +/*** End of inlined file: juce_InputStream.cpp ***/ -/********* Start of inlined file: juce_OutputStream.cpp *********/ +/*** Start of inlined file: juce_OutputStream.cpp ***/ BEGIN_JUCE_NAMESPACE #if JUCE_DEBUG @@ -5631,10 +5681,10 @@ int OutputStream::writeFromInputStream (InputStream& source, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_OutputStream.cpp *********/ +/*** End of inlined file: juce_OutputStream.cpp ***/ -/********* Start of inlined file: juce_DirectoryIterator.cpp *********/ +/*** Start of inlined file: juce_DirectoryIterator.cpp ***/ BEGIN_JUCE_NAMESPACE void* juce_findFileStart (const String& directory, const String& wildCard, String& firstResultFile, @@ -5763,9 +5813,10 @@ float DirectoryIterator::getEstimatedProgress() const } END_JUCE_NAMESPACE -/********* End of inlined file: juce_DirectoryIterator.cpp *********/ +/*** End of inlined file: juce_DirectoryIterator.cpp ***/ -/********* Start of inlined file: juce_File.cpp *********/ + +/*** Start of inlined file: juce_File.cpp ***/ #ifdef _MSC_VER #pragma warning (disable: 4514) #pragma warning (push) @@ -6838,10 +6889,10 @@ const File File::createTempFile (const String& fileNameEnding) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_File.cpp *********/ +/*** End of inlined file: juce_File.cpp ***/ -/********* Start of inlined file: juce_FileInputStream.cpp *********/ +/*** Start of inlined file: juce_FileInputStream.cpp ***/ BEGIN_JUCE_NAMESPACE void* juce_fileOpen (const String& path, bool forWriting); @@ -6908,10 +6959,10 @@ bool FileInputStream::setPosition (int64 pos) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_FileInputStream.cpp *********/ +/*** End of inlined file: juce_FileInputStream.cpp ***/ -/********* Start of inlined file: juce_FileOutputStream.cpp *********/ +/*** Start of inlined file: juce_FileOutputStream.cpp ***/ BEGIN_JUCE_NAMESPACE void* juce_fileOpen (const String& path, bool forWriting); @@ -7017,10 +7068,10 @@ bool FileOutputStream::write (const void* const src, const int numBytes) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_FileOutputStream.cpp *********/ +/*** End of inlined file: juce_FileOutputStream.cpp ***/ -/********* Start of inlined file: juce_FileSearchPath.cpp *********/ +/*** Start of inlined file: juce_FileSearchPath.cpp ***/ BEGIN_JUCE_NAMESPACE FileSearchPath::FileSearchPath() @@ -7168,10 +7219,10 @@ bool FileSearchPath::isFileInPath (const File& fileToCheck, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_FileSearchPath.cpp *********/ +/*** End of inlined file: juce_FileSearchPath.cpp ***/ -/********* Start of inlined file: juce_NamedPipe.cpp *********/ +/*** Start of inlined file: juce_NamedPipe.cpp ***/ BEGIN_JUCE_NAMESPACE NamedPipe::NamedPipe() @@ -7209,10 +7260,10 @@ const String NamedPipe::getName() const // other methods for this class are implemented in the platform-specific files END_JUCE_NAMESPACE -/********* End of inlined file: juce_NamedPipe.cpp *********/ +/*** End of inlined file: juce_NamedPipe.cpp ***/ -/********* Start of inlined file: juce_TemporaryFile.cpp *********/ +/*** Start of inlined file: juce_TemporaryFile.cpp ***/ BEGIN_JUCE_NAMESPACE TemporaryFile::TemporaryFile (const String& suffix, const int optionFlags) @@ -7292,10 +7343,10 @@ bool TemporaryFile::overwriteTargetFileWithTemporary() const } END_JUCE_NAMESPACE -/********* End of inlined file: juce_TemporaryFile.cpp *********/ +/*** End of inlined file: juce_TemporaryFile.cpp ***/ -/********* Start of inlined file: juce_Socket.cpp *********/ +/*** Start of inlined file: juce_Socket.cpp ***/ #if JUCE_WINDOWS #include @@ -7882,10 +7933,10 @@ bool DatagramSocket::isLocal() const throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Socket.cpp *********/ +/*** End of inlined file: juce_Socket.cpp ***/ -/********* Start of inlined file: juce_URL.cpp *********/ +/*** Start of inlined file: juce_URL.cpp ***/ BEGIN_JUCE_NAMESPACE URL::URL() @@ -8454,10 +8505,10 @@ bool URL::launchInDefaultBrowser() const } END_JUCE_NAMESPACE -/********* End of inlined file: juce_URL.cpp *********/ +/*** End of inlined file: juce_URL.cpp ***/ -/********* Start of inlined file: juce_BufferedInputStream.cpp *********/ +/*** Start of inlined file: juce_BufferedInputStream.cpp ***/ BEGIN_JUCE_NAMESPACE BufferedInputStream::BufferedInputStream (InputStream* const source_, @@ -8608,10 +8659,10 @@ const String BufferedInputStream::readString() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_BufferedInputStream.cpp *********/ +/*** End of inlined file: juce_BufferedInputStream.cpp ***/ -/********* Start of inlined file: juce_FileInputSource.cpp *********/ +/*** Start of inlined file: juce_FileInputSource.cpp ***/ BEGIN_JUCE_NAMESPACE FileInputSource::FileInputSource (const File& file_) @@ -8639,10 +8690,10 @@ int64 FileInputSource::hashCode() const } END_JUCE_NAMESPACE -/********* End of inlined file: juce_FileInputSource.cpp *********/ +/*** End of inlined file: juce_FileInputSource.cpp ***/ -/********* Start of inlined file: juce_MemoryInputStream.cpp *********/ +/*** Start of inlined file: juce_MemoryInputStream.cpp ***/ BEGIN_JUCE_NAMESPACE MemoryInputStream::MemoryInputStream (const void* const sourceData, @@ -8695,10 +8746,10 @@ int64 MemoryInputStream::getPosition() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MemoryInputStream.cpp *********/ +/*** End of inlined file: juce_MemoryInputStream.cpp ***/ -/********* Start of inlined file: juce_MemoryOutputStream.cpp *********/ +/*** Start of inlined file: juce_MemoryOutputStream.cpp ***/ BEGIN_JUCE_NAMESPACE MemoryOutputStream::MemoryOutputStream (const size_t initialSize, @@ -8755,7 +8806,7 @@ bool MemoryOutputStream::write (const void* buffer, int howMany) return true; } -const char* MemoryOutputStream::getData() throw() +const char* MemoryOutputStream::getData() const throw() { if (data->getSize() > size) ((char*) data->getData()) [size] = 0; @@ -8789,10 +8840,10 @@ bool MemoryOutputStream::setPosition (int64 newPosition) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MemoryOutputStream.cpp *********/ +/*** End of inlined file: juce_MemoryOutputStream.cpp ***/ -/********* Start of inlined file: juce_SubregionStream.cpp *********/ +/*** Start of inlined file: juce_SubregionStream.cpp ***/ BEGIN_JUCE_NAMESPACE SubregionStream::SubregionStream (InputStream* const sourceStream, @@ -8857,10 +8908,10 @@ bool SubregionStream::isExhausted() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_SubregionStream.cpp *********/ +/*** End of inlined file: juce_SubregionStream.cpp ***/ -/********* Start of inlined file: juce_PerformanceCounter.cpp *********/ +/*** Start of inlined file: juce_PerformanceCounter.cpp ***/ BEGIN_JUCE_NAMESPACE PerformanceCounter::PerformanceCounter (const String& name_, @@ -8932,10 +8983,10 @@ void PerformanceCounter::printStatistics() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_PerformanceCounter.cpp *********/ +/*** End of inlined file: juce_PerformanceCounter.cpp ***/ -/********* Start of inlined file: juce_Uuid.cpp *********/ +/*** Start of inlined file: juce_Uuid.cpp ***/ BEGIN_JUCE_NAMESPACE Uuid::Uuid() @@ -9071,10 +9122,10 @@ Uuid& Uuid::operator= (const uint8* const rawData) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Uuid.cpp *********/ +/*** End of inlined file: juce_Uuid.cpp ***/ -/********* Start of inlined file: juce_ZipFile.cpp *********/ +/*** Start of inlined file: juce_ZipFile.cpp ***/ BEGIN_JUCE_NAMESPACE class ZipFile::ZipEntryInfo @@ -9454,9 +9505,10 @@ void ZipFile::uncompressTo (const File& targetDirectory, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ZipFile.cpp *********/ +/*** End of inlined file: juce_ZipFile.cpp ***/ -/********* Start of inlined file: juce_CharacterFunctions.cpp *********/ + +/*** Start of inlined file: juce_CharacterFunctions.cpp ***/ #ifdef _MSC_VER #pragma warning (disable: 4514 4996) #pragma warning (push) @@ -10204,10 +10256,10 @@ int CharacterFunctions::vprintf (juce_wchar* const dest, const int maxLength, co } END_JUCE_NAMESPACE -/********* End of inlined file: juce_CharacterFunctions.cpp *********/ +/*** End of inlined file: juce_CharacterFunctions.cpp ***/ -/********* Start of inlined file: juce_LocalisedStrings.cpp *********/ +/*** Start of inlined file: juce_LocalisedStrings.cpp ***/ BEGIN_JUCE_NAMESPACE LocalisedStrings::LocalisedStrings (const String& fileContents) @@ -10332,9 +10384,10 @@ const String LocalisedStrings::translateWithCurrentMappings (const char* text) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_LocalisedStrings.cpp *********/ +/*** End of inlined file: juce_LocalisedStrings.cpp ***/ -/********* Start of inlined file: juce_String.cpp *********/ + +/*** Start of inlined file: juce_String.cpp ***/ #ifdef _MSC_VER #pragma warning (disable: 4514) #pragma warning (push) @@ -12577,10 +12630,10 @@ void String::Concatenator::append (const String& s) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_String.cpp *********/ +/*** End of inlined file: juce_String.cpp ***/ -/********* Start of inlined file: juce_StringArray.cpp *********/ +/*** Start of inlined file: juce_StringArray.cpp ***/ BEGIN_JUCE_NAMESPACE StringArray::StringArray() throw() @@ -13067,10 +13120,10 @@ void StringArray::minimiseStorageOverheads() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_StringArray.cpp *********/ +/*** End of inlined file: juce_StringArray.cpp ***/ -/********* Start of inlined file: juce_StringPairArray.cpp *********/ +/*** Start of inlined file: juce_StringPairArray.cpp ***/ BEGIN_JUCE_NAMESPACE StringPairArray::StringPairArray (const bool ignoreCase_) throw() @@ -13191,10 +13244,10 @@ void StringPairArray::minimiseStorageOverheads() throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_StringPairArray.cpp *********/ +/*** End of inlined file: juce_StringPairArray.cpp ***/ -/********* Start of inlined file: juce_XmlDocument.cpp *********/ +/*** Start of inlined file: juce_XmlDocument.cpp ***/ BEGIN_JUCE_NAMESPACE XmlDocument::XmlDocument (const String& documentText) throw() @@ -14064,10 +14117,10 @@ const String XmlDocument::getParameterEntity (const String& entity) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_XmlDocument.cpp *********/ +/*** End of inlined file: juce_XmlDocument.cpp ***/ -/********* Start of inlined file: juce_XmlElement.cpp *********/ +/*** Start of inlined file: juce_XmlElement.cpp ***/ BEGIN_JUCE_NAMESPACE XmlElement::XmlAttributeNode::XmlAttributeNode (const XmlAttributeNode& other) throw() @@ -14846,6 +14899,13 @@ void XmlElement::insertChildElement (XmlElement* const newNode, } } +XmlElement* XmlElement::createNewChildElement (const String& tagName) +{ + XmlElement* const newElement = new XmlElement (tagName); + addChildElement (newElement); + return newElement; +} + bool XmlElement::replaceChildElement (XmlElement* const currentChildElement, XmlElement* const newNode) throw() { @@ -15171,19 +15231,19 @@ void XmlElement::deleteAllTextElements() throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_XmlElement.cpp *********/ +/*** End of inlined file: juce_XmlElement.cpp ***/ -/********* Start of inlined file: juce_InterProcessLock.cpp *********/ +/*** Start of inlined file: juce_InterProcessLock.cpp ***/ BEGIN_JUCE_NAMESPACE // (implemented in the platform-specific code files) END_JUCE_NAMESPACE -/********* End of inlined file: juce_InterProcessLock.cpp *********/ +/*** End of inlined file: juce_InterProcessLock.cpp ***/ -/********* Start of inlined file: juce_ReadWriteLock.cpp *********/ +/*** Start of inlined file: juce_ReadWriteLock.cpp ***/ BEGIN_JUCE_NAMESPACE ReadWriteLock::ReadWriteLock() throw() @@ -15321,10 +15381,10 @@ void ReadWriteLock::exitWrite() const throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ReadWriteLock.cpp *********/ +/*** End of inlined file: juce_ReadWriteLock.cpp ***/ -/********* Start of inlined file: juce_Thread.cpp *********/ +/*** Start of inlined file: juce_Thread.cpp ***/ BEGIN_JUCE_NAMESPACE // these functions are implemented in the platform-specific code. @@ -15568,10 +15628,10 @@ void Thread::stopAllThreads (const int timeOutMilliseconds) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Thread.cpp *********/ +/*** End of inlined file: juce_Thread.cpp ***/ -/********* Start of inlined file: juce_ThreadPool.cpp *********/ +/*** Start of inlined file: juce_ThreadPool.cpp ***/ BEGIN_JUCE_NAMESPACE ThreadPoolJob::ThreadPoolJob (const String& name) @@ -15954,10 +16014,10 @@ bool ThreadPool::runNextJob() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ThreadPool.cpp *********/ +/*** End of inlined file: juce_ThreadPool.cpp ***/ -/********* Start of inlined file: juce_TimeSliceThread.cpp *********/ +/*** Start of inlined file: juce_TimeSliceThread.cpp ***/ BEGIN_JUCE_NAMESPACE TimeSliceThread::TimeSliceThread (const String& threadName) @@ -16069,12 +16129,13 @@ void TimeSliceThread::run() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_TimeSliceThread.cpp *********/ +/*** End of inlined file: juce_TimeSliceThread.cpp ***/ -#if ! JUCE_ONLY_BUILD_CORE_LIBRARY +#endif -/********* Start of inlined file: juce_ValueTree.cpp *********/ +#if JUCE_BUILD_MISC +/*** Start of inlined file: juce_ValueTree.cpp ***/ BEGIN_JUCE_NAMESPACE class ValueTreeSetPropertyAction : public UndoableAction @@ -16793,10 +16854,11 @@ ValueTree ValueTree::readFromStream (InputStream& input) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ValueTree.cpp *********/ +/*** End of inlined file: juce_ValueTree.cpp ***/ -/********* Start of inlined file: juce_Value.cpp *********/ + +/*** Start of inlined file: juce_Value.cpp ***/ BEGIN_JUCE_NAMESPACE Value::ValueSource::ValueSource() @@ -16984,10 +17046,10 @@ void Value::callListeners() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Value.cpp *********/ +/*** End of inlined file: juce_Value.cpp ***/ -/********* Start of inlined file: juce_Application.cpp *********/ +/*** Start of inlined file: juce_Application.cpp ***/ #if JUCE_MSVC #pragma warning (push) #pragma warning (disable: 4245 4514 4100) @@ -17314,10 +17376,10 @@ void JUCE_PUBLIC_FUNCTION shutdownJuce_GUI() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Application.cpp *********/ +/*** End of inlined file: juce_Application.cpp ***/ -/********* Start of inlined file: juce_ApplicationCommandInfo.cpp *********/ +/*** Start of inlined file: juce_ApplicationCommandInfo.cpp ***/ BEGIN_JUCE_NAMESPACE ApplicationCommandInfo::ApplicationCommandInfo (const CommandID commandID_) throw() @@ -17359,10 +17421,10 @@ void ApplicationCommandInfo::addDefaultKeypress (const int keyCode, const Modifi } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ApplicationCommandInfo.cpp *********/ +/*** End of inlined file: juce_ApplicationCommandInfo.cpp ***/ -/********* Start of inlined file: juce_ApplicationCommandManager.cpp *********/ +/*** Start of inlined file: juce_ApplicationCommandManager.cpp ***/ BEGIN_JUCE_NAMESPACE ApplicationCommandManager::ApplicationCommandManager() @@ -17660,10 +17722,10 @@ void ApplicationCommandManager::globalFocusChanged (Component*) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ApplicationCommandManager.cpp *********/ +/*** End of inlined file: juce_ApplicationCommandManager.cpp ***/ -/********* Start of inlined file: juce_ApplicationCommandTarget.cpp *********/ +/*** Start of inlined file: juce_ApplicationCommandTarget.cpp ***/ BEGIN_JUCE_NAMESPACE ApplicationCommandTarget::ApplicationCommandTarget() @@ -17827,10 +17889,10 @@ void ApplicationCommandTarget::CommandTargetMessageInvoker::handleMessage (const } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ApplicationCommandTarget.cpp *********/ +/*** End of inlined file: juce_ApplicationCommandTarget.cpp ***/ -/********* Start of inlined file: juce_ApplicationProperties.cpp *********/ +/*** Start of inlined file: juce_ApplicationProperties.cpp ***/ BEGIN_JUCE_NAMESPACE juce_ImplementSingleton (ApplicationProperties) @@ -17952,10 +18014,10 @@ void ApplicationProperties::closeFiles() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ApplicationProperties.cpp *********/ +/*** End of inlined file: juce_ApplicationProperties.cpp ***/ -/********* Start of inlined file: juce_DeletedAtShutdown.cpp *********/ +/*** Start of inlined file: juce_DeletedAtShutdown.cpp ***/ BEGIN_JUCE_NAMESPACE static VoidArray objectsToDelete; @@ -18007,10 +18069,10 @@ void DeletedAtShutdown::deleteAll() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_DeletedAtShutdown.cpp *********/ +/*** End of inlined file: juce_DeletedAtShutdown.cpp ***/ -/********* Start of inlined file: juce_PropertiesFile.cpp *********/ +/*** Start of inlined file: juce_PropertiesFile.cpp ***/ BEGIN_JUCE_NAMESPACE static const int propFileMagicNumber = ((int) ByteOrder::littleEndianInt ("PROP")); @@ -18273,10 +18335,10 @@ PropertiesFile* PropertiesFile::createDefaultAppPropertiesFile (const String& ap } END_JUCE_NAMESPACE -/********* End of inlined file: juce_PropertiesFile.cpp *********/ +/*** End of inlined file: juce_PropertiesFile.cpp ***/ -/********* Start of inlined file: juce_FileBasedDocument.cpp *********/ +/*** Start of inlined file: juce_FileBasedDocument.cpp ***/ BEGIN_JUCE_NAMESPACE FileBasedDocument::FileBasedDocument (const String& fileExtension_, @@ -18528,10 +18590,10 @@ FileBasedDocument::SaveResult FileBasedDocument::saveAsInteractive (const bool w } END_JUCE_NAMESPACE -/********* End of inlined file: juce_FileBasedDocument.cpp *********/ +/*** End of inlined file: juce_FileBasedDocument.cpp ***/ -/********* Start of inlined file: juce_RecentlyOpenedFilesList.cpp *********/ +/*** Start of inlined file: juce_RecentlyOpenedFilesList.cpp ***/ BEGIN_JUCE_NAMESPACE RecentlyOpenedFilesList::RecentlyOpenedFilesList() @@ -18642,10 +18704,10 @@ void RecentlyOpenedFilesList::restoreFromString (const String& stringifiedVersio } END_JUCE_NAMESPACE -/********* End of inlined file: juce_RecentlyOpenedFilesList.cpp *********/ +/*** End of inlined file: juce_RecentlyOpenedFilesList.cpp ***/ -/********* Start of inlined file: juce_UndoManager.cpp *********/ +/*** Start of inlined file: juce_UndoManager.cpp ***/ BEGIN_JUCE_NAMESPACE UndoManager::UndoManager (const int maxNumberOfUnitsToKeep, @@ -18904,10 +18966,10 @@ int UndoManager::getNumActionsInCurrentTransaction() const } END_JUCE_NAMESPACE -/********* End of inlined file: juce_UndoManager.cpp *********/ +/*** End of inlined file: juce_UndoManager.cpp ***/ -/********* Start of inlined file: juce_AiffAudioFormat.cpp *********/ +/*** Start of inlined file: juce_AiffAudioFormat.cpp ***/ BEGIN_JUCE_NAMESPACE static const char* const aiffFormatName = "AIFF file"; @@ -19688,10 +19750,10 @@ AudioFormatWriter* AiffAudioFormat::createWriterFor (OutputStream* out, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AiffAudioFormat.cpp *********/ +/*** End of inlined file: juce_AiffAudioFormat.cpp ***/ -/********* Start of inlined file: juce_AudioCDReader.cpp *********/ +/*** Start of inlined file: juce_AudioCDReader.cpp ***/ BEGIN_JUCE_NAMESPACE #if JUCE_MAC && JUCE_USE_CDREADER @@ -19895,10 +19957,10 @@ int AudioCDReader::getCDDBId() #endif END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioCDReader.cpp *********/ +/*** End of inlined file: juce_AudioCDReader.cpp ***/ -/********* Start of inlined file: juce_AudioFormat.cpp *********/ +/*** Start of inlined file: juce_AudioFormat.cpp ***/ BEGIN_JUCE_NAMESPACE AudioFormatReader::AudioFormatReader (InputStream* const in, @@ -20422,10 +20484,10 @@ const StringArray AudioFormat::getQualityOptions() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioFormat.cpp *********/ +/*** End of inlined file: juce_AudioFormat.cpp ***/ -/********* Start of inlined file: juce_AudioFormatManager.cpp *********/ +/*** Start of inlined file: juce_AudioFormatManager.cpp ***/ BEGIN_JUCE_NAMESPACE AudioFormatManager::AudioFormatManager() @@ -20610,10 +20672,10 @@ AudioFormatReader* AudioFormatManager::createReaderFor (InputStream* audioFileSt } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioFormatManager.cpp *********/ +/*** End of inlined file: juce_AudioFormatManager.cpp ***/ -/********* Start of inlined file: juce_AudioSubsectionReader.cpp *********/ +/*** Start of inlined file: juce_AudioSubsectionReader.cpp ***/ BEGIN_JUCE_NAMESPACE AudioSubsectionReader::AudioSubsectionReader (AudioFormatReader* const source_, @@ -20678,10 +20740,10 @@ void AudioSubsectionReader::readMaxLevels (int64 startSampleInFile, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioSubsectionReader.cpp *********/ +/*** End of inlined file: juce_AudioSubsectionReader.cpp ***/ -/********* Start of inlined file: juce_AudioThumbnail.cpp *********/ +/*** Start of inlined file: juce_AudioThumbnail.cpp ***/ BEGIN_JUCE_NAMESPACE const int timeBeforeDeletingReader = 2000; @@ -21179,10 +21241,10 @@ void AudioThumbnail::drawChannel (Graphics& g, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioThumbnail.cpp *********/ +/*** End of inlined file: juce_AudioThumbnail.cpp ***/ -/********* Start of inlined file: juce_AudioThumbnailCache.cpp *********/ +/*** Start of inlined file: juce_AudioThumbnailCache.cpp ***/ BEGIN_JUCE_NAMESPACE struct ThumbnailCacheEntry @@ -21286,10 +21348,10 @@ void AudioThumbnailCache::removeThumbnail (AudioThumbnail* const thumb) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioThumbnailCache.cpp *********/ +/*** End of inlined file: juce_AudioThumbnailCache.cpp ***/ -/********* Start of inlined file: juce_QuickTimeAudioFormat.cpp *********/ +/*** Start of inlined file: juce_QuickTimeAudioFormat.cpp ***/ #if JUCE_QUICKTIME && ! (JUCE_64BIT || JUCE_IPHONE) #if ! JUCE_WINDOWS @@ -21632,10 +21694,10 @@ AudioFormatWriter* QuickTimeAudioFormat::createWriterFor (OutputStream* /*stream END_JUCE_NAMESPACE #endif -/********* End of inlined file: juce_QuickTimeAudioFormat.cpp *********/ +/*** End of inlined file: juce_QuickTimeAudioFormat.cpp ***/ -/********* Start of inlined file: juce_WavAudioFormat.cpp *********/ +/*** Start of inlined file: juce_WavAudioFormat.cpp ***/ BEGIN_JUCE_NAMESPACE static const char* const wavFormatName = "WAV file"; @@ -22451,10 +22513,10 @@ bool WavAudioFormat::replaceMetadataInFile (const File& wavFile, const StringPai } END_JUCE_NAMESPACE -/********* End of inlined file: juce_WavAudioFormat.cpp *********/ +/*** End of inlined file: juce_WavAudioFormat.cpp ***/ -/********* Start of inlined file: juce_AudioFormatReaderSource.cpp *********/ +/*** Start of inlined file: juce_AudioFormatReaderSource.cpp ***/ BEGIN_JUCE_NAMESPACE AudioFormatReaderSource::AudioFormatReaderSource (AudioFormatReader* const reader_, @@ -22557,10 +22619,10 @@ void AudioFormatReaderSource::getNextAudioBlock (const AudioSourceChannelInfo& i } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioFormatReaderSource.cpp *********/ +/*** End of inlined file: juce_AudioFormatReaderSource.cpp ***/ -/********* Start of inlined file: juce_AudioSourcePlayer.cpp *********/ +/*** Start of inlined file: juce_AudioSourcePlayer.cpp ***/ BEGIN_JUCE_NAMESPACE AudioSourcePlayer::AudioSourcePlayer() @@ -22722,10 +22784,10 @@ void AudioSourcePlayer::audioDeviceStopped() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioSourcePlayer.cpp *********/ +/*** End of inlined file: juce_AudioSourcePlayer.cpp ***/ -/********* Start of inlined file: juce_AudioTransportSource.cpp *********/ +/*** Start of inlined file: juce_AudioTransportSource.cpp ***/ BEGIN_JUCE_NAMESPACE AudioTransportSource::AudioTransportSource() @@ -22986,10 +23048,10 @@ void AudioTransportSource::getNextAudioBlock (const AudioSourceChannelInfo& info } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioTransportSource.cpp *********/ +/*** End of inlined file: juce_AudioTransportSource.cpp ***/ -/********* Start of inlined file: juce_BufferingAudioSource.cpp *********/ +/*** Start of inlined file: juce_BufferingAudioSource.cpp ***/ BEGIN_JUCE_NAMESPACE class SharedBufferingAudioSourceThread : public DeletedAtShutdown, @@ -23314,10 +23376,10 @@ void BufferingAudioSource::readBufferSection (int start, int length, int bufferO } END_JUCE_NAMESPACE -/********* End of inlined file: juce_BufferingAudioSource.cpp *********/ +/*** End of inlined file: juce_BufferingAudioSource.cpp ***/ -/********* Start of inlined file: juce_ChannelRemappingAudioSource.cpp *********/ +/*** Start of inlined file: juce_ChannelRemappingAudioSource.cpp ***/ BEGIN_JUCE_NAMESPACE ChannelRemappingAudioSource::ChannelRemappingAudioSource (AudioSource* const source_, @@ -23489,10 +23551,10 @@ void ChannelRemappingAudioSource::restoreFromXml (const XmlElement& e) throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ChannelRemappingAudioSource.cpp *********/ +/*** End of inlined file: juce_ChannelRemappingAudioSource.cpp ***/ -/********* Start of inlined file: juce_IIRFilterAudioSource.cpp *********/ +/*** Start of inlined file: juce_IIRFilterAudioSource.cpp ***/ BEGIN_JUCE_NAMESPACE IIRFilterAudioSource::IIRFilterAudioSource (AudioSource* const inputSource, @@ -23547,10 +23609,10 @@ void IIRFilterAudioSource::getNextAudioBlock (const AudioSourceChannelInfo& buff } END_JUCE_NAMESPACE -/********* End of inlined file: juce_IIRFilterAudioSource.cpp *********/ +/*** End of inlined file: juce_IIRFilterAudioSource.cpp ***/ -/********* Start of inlined file: juce_MixerAudioSource.cpp *********/ +/*** Start of inlined file: juce_MixerAudioSource.cpp ***/ BEGIN_JUCE_NAMESPACE MixerAudioSource::MixerAudioSource() @@ -23683,10 +23745,10 @@ void MixerAudioSource::getNextAudioBlock (const AudioSourceChannelInfo& info) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MixerAudioSource.cpp *********/ +/*** End of inlined file: juce_MixerAudioSource.cpp ***/ -/********* Start of inlined file: juce_ResamplingAudioSource.cpp *********/ +/*** Start of inlined file: juce_ResamplingAudioSource.cpp ***/ BEGIN_JUCE_NAMESPACE ResamplingAudioSource::ResamplingAudioSource (AudioSource* const inputSource, @@ -23922,10 +23984,10 @@ void ResamplingAudioSource::applyFilter (float* samples, int num, FilterState& f } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ResamplingAudioSource.cpp *********/ +/*** End of inlined file: juce_ResamplingAudioSource.cpp ***/ -/********* Start of inlined file: juce_ToneGeneratorAudioSource.cpp *********/ +/*** Start of inlined file: juce_ToneGeneratorAudioSource.cpp ***/ BEGIN_JUCE_NAMESPACE ToneGeneratorAudioSource::ToneGeneratorAudioSource() @@ -23980,10 +24042,10 @@ void ToneGeneratorAudioSource::getNextAudioBlock (const AudioSourceChannelInfo& } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ToneGeneratorAudioSource.cpp *********/ +/*** End of inlined file: juce_ToneGeneratorAudioSource.cpp ***/ -/********* Start of inlined file: juce_AudioDeviceManager.cpp *********/ +/*** Start of inlined file: juce_AudioDeviceManager.cpp ***/ BEGIN_JUCE_NAMESPACE AudioDeviceManager::AudioDeviceSetup::AudioDeviceSetup() @@ -24915,10 +24977,10 @@ double AudioDeviceManager::getCurrentInputLevel() const } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioDeviceManager.cpp *********/ +/*** End of inlined file: juce_AudioDeviceManager.cpp ***/ -/********* Start of inlined file: juce_AudioIODevice.cpp *********/ +/*** Start of inlined file: juce_AudioIODevice.cpp ***/ BEGIN_JUCE_NAMESPACE AudioIODevice::AudioIODevice (const String& deviceName, const String& typeName_) @@ -24944,10 +25006,10 @@ bool AudioIODevice::showControlPanel() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioIODevice.cpp *********/ +/*** End of inlined file: juce_AudioIODevice.cpp ***/ -/********* Start of inlined file: juce_AudioIODeviceType.cpp *********/ +/*** Start of inlined file: juce_AudioIODeviceType.cpp ***/ BEGIN_JUCE_NAMESPACE AudioIODeviceType::AudioIODeviceType (const tchar* const name) @@ -24960,10 +25022,10 @@ AudioIODeviceType::~AudioIODeviceType() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioIODeviceType.cpp *********/ +/*** End of inlined file: juce_AudioIODeviceType.cpp ***/ -/********* Start of inlined file: juce_MidiOutput.cpp *********/ +/*** Start of inlined file: juce_MidiOutput.cpp ***/ BEGIN_JUCE_NAMESPACE MidiOutput::MidiOutput() throw() @@ -25102,10 +25164,10 @@ void MidiOutput::run() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MidiOutput.cpp *********/ +/*** End of inlined file: juce_MidiOutput.cpp ***/ -/********* Start of inlined file: juce_AudioDataConverters.cpp *********/ +/*** Start of inlined file: juce_AudioDataConverters.cpp ***/ BEGIN_JUCE_NAMESPACE void AudioDataConverters::convertFloatToInt16LE (const float* source, void* dest, int numSamples, const int destBytesPerSample) @@ -25605,10 +25667,10 @@ void AudioDataConverters::deinterleaveSamples (const float* const source, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioDataConverters.cpp *********/ +/*** End of inlined file: juce_AudioDataConverters.cpp ***/ -/********* Start of inlined file: juce_AudioSampleBuffer.cpp *********/ +/*** Start of inlined file: juce_AudioSampleBuffer.cpp ***/ BEGIN_JUCE_NAMESPACE AudioSampleBuffer::AudioSampleBuffer (const int numChannels_, @@ -26269,10 +26331,10 @@ void AudioSampleBuffer::writeToAudioWriter (AudioFormatWriter* writer, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioSampleBuffer.cpp *********/ +/*** End of inlined file: juce_AudioSampleBuffer.cpp ***/ -/********* Start of inlined file: juce_IIRFilter.cpp *********/ +/*** Start of inlined file: juce_IIRFilter.cpp ***/ BEGIN_JUCE_NAMESPACE IIRFilter::IIRFilter() throw() @@ -26501,10 +26563,10 @@ void IIRFilter::setCoefficients (double c1, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_IIRFilter.cpp *********/ +/*** End of inlined file: juce_IIRFilter.cpp ***/ -/********* Start of inlined file: juce_MidiBuffer.cpp *********/ +/*** Start of inlined file: juce_MidiBuffer.cpp ***/ BEGIN_JUCE_NAMESPACE MidiBuffer::MidiBuffer() throw() @@ -26763,10 +26825,10 @@ bool MidiBuffer::Iterator::getNextEvent (MidiMessage& result, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MidiBuffer.cpp *********/ +/*** End of inlined file: juce_MidiBuffer.cpp ***/ -/********* Start of inlined file: juce_MidiFile.cpp *********/ +/*** Start of inlined file: juce_MidiFile.cpp ***/ BEGIN_JUCE_NAMESPACE struct TempoInfo @@ -27192,10 +27254,10 @@ void MidiFile::writeTrack (OutputStream& mainOut, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MidiFile.cpp *********/ +/*** End of inlined file: juce_MidiFile.cpp ***/ -/********* Start of inlined file: juce_MidiKeyboardState.cpp *********/ +/*** Start of inlined file: juce_MidiKeyboardState.cpp ***/ BEGIN_JUCE_NAMESPACE MidiKeyboardState::MidiKeyboardState() @@ -27359,10 +27421,10 @@ void MidiKeyboardState::removeListener (MidiKeyboardStateListener* const listene } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MidiKeyboardState.cpp *********/ +/*** End of inlined file: juce_MidiKeyboardState.cpp ***/ -/********* Start of inlined file: juce_MidiMessage.cpp *********/ +/*** Start of inlined file: juce_MidiMessage.cpp ***/ BEGIN_JUCE_NAMESPACE int MidiMessage::readVariableLengthVal (const uint8* data, @@ -28453,10 +28515,10 @@ const String MidiMessage::getControllerName (int n) throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MidiMessage.cpp *********/ +/*** End of inlined file: juce_MidiMessage.cpp ***/ -/********* Start of inlined file: juce_MidiMessageCollector.cpp *********/ +/*** Start of inlined file: juce_MidiMessageCollector.cpp ***/ BEGIN_JUCE_NAMESPACE MidiMessageCollector::MidiMessageCollector() @@ -28587,10 +28649,10 @@ void MidiMessageCollector::handleIncomingMidiMessage (MidiInput*, const MidiMess } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MidiMessageCollector.cpp *********/ +/*** End of inlined file: juce_MidiMessageCollector.cpp ***/ -/********* Start of inlined file: juce_MidiMessageSequence.cpp *********/ +/*** Start of inlined file: juce_MidiMessageSequence.cpp ***/ BEGIN_JUCE_NAMESPACE MidiMessageSequence::MidiMessageSequence() @@ -28901,10 +28963,10 @@ MidiMessageSequence::MidiEventHolder::~MidiEventHolder() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MidiMessageSequence.cpp *********/ +/*** End of inlined file: juce_MidiMessageSequence.cpp ***/ -/********* Start of inlined file: juce_AudioPluginFormat.cpp *********/ +/*** Start of inlined file: juce_AudioPluginFormat.cpp ***/ BEGIN_JUCE_NAMESPACE AudioPluginFormat::AudioPluginFormat() throw() @@ -28916,10 +28978,10 @@ AudioPluginFormat::~AudioPluginFormat() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioPluginFormat.cpp *********/ +/*** End of inlined file: juce_AudioPluginFormat.cpp ***/ -/********* Start of inlined file: juce_AudioPluginFormatManager.cpp *********/ +/*** Start of inlined file: juce_AudioPluginFormatManager.cpp ***/ BEGIN_JUCE_NAMESPACE AudioPluginFormatManager::AudioPluginFormatManager() throw() @@ -29023,9 +29085,10 @@ bool AudioPluginFormatManager::doesPluginStillExist (const PluginDescription& de } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioPluginFormatManager.cpp *********/ +/*** End of inlined file: juce_AudioPluginFormatManager.cpp ***/ -/********* Start of inlined file: juce_AudioPluginInstance.cpp *********/ + +/*** Start of inlined file: juce_AudioPluginInstance.cpp ***/ #define JUCE_PLUGIN_HOST 1 BEGIN_JUCE_NAMESPACE @@ -29039,10 +29102,10 @@ AudioPluginInstance::~AudioPluginInstance() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioPluginInstance.cpp *********/ +/*** End of inlined file: juce_AudioPluginInstance.cpp ***/ -/********* Start of inlined file: juce_KnownPluginList.cpp *********/ +/*** Start of inlined file: juce_KnownPluginList.cpp ***/ BEGIN_JUCE_NAMESPACE KnownPluginList::KnownPluginList() @@ -29463,10 +29526,10 @@ int KnownPluginList::getIndexChosenByMenu (const int menuResultCode) const } END_JUCE_NAMESPACE -/********* End of inlined file: juce_KnownPluginList.cpp *********/ +/*** End of inlined file: juce_KnownPluginList.cpp ***/ -/********* Start of inlined file: juce_PluginDescription.cpp *********/ +/*** Start of inlined file: juce_PluginDescription.cpp ***/ BEGIN_JUCE_NAMESPACE PluginDescription::PluginDescription() throw() @@ -29568,10 +29631,10 @@ bool PluginDescription::loadFromXml (const XmlElement& xml) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_PluginDescription.cpp *********/ +/*** End of inlined file: juce_PluginDescription.cpp ***/ -/********* Start of inlined file: juce_PluginDirectoryScanner.cpp *********/ +/*** Start of inlined file: juce_PluginDirectoryScanner.cpp ***/ BEGIN_JUCE_NAMESPACE PluginDirectoryScanner::PluginDirectoryScanner (KnownPluginList& listToAddTo, @@ -29668,10 +29731,10 @@ void PluginDirectoryScanner::setDeadMansPedalFile (const StringArray& newContent } END_JUCE_NAMESPACE -/********* End of inlined file: juce_PluginDirectoryScanner.cpp *********/ +/*** End of inlined file: juce_PluginDirectoryScanner.cpp ***/ -/********* Start of inlined file: juce_PluginListComponent.cpp *********/ +/*** Start of inlined file: juce_PluginListComponent.cpp ***/ BEGIN_JUCE_NAMESPACE PluginListComponent::PluginListComponent (KnownPluginList& listToEdit, @@ -29937,10 +30000,10 @@ void PluginListComponent::scanFor (AudioPluginFormat* format) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_PluginListComponent.cpp *********/ +/*** End of inlined file: juce_PluginListComponent.cpp ***/ -/********* Start of inlined file: juce_AudioUnitPluginFormat.mm *********/ +/*** Start of inlined file: juce_AudioUnitPluginFormat.mm ***/ #if JUCE_PLUGINHOST_AU && (! (defined (LINUX) || defined (_WIN32))) #include @@ -31395,14 +31458,14 @@ END_JUCE_NAMESPACE #undef log #endif -/********* End of inlined file: juce_AudioUnitPluginFormat.mm *********/ +/*** End of inlined file: juce_AudioUnitPluginFormat.mm ***/ -/********* Start of inlined file: juce_VSTPluginFormat.mm *********/ + +/*** Start of inlined file: juce_VSTPluginFormat.mm ***/ // This file just wraps juce_VSTPluginFormat.cpp in an objective-C wrapper #define JUCE_MAC_VST_INCLUDED 1 -/********* Start of inlined file: juce_VSTPluginFormat.cpp *********/ - +/*** Start of inlined file: juce_VSTPluginFormat.cpp ***/ #if JUCE_PLUGINHOST_VST #if (defined (_WIN32) || defined (_WIN64)) @@ -31462,7 +31525,8 @@ BEGIN_JUCE_NAMESPACE #define Time JUCE_NAMESPACE::Time #endif -/********* Start of inlined file: juce_VSTMidiEventList.h *********/ + +/*** Start of inlined file: juce_VSTMidiEventList.h ***/ #ifdef __aeffect__ #ifndef __JUCE_VSTMIDIEVENTLIST_JUCEHEADER__ @@ -31614,7 +31678,7 @@ private: #endif // __JUCE_VSTMIDIEVENTLIST_JUCEHEADER__ #endif // __JUCE_VSTMIDIEVENTLIST_JUCEHEADER__ -/********* End of inlined file: juce_VSTMidiEventList.h *********/ +/*** End of inlined file: juce_VSTMidiEventList.h ***/ #if ! JUCE_WIN32 #define _fpreset() @@ -34468,12 +34532,13 @@ END_JUCE_NAMESPACE #undef log #endif -/********* End of inlined file: juce_VSTPluginFormat.cpp *********/ +/*** End of inlined file: juce_VSTPluginFormat.cpp ***/ -/********* End of inlined file: juce_VSTPluginFormat.mm *********/ -/********* Start of inlined file: juce_AudioProcessor.cpp *********/ +/*** End of inlined file: juce_VSTPluginFormat.mm ***/ + +/*** Start of inlined file: juce_AudioProcessor.cpp ***/ BEGIN_JUCE_NAMESPACE AudioProcessor::AudioProcessor() @@ -34730,10 +34795,10 @@ void AudioProcessorListener::audioProcessorParameterChangeGestureEnd (AudioProce } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioProcessor.cpp *********/ +/*** End of inlined file: juce_AudioProcessor.cpp ***/ -/********* Start of inlined file: juce_AudioProcessorEditor.cpp *********/ +/*** Start of inlined file: juce_AudioProcessorEditor.cpp ***/ BEGIN_JUCE_NAMESPACE AudioProcessorEditor::AudioProcessorEditor (AudioProcessor* const owner_) @@ -34751,10 +34816,10 @@ AudioProcessorEditor::~AudioProcessorEditor() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioProcessorEditor.cpp *********/ +/*** End of inlined file: juce_AudioProcessorEditor.cpp ***/ -/********* Start of inlined file: juce_AudioProcessorGraph.cpp *********/ +/*** Start of inlined file: juce_AudioProcessorGraph.cpp ***/ BEGIN_JUCE_NAMESPACE const int AudioProcessorGraph::midiChannelIndex = 0x1000; @@ -36055,10 +36120,10 @@ void AudioProcessorGraph::AudioGraphIOProcessor::setParentGraph (AudioProcessorG } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioProcessorGraph.cpp *********/ +/*** End of inlined file: juce_AudioProcessorGraph.cpp ***/ -/********* Start of inlined file: juce_AudioProcessorPlayer.cpp *********/ +/*** Start of inlined file: juce_AudioProcessorPlayer.cpp ***/ BEGIN_JUCE_NAMESPACE AudioProcessorPlayer::AudioProcessorPlayer() @@ -36202,10 +36267,10 @@ void AudioProcessorPlayer::handleIncomingMidiMessage (MidiInput*, const MidiMess } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioProcessorPlayer.cpp *********/ +/*** End of inlined file: juce_AudioProcessorPlayer.cpp ***/ -/********* Start of inlined file: juce_GenericAudioProcessorEditor.cpp *********/ +/*** Start of inlined file: juce_GenericAudioProcessorEditor.cpp ***/ BEGIN_JUCE_NAMESPACE class ProcessorParameterPropertyComp : public PropertyComponent, @@ -36344,10 +36409,10 @@ void GenericAudioProcessorEditor::resized() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_GenericAudioProcessorEditor.cpp *********/ +/*** End of inlined file: juce_GenericAudioProcessorEditor.cpp ***/ -/********* Start of inlined file: juce_Sampler.cpp *********/ +/*** Start of inlined file: juce_Sampler.cpp ***/ BEGIN_JUCE_NAMESPACE SamplerSound::SamplerSound (const String& name_, @@ -36558,10 +36623,10 @@ void SamplerVoice::renderNextBlock (AudioSampleBuffer& outputBuffer, int startSa } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Sampler.cpp *********/ +/*** End of inlined file: juce_Sampler.cpp ***/ -/********* Start of inlined file: juce_Synthesiser.cpp *********/ +/*** Start of inlined file: juce_Synthesiser.cpp ***/ BEGIN_JUCE_NAMESPACE SynthesiserSound::SynthesiserSound() @@ -36891,10 +36956,10 @@ SynthesiserVoice* Synthesiser::findFreeVoice (SynthesiserSound* soundToPlay, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Synthesiser.cpp *********/ +/*** End of inlined file: juce_Synthesiser.cpp ***/ -/********* Start of inlined file: juce_ActionBroadcaster.cpp *********/ +/*** Start of inlined file: juce_ActionBroadcaster.cpp ***/ BEGIN_JUCE_NAMESPACE ActionBroadcaster::ActionBroadcaster() throw() @@ -36933,10 +36998,10 @@ void ActionBroadcaster::sendActionMessage (const String& message) const } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ActionBroadcaster.cpp *********/ +/*** End of inlined file: juce_ActionBroadcaster.cpp ***/ -/********* Start of inlined file: juce_ActionListenerList.cpp *********/ +/*** Start of inlined file: juce_ActionListenerList.cpp ***/ BEGIN_JUCE_NAMESPACE // special message of our own with a string in it @@ -37015,10 +37080,10 @@ void ActionListenerList::handleMessage (const Message& message) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ActionListenerList.cpp *********/ +/*** End of inlined file: juce_ActionListenerList.cpp ***/ -/********* Start of inlined file: juce_AsyncUpdater.cpp *********/ +/*** Start of inlined file: juce_AsyncUpdater.cpp ***/ BEGIN_JUCE_NAMESPACE AsyncUpdater::AsyncUpdater() throw() @@ -37060,10 +37125,10 @@ void AsyncUpdater::AsyncUpdaterInternal::handleMessage (const Message&) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AsyncUpdater.cpp *********/ +/*** End of inlined file: juce_AsyncUpdater.cpp ***/ -/********* Start of inlined file: juce_ChangeBroadcaster.cpp *********/ +/*** Start of inlined file: juce_ChangeBroadcaster.cpp ***/ BEGIN_JUCE_NAMESPACE ChangeBroadcaster::ChangeBroadcaster() throw() @@ -37112,10 +37177,10 @@ void ChangeBroadcaster::dispatchPendingMessages() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ChangeBroadcaster.cpp *********/ +/*** End of inlined file: juce_ChangeBroadcaster.cpp ***/ -/********* Start of inlined file: juce_ChangeListenerList.cpp *********/ +/*** Start of inlined file: juce_ChangeListenerList.cpp ***/ BEGIN_JUCE_NAMESPACE ChangeListenerList::ChangeListenerList() throw() @@ -37192,10 +37257,10 @@ void ChangeListenerList::dispatchPendingMessages() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ChangeListenerList.cpp *********/ +/*** End of inlined file: juce_ChangeListenerList.cpp ***/ -/********* Start of inlined file: juce_InterprocessConnection.cpp *********/ +/*** Start of inlined file: juce_InterprocessConnection.cpp ***/ BEGIN_JUCE_NAMESPACE InterprocessConnection::InterprocessConnection (const bool callbacksOnMessageThread, @@ -37536,10 +37601,10 @@ void InterprocessConnection::run() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_InterprocessConnection.cpp *********/ +/*** End of inlined file: juce_InterprocessConnection.cpp ***/ -/********* Start of inlined file: juce_InterprocessConnectionServer.cpp *********/ +/*** Start of inlined file: juce_InterprocessConnectionServer.cpp ***/ BEGIN_JUCE_NAMESPACE InterprocessConnectionServer::InterprocessConnectionServer() @@ -37596,10 +37661,10 @@ void InterprocessConnectionServer::run() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_InterprocessConnectionServer.cpp *********/ +/*** End of inlined file: juce_InterprocessConnectionServer.cpp ***/ -/********* Start of inlined file: juce_Message.cpp *********/ +/*** Start of inlined file: juce_Message.cpp ***/ BEGIN_JUCE_NAMESPACE Message::Message() throw() @@ -37622,10 +37687,10 @@ Message::Message (const int intParameter1_, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Message.cpp *********/ +/*** End of inlined file: juce_Message.cpp ***/ -/********* Start of inlined file: juce_MessageListener.cpp *********/ +/*** Start of inlined file: juce_MessageListener.cpp ***/ BEGIN_JUCE_NAMESPACE MessageListener::MessageListener() throw() @@ -37660,10 +37725,10 @@ bool MessageListener::isValidMessageListener() const throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MessageListener.cpp *********/ +/*** End of inlined file: juce_MessageListener.cpp ***/ -/********* Start of inlined file: juce_MessageManager.cpp *********/ +/*** Start of inlined file: juce_MessageManager.cpp ***/ BEGIN_JUCE_NAMESPACE // platform-specific functions.. @@ -37947,10 +38012,10 @@ MessageManagerLock::~MessageManagerLock() throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MessageManager.cpp *********/ +/*** End of inlined file: juce_MessageManager.cpp ***/ -/********* Start of inlined file: juce_MultiTimer.cpp *********/ +/*** Start of inlined file: juce_MultiTimer.cpp ***/ BEGIN_JUCE_NAMESPACE class MultiTimer::MultiTimerCallback : public Timer @@ -38053,10 +38118,10 @@ int MultiTimer::getTimerInterval (const int timerId) const throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MultiTimer.cpp *********/ +/*** End of inlined file: juce_MultiTimer.cpp ***/ -/********* Start of inlined file: juce_Timer.cpp *********/ +/*** Start of inlined file: juce_Timer.cpp ***/ BEGIN_JUCE_NAMESPACE class InternalTimerThread : private Thread, @@ -38413,10 +38478,13 @@ void Timer::stopTimer() throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Timer.cpp *********/ +/*** End of inlined file: juce_Timer.cpp ***/ -/********* Start of inlined file: juce_Component.cpp *********/ +#endif +#if JUCE_BUILD_GUI + +/*** Start of inlined file: juce_Component.cpp ***/ BEGIN_JUCE_NAMESPACE Component* Component::componentUnderMouse = 0; @@ -41860,10 +41928,11 @@ const Component* ComponentDeletionWatcher::getComponent() const throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Component.cpp *********/ +/*** End of inlined file: juce_Component.cpp ***/ -/********* Start of inlined file: juce_ComponentListener.cpp *********/ + +/*** Start of inlined file: juce_ComponentListener.cpp ***/ BEGIN_JUCE_NAMESPACE void ComponentListener::componentMovedOrResized (Component&, bool, bool) @@ -41891,10 +41960,10 @@ void ComponentListener::componentNameChanged (Component&) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ComponentListener.cpp *********/ +/*** End of inlined file: juce_ComponentListener.cpp ***/ -/********* Start of inlined file: juce_Desktop.cpp *********/ +/*** Start of inlined file: juce_Desktop.cpp ***/ BEGIN_JUCE_NAMESPACE Desktop::Desktop() throw() @@ -42279,10 +42348,10 @@ void Desktop::setKioskModeComponent (Component* componentToUse, const bool allow } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Desktop.cpp *********/ +/*** End of inlined file: juce_Desktop.cpp ***/ -/********* Start of inlined file: juce_ArrowButton.cpp *********/ +/*** Start of inlined file: juce_ArrowButton.cpp ***/ BEGIN_JUCE_NAMESPACE ArrowButton::ArrowButton (const String& name, @@ -42328,10 +42397,10 @@ void ArrowButton::buttonStateChanged() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ArrowButton.cpp *********/ +/*** End of inlined file: juce_ArrowButton.cpp ***/ -/********* Start of inlined file: juce_Button.cpp *********/ +/*** Start of inlined file: juce_Button.cpp ***/ BEGIN_JUCE_NAMESPACE class Button::RepeatTimer : public Timer @@ -43012,10 +43081,10 @@ Button::RepeatTimer& Button::getRepeatTimer() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Button.cpp *********/ +/*** End of inlined file: juce_Button.cpp ***/ -/********* Start of inlined file: juce_DrawableButton.cpp *********/ +/*** Start of inlined file: juce_DrawableButton.cpp ***/ BEGIN_JUCE_NAMESPACE DrawableButton::DrawableButton (const String& name, @@ -43272,10 +43341,10 @@ const Drawable* DrawableButton::getDownImage() const throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_DrawableButton.cpp *********/ +/*** End of inlined file: juce_DrawableButton.cpp ***/ -/********* Start of inlined file: juce_HyperlinkButton.cpp *********/ +/*** Start of inlined file: juce_HyperlinkButton.cpp ***/ BEGIN_JUCE_NAMESPACE HyperlinkButton::HyperlinkButton (const String& linkText, @@ -43357,10 +43426,10 @@ void HyperlinkButton::paintButton (Graphics& g, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_HyperlinkButton.cpp *********/ +/*** End of inlined file: juce_HyperlinkButton.cpp ***/ -/********* Start of inlined file: juce_ImageButton.cpp *********/ +/*** Start of inlined file: juce_ImageButton.cpp ***/ BEGIN_JUCE_NAMESPACE ImageButton::ImageButton (const String& text_) @@ -43544,10 +43613,10 @@ bool ImageButton::hitTest (int x, int y) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ImageButton.cpp *********/ +/*** End of inlined file: juce_ImageButton.cpp ***/ -/********* Start of inlined file: juce_ShapeButton.cpp *********/ +/*** Start of inlined file: juce_ShapeButton.cpp ***/ BEGIN_JUCE_NAMESPACE ShapeButton::ShapeButton (const String& text_, @@ -43645,10 +43714,10 @@ void ShapeButton::paintButton (Graphics& g, bool isMouseOverButton, bool isButto } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ShapeButton.cpp *********/ +/*** End of inlined file: juce_ShapeButton.cpp ***/ -/********* Start of inlined file: juce_TextButton.cpp *********/ +/*** Start of inlined file: juce_TextButton.cpp ***/ BEGIN_JUCE_NAMESPACE TextButton::TextButton (const String& name, @@ -43697,10 +43766,10 @@ void TextButton::changeWidthToFitText (const int newHeight) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_TextButton.cpp *********/ +/*** End of inlined file: juce_TextButton.cpp ***/ -/********* Start of inlined file: juce_ToggleButton.cpp *********/ +/*** Start of inlined file: juce_ToggleButton.cpp ***/ BEGIN_JUCE_NAMESPACE ToggleButton::ToggleButton (const String& buttonText) @@ -43733,10 +43802,10 @@ void ToggleButton::colourChanged() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ToggleButton.cpp *********/ +/*** End of inlined file: juce_ToggleButton.cpp ***/ -/********* Start of inlined file: juce_ToolbarButton.cpp *********/ +/*** Start of inlined file: juce_ToolbarButton.cpp ***/ BEGIN_JUCE_NAMESPACE ToolbarButton::ToolbarButton (const int itemId_, @@ -43792,10 +43861,10 @@ void ToolbarButton::contentAreaChanged (const Rectangle&) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ToolbarButton.cpp *********/ +/*** End of inlined file: juce_ToolbarButton.cpp ***/ -/********* Start of inlined file: juce_CodeDocument.cpp *********/ +/*** Start of inlined file: juce_CodeDocument.cpp ***/ BEGIN_JUCE_NAMESPACE class CodeDocumentLine @@ -44694,10 +44763,10 @@ void CodeDocument::remove (const int startPos, const int endPos, const bool undo } END_JUCE_NAMESPACE -/********* End of inlined file: juce_CodeDocument.cpp *********/ +/*** End of inlined file: juce_CodeDocument.cpp ***/ -/********* Start of inlined file: juce_CodeEditorComponent.cpp *********/ +/*** Start of inlined file: juce_CodeEditorComponent.cpp ***/ BEGIN_JUCE_NAMESPACE class CaretComponent : public Component, @@ -45872,10 +45941,10 @@ void CodeEditorComponent::getIteratorForPosition (int position, CodeDocument::It } END_JUCE_NAMESPACE -/********* End of inlined file: juce_CodeEditorComponent.cpp *********/ +/*** End of inlined file: juce_CodeEditorComponent.cpp ***/ -/********* Start of inlined file: juce_CPlusPlusCodeTokeniser.cpp *********/ +/*** Start of inlined file: juce_CPlusPlusCodeTokeniser.cpp ***/ BEGIN_JUCE_NAMESPACE CPlusPlusCodeTokeniser::CPlusPlusCodeTokeniser() @@ -46441,10 +46510,10 @@ const Colour CPlusPlusCodeTokeniser::getDefaultColour (const int tokenType) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_CPlusPlusCodeTokeniser.cpp *********/ +/*** End of inlined file: juce_CPlusPlusCodeTokeniser.cpp ***/ -/********* Start of inlined file: juce_ComboBox.cpp *********/ +/*** Start of inlined file: juce_ComboBox.cpp ***/ BEGIN_JUCE_NAMESPACE ComboBox::ComboBox (const String& name) @@ -47023,10 +47092,10 @@ void ComboBox::handleAsyncUpdate() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ComboBox.cpp *********/ +/*** End of inlined file: juce_ComboBox.cpp ***/ -/********* Start of inlined file: juce_Label.cpp *********/ +/*** Start of inlined file: juce_Label.cpp ***/ BEGIN_JUCE_NAMESPACE Label::Label (const String& componentName, @@ -47455,10 +47524,10 @@ void Label::textEditorFocusLost (TextEditor& ed) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Label.cpp *********/ +/*** End of inlined file: juce_Label.cpp ***/ -/********* Start of inlined file: juce_ListBox.cpp *********/ +/*** Start of inlined file: juce_ListBox.cpp ***/ BEGIN_JUCE_NAMESPACE class ListBoxRowComponent : public Component, @@ -48418,10 +48487,10 @@ const String ListBoxModel::getTooltipForRow (int) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ListBox.cpp *********/ +/*** End of inlined file: juce_ListBox.cpp ***/ -/********* Start of inlined file: juce_ProgressBar.cpp *********/ +/*** Start of inlined file: juce_ProgressBar.cpp ***/ BEGIN_JUCE_NAMESPACE ProgressBar::ProgressBar (double& progress_) @@ -48512,10 +48581,10 @@ void ProgressBar::timerCallback() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ProgressBar.cpp *********/ +/*** End of inlined file: juce_ProgressBar.cpp ***/ -/********* Start of inlined file: juce_Slider.cpp *********/ +/*** Start of inlined file: juce_Slider.cpp ***/ BEGIN_JUCE_NAMESPACE class SliderPopupDisplayComponent : public BubbleComponent @@ -49904,10 +49973,10 @@ void SliderListener::sliderDragEnded (Slider*) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Slider.cpp *********/ +/*** End of inlined file: juce_Slider.cpp ***/ -/********* Start of inlined file: juce_TableHeaderComponent.cpp *********/ +/*** Start of inlined file: juce_TableHeaderComponent.cpp ***/ BEGIN_JUCE_NAMESPACE class DragOverlayComp : public Component @@ -50810,10 +50879,10 @@ void TableHeaderListener::tableColumnDraggingChanged (TableHeaderComponent*, int } END_JUCE_NAMESPACE -/********* End of inlined file: juce_TableHeaderComponent.cpp *********/ +/*** End of inlined file: juce_TableHeaderComponent.cpp ***/ -/********* Start of inlined file: juce_TableListBox.cpp *********/ +/*** Start of inlined file: juce_TableListBox.cpp ***/ BEGIN_JUCE_NAMESPACE static const char* const tableColumnPropertyTag = "_tableColumnID"; @@ -51344,10 +51413,10 @@ Component* TableListBoxModel::refreshComponentForCell (int, int, bool, Component } END_JUCE_NAMESPACE -/********* End of inlined file: juce_TableListBox.cpp *********/ +/*** End of inlined file: juce_TableListBox.cpp ***/ -/********* Start of inlined file: juce_TextEditor.cpp *********/ +/*** Start of inlined file: juce_TextEditor.cpp ***/ BEGIN_JUCE_NAMESPACE // a word or space that can't be broken down any further @@ -53916,10 +53985,10 @@ void TextEditor::coalesceSimilarSections() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_TextEditor.cpp *********/ +/*** End of inlined file: juce_TextEditor.cpp ***/ -/********* Start of inlined file: juce_Toolbar.cpp *********/ +/*** Start of inlined file: juce_Toolbar.cpp ***/ BEGIN_JUCE_NAMESPACE const tchar* const Toolbar::toolbarDragDescriptor = T("_toolbarItem_"); @@ -54777,10 +54846,10 @@ void Toolbar::showCustomisationDialog (ToolbarItemFactory& factory, const int op } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Toolbar.cpp *********/ +/*** End of inlined file: juce_Toolbar.cpp ***/ -/********* Start of inlined file: juce_ToolbarItemComponent.cpp *********/ +/*** Start of inlined file: juce_ToolbarItemComponent.cpp ***/ BEGIN_JUCE_NAMESPACE ToolbarItemFactory::ToolbarItemFactory() @@ -55009,10 +55078,10 @@ void ToolbarItemComponent::setEditingMode (const ToolbarEditingMode newMode) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ToolbarItemComponent.cpp *********/ +/*** End of inlined file: juce_ToolbarItemComponent.cpp ***/ -/********* Start of inlined file: juce_ToolbarItemPalette.cpp *********/ +/*** Start of inlined file: juce_ToolbarItemPalette.cpp ***/ BEGIN_JUCE_NAMESPACE ToolbarItemPalette::ToolbarItemPalette (ToolbarItemFactory& factory_, @@ -55106,10 +55175,10 @@ void ToolbarItemPalette::replaceComponent (ToolbarItemComponent* const comp) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ToolbarItemPalette.cpp *********/ +/*** End of inlined file: juce_ToolbarItemPalette.cpp ***/ -/********* Start of inlined file: juce_TreeView.cpp *********/ +/*** Start of inlined file: juce_TreeView.cpp ***/ BEGIN_JUCE_NAMESPACE class TreeViewContentComponent : public Component, @@ -56851,10 +56920,10 @@ XmlElement* TreeViewItem::getOpennessState() const throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_TreeView.cpp *********/ +/*** End of inlined file: juce_TreeView.cpp ***/ -/********* Start of inlined file: juce_DirectoryContentsDisplayComponent.cpp *********/ +/*** Start of inlined file: juce_DirectoryContentsDisplayComponent.cpp ***/ BEGIN_JUCE_NAMESPACE DirectoryContentsDisplayComponent::DirectoryContentsDisplayComponent (DirectoryContentsList& listToShow) @@ -56935,10 +57004,10 @@ void DirectoryContentsDisplayComponent::sendDoubleClickMessage (const File& file } END_JUCE_NAMESPACE -/********* End of inlined file: juce_DirectoryContentsDisplayComponent.cpp *********/ +/*** End of inlined file: juce_DirectoryContentsDisplayComponent.cpp ***/ -/********* Start of inlined file: juce_DirectoryContentsList.cpp *********/ +/*** Start of inlined file: juce_DirectoryContentsList.cpp ***/ BEGIN_JUCE_NAMESPACE void* juce_findFileStart (const String& directory, const String& wildCard, String& firstResultFile, @@ -57206,10 +57275,10 @@ bool DirectoryContentsList::addFile (const String& filename, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_DirectoryContentsList.cpp *********/ +/*** End of inlined file: juce_DirectoryContentsList.cpp ***/ -/********* Start of inlined file: juce_FileBrowserComponent.cpp *********/ +/*** Start of inlined file: juce_FileBrowserComponent.cpp ***/ BEGIN_JUCE_NAMESPACE FileBrowserComponent::FileBrowserComponent (int flags_, @@ -57731,10 +57800,10 @@ const BitArray FileBrowserComponent::getRoots (StringArray& rootNames, StringArr } END_JUCE_NAMESPACE -/********* End of inlined file: juce_FileBrowserComponent.cpp *********/ +/*** End of inlined file: juce_FileBrowserComponent.cpp ***/ -/********* Start of inlined file: juce_FileChooser.cpp *********/ +/*** Start of inlined file: juce_FileChooser.cpp ***/ BEGIN_JUCE_NAMESPACE FileChooser::FileChooser (const String& chooserBoxTitle, @@ -57877,10 +57946,10 @@ FilePreviewComponent::~FilePreviewComponent() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_FileChooser.cpp *********/ +/*** End of inlined file: juce_FileChooser.cpp ***/ -/********* Start of inlined file: juce_FileChooserDialogBox.cpp *********/ +/*** Start of inlined file: juce_FileChooserDialogBox.cpp ***/ BEGIN_JUCE_NAMESPACE FileChooserDialogBox::FileChooserDialogBox (const String& name, @@ -58027,10 +58096,10 @@ void FileChooserDialogBox::ContentComponent::resized() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_FileChooserDialogBox.cpp *********/ +/*** End of inlined file: juce_FileChooserDialogBox.cpp ***/ -/********* Start of inlined file: juce_FileFilter.cpp *********/ +/*** Start of inlined file: juce_FileFilter.cpp ***/ BEGIN_JUCE_NAMESPACE FileFilter::FileFilter (const String& filterDescription) @@ -58048,10 +58117,10 @@ const String& FileFilter::getDescription() const throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_FileFilter.cpp *********/ +/*** End of inlined file: juce_FileFilter.cpp ***/ -/********* Start of inlined file: juce_FileListComponent.cpp *********/ +/*** Start of inlined file: juce_FileListComponent.cpp ***/ BEGIN_JUCE_NAMESPACE Image* juce_createIconForFile (const File& file); @@ -58286,10 +58355,10 @@ void FileListComponent::returnKeyPressed (int currentSelectedRow) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_FileListComponent.cpp *********/ +/*** End of inlined file: juce_FileListComponent.cpp ***/ -/********* Start of inlined file: juce_FilenameComponent.cpp *********/ +/*** Start of inlined file: juce_FilenameComponent.cpp ***/ BEGIN_JUCE_NAMESPACE FilenameComponent::FilenameComponent (const String& name, @@ -58515,10 +58584,10 @@ void FilenameComponent::handleAsyncUpdate() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_FilenameComponent.cpp *********/ +/*** End of inlined file: juce_FilenameComponent.cpp ***/ -/********* Start of inlined file: juce_FileSearchPathListComponent.cpp *********/ +/*** Start of inlined file: juce_FileSearchPathListComponent.cpp ***/ BEGIN_JUCE_NAMESPACE FileSearchPathListComponent::FileSearchPathListComponent() @@ -58752,10 +58821,10 @@ void FileSearchPathListComponent::buttonClicked (Button* button) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_FileSearchPathListComponent.cpp *********/ +/*** End of inlined file: juce_FileSearchPathListComponent.cpp ***/ -/********* Start of inlined file: juce_FileTreeComponent.cpp *********/ +/*** Start of inlined file: juce_FileTreeComponent.cpp ***/ BEGIN_JUCE_NAMESPACE Image* juce_createIconForFile (const File& file); @@ -58987,10 +59056,10 @@ void FileTreeComponent::setDragAndDropDescription (const String& description) th } END_JUCE_NAMESPACE -/********* End of inlined file: juce_FileTreeComponent.cpp *********/ +/*** End of inlined file: juce_FileTreeComponent.cpp ***/ -/********* Start of inlined file: juce_ImagePreviewComponent.cpp *********/ +/*** Start of inlined file: juce_ImagePreviewComponent.cpp ***/ BEGIN_JUCE_NAMESPACE ImagePreviewComponent::ImagePreviewComponent() @@ -59086,10 +59155,10 @@ void ImagePreviewComponent::paint (Graphics& g) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ImagePreviewComponent.cpp *********/ +/*** End of inlined file: juce_ImagePreviewComponent.cpp ***/ -/********* Start of inlined file: juce_WildcardFileFilter.cpp *********/ +/*** Start of inlined file: juce_WildcardFileFilter.cpp ***/ BEGIN_JUCE_NAMESPACE WildcardFileFilter::WildcardFileFilter (const String& fileWildcardPatterns, @@ -59142,10 +59211,10 @@ bool WildcardFileFilter::match (const File& file, const StringArray& wildcards) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_WildcardFileFilter.cpp *********/ +/*** End of inlined file: juce_WildcardFileFilter.cpp ***/ -/********* Start of inlined file: juce_KeyboardFocusTraverser.cpp *********/ +/*** Start of inlined file: juce_KeyboardFocusTraverser.cpp ***/ BEGIN_JUCE_NAMESPACE KeyboardFocusTraverser::KeyboardFocusTraverser() @@ -59258,10 +59327,10 @@ Component* KeyboardFocusTraverser::getDefaultComponent (Component* parentCompone } END_JUCE_NAMESPACE -/********* End of inlined file: juce_KeyboardFocusTraverser.cpp *********/ +/*** End of inlined file: juce_KeyboardFocusTraverser.cpp ***/ -/********* Start of inlined file: juce_KeyListener.cpp *********/ +/*** Start of inlined file: juce_KeyListener.cpp ***/ BEGIN_JUCE_NAMESPACE bool KeyListener::keyStateChanged (const bool, Component*) @@ -59270,10 +59339,10 @@ bool KeyListener::keyStateChanged (const bool, Component*) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_KeyListener.cpp *********/ +/*** End of inlined file: juce_KeyListener.cpp ***/ -/********* Start of inlined file: juce_KeyMappingEditorComponent.cpp *********/ +/*** Start of inlined file: juce_KeyMappingEditorComponent.cpp ***/ BEGIN_JUCE_NAMESPACE // N.B. these two includes are put here deliberately to avoid problems with @@ -59753,10 +59822,10 @@ const String KeyMappingEditorComponent::getDescriptionForKeyPress (const KeyPres } END_JUCE_NAMESPACE -/********* End of inlined file: juce_KeyMappingEditorComponent.cpp *********/ +/*** End of inlined file: juce_KeyMappingEditorComponent.cpp ***/ -/********* Start of inlined file: juce_KeyPress.cpp *********/ +/*** Start of inlined file: juce_KeyPress.cpp ***/ BEGIN_JUCE_NAMESPACE KeyPress::KeyPress() throw() @@ -60000,10 +60069,10 @@ const String KeyPress::getTextDescription() const throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_KeyPress.cpp *********/ +/*** End of inlined file: juce_KeyPress.cpp ***/ -/********* Start of inlined file: juce_KeyPressMappingSet.cpp *********/ +/*** Start of inlined file: juce_KeyPressMappingSet.cpp ***/ BEGIN_JUCE_NAMESPACE KeyPressMappingSet::KeyPressMappingSet (ApplicationCommandManager* const commandManager_) throw() @@ -60402,10 +60471,10 @@ void KeyPressMappingSet::globalFocusChanged (Component* focusedComponent) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_KeyPressMappingSet.cpp *********/ +/*** End of inlined file: juce_KeyPressMappingSet.cpp ***/ -/********* Start of inlined file: juce_ModifierKeys.cpp *********/ +/*** Start of inlined file: juce_ModifierKeys.cpp ***/ BEGIN_JUCE_NAMESPACE ModifierKeys::ModifierKeys (const int flags_) throw() @@ -60443,10 +60512,10 @@ int ModifierKeys::getNumMouseButtonsDown() const throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ModifierKeys.cpp *********/ +/*** End of inlined file: juce_ModifierKeys.cpp ***/ -/********* Start of inlined file: juce_ComponentAnimator.cpp *********/ +/*** Start of inlined file: juce_ComponentAnimator.cpp ***/ BEGIN_JUCE_NAMESPACE struct AnimationTask @@ -60657,10 +60726,10 @@ void ComponentAnimator::timerCallback() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ComponentAnimator.cpp *********/ +/*** End of inlined file: juce_ComponentAnimator.cpp ***/ -/********* Start of inlined file: juce_ComponentBoundsConstrainer.cpp *********/ +/*** Start of inlined file: juce_ComponentBoundsConstrainer.cpp ***/ BEGIN_JUCE_NAMESPACE ComponentBoundsConstrainer::ComponentBoundsConstrainer() throw() @@ -60985,10 +61054,10 @@ void ComponentBoundsConstrainer::checkBounds (int& x, int& y, int& w, int& h, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ComponentBoundsConstrainer.cpp *********/ +/*** End of inlined file: juce_ComponentBoundsConstrainer.cpp ***/ -/********* Start of inlined file: juce_ComponentMovementWatcher.cpp *********/ +/*** Start of inlined file: juce_ComponentMovementWatcher.cpp ***/ BEGIN_JUCE_NAMESPACE ComponentMovementWatcher::ComponentMovementWatcher (Component* const component_) @@ -61094,10 +61163,10 @@ void ComponentMovementWatcher::unregister() throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ComponentMovementWatcher.cpp *********/ +/*** End of inlined file: juce_ComponentMovementWatcher.cpp ***/ -/********* Start of inlined file: juce_GroupComponent.cpp *********/ +/*** Start of inlined file: juce_GroupComponent.cpp ***/ BEGIN_JUCE_NAMESPACE GroupComponent::GroupComponent (const String& componentName, @@ -61155,10 +61224,10 @@ void GroupComponent::colourChanged() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_GroupComponent.cpp *********/ +/*** End of inlined file: juce_GroupComponent.cpp ***/ -/********* Start of inlined file: juce_MultiDocumentPanel.cpp *********/ +/*** Start of inlined file: juce_MultiDocumentPanel.cpp ***/ BEGIN_JUCE_NAMESPACE MultiDocumentPanelWindow::MultiDocumentPanelWindow (const Colour& backgroundColour) @@ -61664,10 +61733,10 @@ void MultiDocumentPanel::updateOrder() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MultiDocumentPanel.cpp *********/ +/*** End of inlined file: juce_MultiDocumentPanel.cpp ***/ -/********* Start of inlined file: juce_ResizableBorderComponent.cpp *********/ +/*** Start of inlined file: juce_ResizableBorderComponent.cpp ***/ BEGIN_JUCE_NAMESPACE const int zoneL = 1; @@ -61870,10 +61939,10 @@ void ResizableBorderComponent::updateMouseZone (const MouseEvent& e) throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ResizableBorderComponent.cpp *********/ +/*** End of inlined file: juce_ResizableBorderComponent.cpp ***/ -/********* Start of inlined file: juce_ResizableCornerComponent.cpp *********/ +/*** Start of inlined file: juce_ResizableCornerComponent.cpp ***/ BEGIN_JUCE_NAMESPACE ResizableCornerComponent::ResizableCornerComponent (Component* const componentToResize, @@ -61952,10 +62021,10 @@ bool ResizableCornerComponent::hitTest (int x, int y) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ResizableCornerComponent.cpp *********/ +/*** End of inlined file: juce_ResizableCornerComponent.cpp ***/ -/********* Start of inlined file: juce_ScrollBar.cpp *********/ +/*** Start of inlined file: juce_ScrollBar.cpp ***/ BEGIN_JUCE_NAMESPACE class ScrollbarButton : public Button @@ -62374,10 +62443,10 @@ bool ScrollBar::keyPressed (const KeyPress& key) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ScrollBar.cpp *********/ +/*** End of inlined file: juce_ScrollBar.cpp ***/ -/********* Start of inlined file: juce_StretchableLayoutManager.cpp *********/ +/*** Start of inlined file: juce_StretchableLayoutManager.cpp ***/ BEGIN_JUCE_NAMESPACE StretchableLayoutManager::StretchableLayoutManager() @@ -62710,10 +62779,10 @@ int StretchableLayoutManager::sizeToRealSize (double size, int totalSpace) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_StretchableLayoutManager.cpp *********/ +/*** End of inlined file: juce_StretchableLayoutManager.cpp ***/ -/********* Start of inlined file: juce_StretchableLayoutResizerBar.cpp *********/ +/*** Start of inlined file: juce_StretchableLayoutResizerBar.cpp ***/ BEGIN_JUCE_NAMESPACE StretchableLayoutResizerBar::StretchableLayoutResizerBar (StretchableLayoutManager* layout_, @@ -62763,10 +62832,10 @@ void StretchableLayoutResizerBar::hasBeenMoved() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_StretchableLayoutResizerBar.cpp *********/ +/*** End of inlined file: juce_StretchableLayoutResizerBar.cpp ***/ -/********* Start of inlined file: juce_StretchableObjectResizer.cpp *********/ +/*** Start of inlined file: juce_StretchableObjectResizer.cpp ***/ BEGIN_JUCE_NAMESPACE StretchableObjectResizer::StretchableObjectResizer() @@ -62867,10 +62936,10 @@ void StretchableObjectResizer::resizeToFit (const double targetSize) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_StretchableObjectResizer.cpp *********/ +/*** End of inlined file: juce_StretchableObjectResizer.cpp ***/ -/********* Start of inlined file: juce_TabbedButtonBar.cpp *********/ +/*** Start of inlined file: juce_TabbedButtonBar.cpp ***/ BEGIN_JUCE_NAMESPACE TabBarButton::TabBarButton (const String& name, @@ -63371,10 +63440,10 @@ void TabbedButtonBar::popupMenuClickOnTab (const int, const String&) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_TabbedButtonBar.cpp *********/ +/*** End of inlined file: juce_TabbedButtonBar.cpp ***/ -/********* Start of inlined file: juce_TabbedComponent.cpp *********/ +/*** Start of inlined file: juce_TabbedComponent.cpp ***/ BEGIN_JUCE_NAMESPACE class TabCompButtonBar : public TabbedButtonBar @@ -63698,10 +63767,10 @@ void TabbedComponent::popupMenuClickOnTab (const int, const String&) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_TabbedComponent.cpp *********/ +/*** End of inlined file: juce_TabbedComponent.cpp ***/ -/********* Start of inlined file: juce_Viewport.cpp *********/ +/*** Start of inlined file: juce_Viewport.cpp ***/ BEGIN_JUCE_NAMESPACE Viewport::Viewport (const String& componentName) @@ -64020,10 +64089,10 @@ bool Viewport::keyPressed (const KeyPress& key) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Viewport.cpp *********/ +/*** End of inlined file: juce_Viewport.cpp ***/ -/********* Start of inlined file: juce_LookAndFeel.cpp *********/ +/*** Start of inlined file: juce_LookAndFeel.cpp ***/ BEGIN_JUCE_NAMESPACE static const Colour createBaseColour (const Colour& buttonColour, @@ -66998,10 +67067,10 @@ void LookAndFeel::drawGlassLozenge (Graphics& g, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_LookAndFeel.cpp *********/ +/*** End of inlined file: juce_LookAndFeel.cpp ***/ -/********* Start of inlined file: juce_OldSchoolLookAndFeel.cpp *********/ +/*** Start of inlined file: juce_OldSchoolLookAndFeel.cpp ***/ BEGIN_JUCE_NAMESPACE OldSchoolLookAndFeel::OldSchoolLookAndFeel() @@ -67566,10 +67635,10 @@ void OldSchoolLookAndFeel::positionDocumentWindowButtons (DocumentWindow&, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_OldSchoolLookAndFeel.cpp *********/ +/*** End of inlined file: juce_OldSchoolLookAndFeel.cpp ***/ -/********* Start of inlined file: juce_MenuBarComponent.cpp *********/ +/*** Start of inlined file: juce_MenuBarComponent.cpp ***/ BEGIN_JUCE_NAMESPACE class DummyMenuComponent : public Component @@ -67982,10 +68051,10 @@ void MenuBarComponent::timerCallback() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MenuBarComponent.cpp *********/ +/*** End of inlined file: juce_MenuBarComponent.cpp ***/ -/********* Start of inlined file: juce_MenuBarModel.cpp *********/ +/*** Start of inlined file: juce_MenuBarModel.cpp ***/ BEGIN_JUCE_NAMESPACE MenuBarModel::MenuBarModel() throw() @@ -68060,10 +68129,10 @@ void MenuBarModel::applicationCommandListChanged() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MenuBarModel.cpp *********/ +/*** End of inlined file: juce_MenuBarModel.cpp ***/ -/********* Start of inlined file: juce_PopupMenu.cpp *********/ +/*** Start of inlined file: juce_PopupMenu.cpp ***/ BEGIN_JUCE_NAMESPACE class PopupMenu::Item @@ -69814,10 +69883,10 @@ bool PopupMenu::MenuItemIterator::next() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_PopupMenu.cpp *********/ +/*** End of inlined file: juce_PopupMenu.cpp ***/ -/********* Start of inlined file: juce_ComponentDragger.cpp *********/ +/*** Start of inlined file: juce_ComponentDragger.cpp ***/ BEGIN_JUCE_NAMESPACE ComponentDragger::ComponentDragger() @@ -69873,10 +69942,10 @@ void ComponentDragger::dragComponent (Component* const componentToDrag, const Mo } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ComponentDragger.cpp *********/ +/*** End of inlined file: juce_ComponentDragger.cpp ***/ -/********* Start of inlined file: juce_DragAndDropContainer.cpp *********/ +/*** Start of inlined file: juce_DragAndDropContainer.cpp ***/ BEGIN_JUCE_NAMESPACE bool juce_performDragDropFiles (const StringArray& files, const bool copyFiles, bool& shouldStop); @@ -70343,10 +70412,10 @@ void FileDragAndDropTarget::fileDragExit (const StringArray&) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_DragAndDropContainer.cpp *********/ +/*** End of inlined file: juce_DragAndDropContainer.cpp ***/ -/********* Start of inlined file: juce_MouseCursor.cpp *********/ +/*** Start of inlined file: juce_MouseCursor.cpp ***/ BEGIN_JUCE_NAMESPACE void* juce_createMouseCursorFromImage (const Image& image, int hotspotX, int hotspotY) throw(); @@ -70474,10 +70543,10 @@ void MouseCursor::hideWaitCursor() throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MouseCursor.cpp *********/ +/*** End of inlined file: juce_MouseCursor.cpp ***/ -/********* Start of inlined file: juce_MouseEvent.cpp *********/ +/*** Start of inlined file: juce_MouseEvent.cpp ***/ BEGIN_JUCE_NAMESPACE MouseEvent::MouseEvent (const int x_, @@ -70605,10 +70674,10 @@ int MouseEvent::getDoubleClickTimeout() throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MouseEvent.cpp *********/ +/*** End of inlined file: juce_MouseEvent.cpp ***/ -/********* Start of inlined file: juce_MouseHoverDetector.cpp *********/ +/*** Start of inlined file: juce_MouseHoverDetector.cpp ***/ BEGIN_JUCE_NAMESPACE MouseHoverDetector::MouseHoverDetector (const int hoverTimeMillisecs_) @@ -70727,10 +70796,10 @@ void MouseHoverDetector::HoverDetectorInternal::mouseWheelMove (const MouseEvent } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MouseHoverDetector.cpp *********/ +/*** End of inlined file: juce_MouseHoverDetector.cpp ***/ -/********* Start of inlined file: juce_MouseListener.cpp *********/ +/*** Start of inlined file: juce_MouseListener.cpp ***/ BEGIN_JUCE_NAMESPACE void MouseListener::mouseEnter (const MouseEvent&) @@ -70766,10 +70835,10 @@ void MouseListener::mouseWheelMove (const MouseEvent&, float, float) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MouseListener.cpp *********/ +/*** End of inlined file: juce_MouseListener.cpp ***/ -/********* Start of inlined file: juce_BooleanPropertyComponent.cpp *********/ +/*** Start of inlined file: juce_BooleanPropertyComponent.cpp ***/ BEGIN_JUCE_NAMESPACE BooleanPropertyComponent::BooleanPropertyComponent (const String& name, @@ -70841,10 +70910,10 @@ void BooleanPropertyComponent::buttonClicked (Button*) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_BooleanPropertyComponent.cpp *********/ +/*** End of inlined file: juce_BooleanPropertyComponent.cpp ***/ -/********* Start of inlined file: juce_ButtonPropertyComponent.cpp *********/ +/*** Start of inlined file: juce_ButtonPropertyComponent.cpp ***/ BEGIN_JUCE_NAMESPACE ButtonPropertyComponent::ButtonPropertyComponent (const String& name, @@ -70872,10 +70941,10 @@ void ButtonPropertyComponent::buttonClicked (Button*) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ButtonPropertyComponent.cpp *********/ +/*** End of inlined file: juce_ButtonPropertyComponent.cpp ***/ -/********* Start of inlined file: juce_ChoicePropertyComponent.cpp *********/ +/*** Start of inlined file: juce_ChoicePropertyComponent.cpp ***/ BEGIN_JUCE_NAMESPACE ChoicePropertyComponent::ChoicePropertyComponent (const String& name) @@ -70956,10 +71025,10 @@ void ChoicePropertyComponent::comboBoxChanged (ComboBox*) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ChoicePropertyComponent.cpp *********/ +/*** End of inlined file: juce_ChoicePropertyComponent.cpp ***/ -/********* Start of inlined file: juce_PropertyComponent.cpp *********/ +/*** Start of inlined file: juce_PropertyComponent.cpp ***/ BEGIN_JUCE_NAMESPACE PropertyComponent::PropertyComponent (const String& name, @@ -70992,10 +71061,10 @@ void PropertyComponent::enablementChanged() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_PropertyComponent.cpp *********/ +/*** End of inlined file: juce_PropertyComponent.cpp ***/ -/********* Start of inlined file: juce_PropertyPanel.cpp *********/ +/*** Start of inlined file: juce_PropertyPanel.cpp ***/ BEGIN_JUCE_NAMESPACE class PropertyHolderComponent : public Component @@ -71396,10 +71465,10 @@ const String& PropertyPanel::getMessageWhenEmpty() const } END_JUCE_NAMESPACE -/********* End of inlined file: juce_PropertyPanel.cpp *********/ +/*** End of inlined file: juce_PropertyPanel.cpp ***/ -/********* Start of inlined file: juce_SliderPropertyComponent.cpp *********/ +/*** Start of inlined file: juce_SliderPropertyComponent.cpp ***/ BEGIN_JUCE_NAMESPACE SliderPropertyComponent::SliderPropertyComponent (const String& name, @@ -71461,10 +71530,10 @@ void SliderPropertyComponent::sliderValueChanged (Slider*) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_SliderPropertyComponent.cpp *********/ +/*** End of inlined file: juce_SliderPropertyComponent.cpp ***/ -/********* Start of inlined file: juce_TextPropertyComponent.cpp *********/ +/*** Start of inlined file: juce_TextPropertyComponent.cpp ***/ BEGIN_JUCE_NAMESPACE class TextPropLabel : public Label @@ -71571,10 +71640,10 @@ void TextPropertyComponent::textWasEdited() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_TextPropertyComponent.cpp *********/ +/*** End of inlined file: juce_TextPropertyComponent.cpp ***/ -/********* Start of inlined file: juce_AudioDeviceSelectorComponent.cpp *********/ +/*** Start of inlined file: juce_AudioDeviceSelectorComponent.cpp ***/ BEGIN_JUCE_NAMESPACE class SimpleDeviceManagerInputLevelMeter : public Component, @@ -72696,10 +72765,10 @@ void AudioDeviceSelectorComponent::changeListenerCallback (void*) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AudioDeviceSelectorComponent.cpp *********/ +/*** End of inlined file: juce_AudioDeviceSelectorComponent.cpp ***/ -/********* Start of inlined file: juce_BubbleComponent.cpp *********/ +/*** Start of inlined file: juce_BubbleComponent.cpp ***/ BEGIN_JUCE_NAMESPACE BubbleComponent::BubbleComponent() @@ -72877,10 +72946,10 @@ void BubbleComponent::setPosition (const Rectangle& rectangleToPointTo) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_BubbleComponent.cpp *********/ +/*** End of inlined file: juce_BubbleComponent.cpp ***/ -/********* Start of inlined file: juce_BubbleMessageComponent.cpp *********/ +/*** Start of inlined file: juce_BubbleMessageComponent.cpp ***/ BEGIN_JUCE_NAMESPACE BubbleMessageComponent::BubbleMessageComponent (int fadeOutLengthMs) @@ -72981,10 +73050,10 @@ void BubbleMessageComponent::timerCallback() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_BubbleMessageComponent.cpp *********/ +/*** End of inlined file: juce_BubbleMessageComponent.cpp ***/ -/********* Start of inlined file: juce_ColourSelector.cpp *********/ +/*** Start of inlined file: juce_ColourSelector.cpp ***/ BEGIN_JUCE_NAMESPACE static const int swatchesPerRow = 8; @@ -73578,10 +73647,10 @@ void ColourSelector::setSwatchColour (const int, const Colour&) const } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ColourSelector.cpp *********/ +/*** End of inlined file: juce_ColourSelector.cpp ***/ -/********* Start of inlined file: juce_DropShadower.cpp *********/ +/*** Start of inlined file: juce_DropShadower.cpp ***/ BEGIN_JUCE_NAMESPACE class ShadowWindow : public Component @@ -73904,10 +73973,10 @@ void DropShadower::bringShadowWindowsToFront() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_DropShadower.cpp *********/ +/*** End of inlined file: juce_DropShadower.cpp ***/ -/********* Start of inlined file: juce_MagnifierComponent.cpp *********/ +/*** Start of inlined file: juce_MagnifierComponent.cpp ***/ BEGIN_JUCE_NAMESPACE class MagnifyingPeer : public ComponentPeer @@ -74211,10 +74280,10 @@ int MagnifierComponent::scaleInt (const int n) const } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MagnifierComponent.cpp *********/ +/*** End of inlined file: juce_MagnifierComponent.cpp ***/ -/********* Start of inlined file: juce_MidiKeyboardComponent.cpp *********/ +/*** Start of inlined file: juce_MidiKeyboardComponent.cpp ***/ BEGIN_JUCE_NAMESPACE class MidiKeyboardUpDownButton : public Button @@ -75058,10 +75127,10 @@ void MidiKeyboardComponent::focusLost (FocusChangeType) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_MidiKeyboardComponent.cpp *********/ +/*** End of inlined file: juce_MidiKeyboardComponent.cpp ***/ -/********* Start of inlined file: juce_OpenGLComponent.cpp *********/ +/*** Start of inlined file: juce_OpenGLComponent.cpp ***/ #if JUCE_OPENGL BEGIN_JUCE_NAMESPACE @@ -75319,10 +75388,10 @@ void OpenGLComponent::internalRepaint (int x, int y, int w, int h) END_JUCE_NAMESPACE #endif -/********* End of inlined file: juce_OpenGLComponent.cpp *********/ +/*** End of inlined file: juce_OpenGLComponent.cpp ***/ -/********* Start of inlined file: juce_PreferencesPanel.cpp *********/ +/*** Start of inlined file: juce_PreferencesPanel.cpp ***/ BEGIN_JUCE_NAMESPACE PreferencesPanel::PreferencesPanel() @@ -75479,10 +75548,10 @@ void PreferencesPanel::buttonClicked (Button*) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_PreferencesPanel.cpp *********/ +/*** End of inlined file: juce_PreferencesPanel.cpp ***/ -/********* Start of inlined file: juce_SystemTrayIconComponent.cpp *********/ +/*** Start of inlined file: juce_SystemTrayIconComponent.cpp ***/ #if JUCE_WINDOWS || JUCE_LINUX BEGIN_JUCE_NAMESPACE @@ -75499,10 +75568,10 @@ SystemTrayIconComponent::~SystemTrayIconComponent() END_JUCE_NAMESPACE #endif -/********* End of inlined file: juce_SystemTrayIconComponent.cpp *********/ +/*** End of inlined file: juce_SystemTrayIconComponent.cpp ***/ -/********* Start of inlined file: juce_AlertWindow.cpp *********/ +/*** Start of inlined file: juce_AlertWindow.cpp ***/ BEGIN_JUCE_NAMESPACE static const int titleH = 24; @@ -76154,10 +76223,10 @@ int AlertWindow::showYesNoCancelBox (AlertIconType iconType, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AlertWindow.cpp *********/ +/*** End of inlined file: juce_AlertWindow.cpp ***/ -/********* Start of inlined file: juce_ComponentPeer.cpp *********/ +/*** Start of inlined file: juce_ComponentPeer.cpp ***/ BEGIN_JUCE_NAMESPACE //#define JUCE_ENABLE_REPAINT_DEBUGGING 1 @@ -76850,10 +76919,10 @@ void ComponentPeer::setCurrentRenderingEngine (int /*index*/) throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ComponentPeer.cpp *********/ +/*** End of inlined file: juce_ComponentPeer.cpp ***/ -/********* Start of inlined file: juce_DialogWindow.cpp *********/ +/*** Start of inlined file: juce_DialogWindow.cpp ***/ BEGIN_JUCE_NAMESPACE DialogWindow::DialogWindow (const String& name, @@ -76925,10 +76994,10 @@ int DialogWindow::showModalDialog (const String& dialogTitle, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_DialogWindow.cpp *********/ +/*** End of inlined file: juce_DialogWindow.cpp ***/ -/********* Start of inlined file: juce_DocumentWindow.cpp *********/ +/*** Start of inlined file: juce_DocumentWindow.cpp ***/ BEGIN_JUCE_NAMESPACE class DocumentWindow::ButtonListenerProxy : public ButtonListener @@ -77288,10 +77357,10 @@ void DocumentWindow::userTriedToCloseWindow() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_DocumentWindow.cpp *********/ +/*** End of inlined file: juce_DocumentWindow.cpp ***/ -/********* Start of inlined file: juce_ResizableWindow.cpp *********/ +/*** Start of inlined file: juce_ResizableWindow.cpp ***/ BEGIN_JUCE_NAMESPACE ResizableWindow::ResizableWindow (const String& name, @@ -77819,10 +77888,10 @@ void ResizableWindow::addAndMakeVisible (Component* const child, int zOrder) #endif END_JUCE_NAMESPACE -/********* End of inlined file: juce_ResizableWindow.cpp *********/ +/*** End of inlined file: juce_ResizableWindow.cpp ***/ -/********* Start of inlined file: juce_SplashScreen.cpp *********/ +/*** Start of inlined file: juce_SplashScreen.cpp ***/ BEGIN_JUCE_NAMESPACE SplashScreen::SplashScreen() @@ -77909,10 +77978,10 @@ void SplashScreen::timerCallback() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_SplashScreen.cpp *********/ +/*** End of inlined file: juce_SplashScreen.cpp ***/ -/********* Start of inlined file: juce_ThreadWithProgressWindow.cpp *********/ +/*** Start of inlined file: juce_ThreadWithProgressWindow.cpp ***/ BEGIN_JUCE_NAMESPACE ThreadWithProgressWindow::ThreadWithProgressWindow (const String& title, @@ -77984,10 +78053,10 @@ void ThreadWithProgressWindow::timerCallback() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ThreadWithProgressWindow.cpp *********/ +/*** End of inlined file: juce_ThreadWithProgressWindow.cpp ***/ -/********* Start of inlined file: juce_TooltipWindow.cpp *********/ +/*** Start of inlined file: juce_TooltipWindow.cpp ***/ BEGIN_JUCE_NAMESPACE TooltipWindow::TooltipWindow (Component* const parentComponent, @@ -78142,10 +78211,10 @@ void TooltipWindow::timerCallback() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_TooltipWindow.cpp *********/ +/*** End of inlined file: juce_TooltipWindow.cpp ***/ -/********* Start of inlined file: juce_TopLevelWindow.cpp *********/ +/*** Start of inlined file: juce_TopLevelWindow.cpp ***/ BEGIN_JUCE_NAMESPACE class TopLevelWindowManager : public Timer, @@ -78462,10 +78531,10 @@ TopLevelWindow* TopLevelWindow::getActiveTopLevelWindow() throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_TopLevelWindow.cpp *********/ +/*** End of inlined file: juce_TopLevelWindow.cpp ***/ -/********* Start of inlined file: juce_Colour.cpp *********/ +/*** Start of inlined file: juce_Colour.cpp ***/ BEGIN_JUCE_NAMESPACE static uint8 floatAlphaToInt (const float alpha) @@ -78960,10 +79029,10 @@ const Colour Colour::fromString (const String& encodedColourString) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Colour.cpp *********/ +/*** End of inlined file: juce_Colour.cpp ***/ -/********* Start of inlined file: juce_ColourGradient.cpp *********/ +/*** Start of inlined file: juce_ColourGradient.cpp ***/ BEGIN_JUCE_NAMESPACE ColourGradient::ColourGradient() throw() @@ -79142,10 +79211,10 @@ bool ColourGradient::isInvisible() const throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ColourGradient.cpp *********/ +/*** End of inlined file: juce_ColourGradient.cpp ***/ -/********* Start of inlined file: juce_Colours.cpp *********/ +/*** Start of inlined file: juce_Colours.cpp ***/ BEGIN_JUCE_NAMESPACE const Colour Colours::transparentBlack (0); @@ -79445,10 +79514,10 @@ const Colour Colours::findColourForName (const String& colourName, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Colours.cpp *********/ +/*** End of inlined file: juce_Colours.cpp ***/ -/********* Start of inlined file: juce_EdgeTable.cpp *********/ +/*** Start of inlined file: juce_EdgeTable.cpp ***/ BEGIN_JUCE_NAMESPACE const int juce_edgeTableDefaultEdgesPerLine = 32; @@ -80168,10 +80237,10 @@ bool EdgeTable::isEmpty() throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_EdgeTable.cpp *********/ +/*** End of inlined file: juce_EdgeTable.cpp ***/ -/********* Start of inlined file: juce_FillType.cpp *********/ +/*** Start of inlined file: juce_FillType.cpp ***/ BEGIN_JUCE_NAMESPACE FillType::FillType() throw() @@ -80253,10 +80322,10 @@ void FillType::setOpacity (const float newOpacity) throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_FillType.cpp *********/ +/*** End of inlined file: juce_FillType.cpp ***/ -/********* Start of inlined file: juce_Graphics.cpp *********/ +/*** Start of inlined file: juce_Graphics.cpp ***/ BEGIN_JUCE_NAMESPACE static const Graphics::ResamplingQuality defaultQuality = Graphics::mediumResamplingQuality; @@ -80997,10 +81066,10 @@ void Graphics::drawImageTransformed (const Image* const imageToDraw, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Graphics.cpp *********/ +/*** End of inlined file: juce_Graphics.cpp ***/ -/********* Start of inlined file: juce_Justification.cpp *********/ +/*** Start of inlined file: juce_Justification.cpp ***/ BEGIN_JUCE_NAMESPACE Justification::Justification (const Justification& other) throw() @@ -81057,10 +81126,10 @@ void Justification::applyToRectangle (int& x, int& y, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Justification.cpp *********/ +/*** End of inlined file: juce_Justification.cpp ***/ -/********* Start of inlined file: juce_LowLevelGraphicsPostScriptRenderer.cpp *********/ +/*** Start of inlined file: juce_LowLevelGraphicsPostScriptRenderer.cpp ***/ BEGIN_JUCE_NAMESPACE // this will throw an assertion if you try to draw something that's not @@ -81552,10 +81621,10 @@ void LowLevelGraphicsPostScriptRenderer::drawGlyph (int glyphNumber, const Affin } END_JUCE_NAMESPACE -/********* End of inlined file: juce_LowLevelGraphicsPostScriptRenderer.cpp *********/ +/*** End of inlined file: juce_LowLevelGraphicsPostScriptRenderer.cpp ***/ -/********* Start of inlined file: juce_LowLevelGraphicsSoftwareRenderer.cpp *********/ +/*** Start of inlined file: juce_LowLevelGraphicsSoftwareRenderer.cpp ***/ BEGIN_JUCE_NAMESPACE #if (JUCE_WINDOWS || JUCE_LINUX) && ! JUCE_64BIT @@ -83147,10 +83216,10 @@ void LowLevelGraphicsSoftwareRenderer::drawGlyph (int glyphNumber, const AffineT #endif END_JUCE_NAMESPACE -/********* End of inlined file: juce_LowLevelGraphicsSoftwareRenderer.cpp *********/ +/*** End of inlined file: juce_LowLevelGraphicsSoftwareRenderer.cpp ***/ -/********* Start of inlined file: juce_RectanglePlacement.cpp *********/ +/*** Start of inlined file: juce_RectanglePlacement.cpp ***/ BEGIN_JUCE_NAMESPACE RectanglePlacement::RectanglePlacement (const RectanglePlacement& other) throw() @@ -83257,10 +83326,10 @@ const AffineTransform RectanglePlacement::getTransformToFit (float x, float y, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_RectanglePlacement.cpp *********/ +/*** End of inlined file: juce_RectanglePlacement.cpp ***/ -/********* Start of inlined file: juce_Drawable.cpp *********/ +/*** Start of inlined file: juce_Drawable.cpp ***/ BEGIN_JUCE_NAMESPACE Drawable::RenderingContext::RenderingContext (Graphics& g_, @@ -83377,10 +83446,10 @@ Drawable* Drawable::createFromValueTree (const ValueTree& tree) throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Drawable.cpp *********/ +/*** End of inlined file: juce_Drawable.cpp ***/ -/********* Start of inlined file: juce_DrawableComposite.cpp *********/ +/*** Start of inlined file: juce_DrawableComposite.cpp ***/ BEGIN_JUCE_NAMESPACE DrawableComposite::DrawableComposite() @@ -83595,10 +83664,10 @@ DrawableComposite* DrawableComposite::createFromValueTree (const ValueTree& tree } END_JUCE_NAMESPACE -/********* End of inlined file: juce_DrawableComposite.cpp *********/ +/*** End of inlined file: juce_DrawableComposite.cpp ***/ -/********* Start of inlined file: juce_DrawableImage.cpp *********/ +/*** Start of inlined file: juce_DrawableImage.cpp ***/ BEGIN_JUCE_NAMESPACE DrawableImage::DrawableImage() @@ -83764,10 +83833,10 @@ DrawableImage* DrawableImage::createFromValueTree (const ValueTree& tree) throw( } END_JUCE_NAMESPACE -/********* End of inlined file: juce_DrawableImage.cpp *********/ +/*** End of inlined file: juce_DrawableImage.cpp ***/ -/********* Start of inlined file: juce_DrawablePath.cpp *********/ +/*** Start of inlined file: juce_DrawablePath.cpp ***/ BEGIN_JUCE_NAMESPACE DrawablePath::DrawablePath() @@ -83981,10 +84050,10 @@ DrawablePath* DrawablePath::createFromValueTree (const ValueTree& tree) throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_DrawablePath.cpp *********/ +/*** End of inlined file: juce_DrawablePath.cpp ***/ -/********* Start of inlined file: juce_DrawableText.cpp *********/ +/*** Start of inlined file: juce_DrawableText.cpp ***/ BEGIN_JUCE_NAMESPACE DrawableText::DrawableText() @@ -84068,10 +84137,10 @@ DrawableText* DrawableText::createFromValueTree (const ValueTree& tree) throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_DrawableText.cpp *********/ +/*** End of inlined file: juce_DrawableText.cpp ***/ -/********* Start of inlined file: juce_SVGParser.cpp *********/ +/*** Start of inlined file: juce_SVGParser.cpp ***/ BEGIN_JUCE_NAMESPACE class SVGState @@ -85325,10 +85394,10 @@ Drawable* Drawable::createFromSVG (const XmlElement& svgDocument) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_SVGParser.cpp *********/ +/*** End of inlined file: juce_SVGParser.cpp ***/ -/********* Start of inlined file: juce_DropShadowEffect.cpp *********/ +/*** Start of inlined file: juce_DropShadowEffect.cpp ***/ BEGIN_JUCE_NAMESPACE #if JUCE_MSVC @@ -85408,10 +85477,10 @@ void DropShadowEffect::applyEffect (Image& image, Graphics& g) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_DropShadowEffect.cpp *********/ +/*** End of inlined file: juce_DropShadowEffect.cpp ***/ -/********* Start of inlined file: juce_GlowEffect.cpp *********/ +/*** Start of inlined file: juce_GlowEffect.cpp ***/ BEGIN_JUCE_NAMESPACE GlowEffect::GlowEffect() @@ -85453,10 +85522,10 @@ void GlowEffect::applyEffect (Image& image, Graphics& g) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_GlowEffect.cpp *********/ +/*** End of inlined file: juce_GlowEffect.cpp ***/ -/********* Start of inlined file: juce_ReduceOpacityEffect.cpp *********/ +/*** Start of inlined file: juce_ReduceOpacityEffect.cpp ***/ BEGIN_JUCE_NAMESPACE ReduceOpacityEffect::ReduceOpacityEffect (const float opacity_) @@ -85480,10 +85549,10 @@ void ReduceOpacityEffect::applyEffect (Image& image, Graphics& g) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ReduceOpacityEffect.cpp *********/ +/*** End of inlined file: juce_ReduceOpacityEffect.cpp ***/ -/********* Start of inlined file: juce_Font.cpp *********/ +/*** Start of inlined file: juce_Font.cpp ***/ BEGIN_JUCE_NAMESPACE static const float minFontHeight = 0.1f; @@ -85873,10 +85942,10 @@ Typeface* Font::getTypeface() const throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Font.cpp *********/ +/*** End of inlined file: juce_Font.cpp ***/ -/********* Start of inlined file: juce_GlyphArrangement.cpp *********/ +/*** Start of inlined file: juce_GlyphArrangement.cpp ***/ BEGIN_JUCE_NAMESPACE PositionedGlyph::PositionedGlyph() @@ -86664,10 +86733,10 @@ int GlyphArrangement::findGlyphIndexAt (float x, float y) const } END_JUCE_NAMESPACE -/********* End of inlined file: juce_GlyphArrangement.cpp *********/ +/*** End of inlined file: juce_GlyphArrangement.cpp ***/ -/********* Start of inlined file: juce_TextLayout.cpp *********/ +/*** Start of inlined file: juce_TextLayout.cpp ***/ BEGIN_JUCE_NAMESPACE class TextLayout::Token @@ -87012,10 +87081,10 @@ void TextLayout::drawWithin (Graphics& g, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_TextLayout.cpp *********/ +/*** End of inlined file: juce_TextLayout.cpp ***/ -/********* Start of inlined file: juce_Typeface.cpp *********/ +/*** Start of inlined file: juce_Typeface.cpp ***/ BEGIN_JUCE_NAMESPACE Typeface::Typeface (const String& name_) throw() @@ -87351,10 +87420,10 @@ bool CustomTypeface::getOutlineForGlyph (int glyphNumber, Path& path) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Typeface.cpp *********/ +/*** End of inlined file: juce_Typeface.cpp ***/ -/********* Start of inlined file: juce_AffineTransform.cpp *********/ +/*** Start of inlined file: juce_AffineTransform.cpp ***/ BEGIN_JUCE_NAMESPACE AffineTransform::AffineTransform() throw() @@ -87580,10 +87649,10 @@ void AffineTransform::transformPoint (double& x, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_AffineTransform.cpp *********/ +/*** End of inlined file: juce_AffineTransform.cpp ***/ -/********* Start of inlined file: juce_BorderSize.cpp *********/ +/*** Start of inlined file: juce_BorderSize.cpp ***/ BEGIN_JUCE_NAMESPACE BorderSize::BorderSize() throw() @@ -87691,10 +87760,10 @@ bool BorderSize::operator!= (const BorderSize& other) const throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_BorderSize.cpp *********/ +/*** End of inlined file: juce_BorderSize.cpp ***/ -/********* Start of inlined file: juce_Line.cpp *********/ +/*** Start of inlined file: juce_Line.cpp ***/ BEGIN_JUCE_NAMESPACE static bool juce_lineIntersection (const float x1, const float y1, @@ -88056,10 +88125,10 @@ bool Line::isPointAbove (const float x, const float y) const throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Line.cpp *********/ +/*** End of inlined file: juce_Line.cpp ***/ -/********* Start of inlined file: juce_Path.cpp *********/ +/*** Start of inlined file: juce_Path.cpp ***/ BEGIN_JUCE_NAMESPACE // tests that some co-ords aren't NaNs @@ -89587,10 +89656,10 @@ bool Path::Iterator::next() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Path.cpp *********/ +/*** End of inlined file: juce_Path.cpp ***/ -/********* Start of inlined file: juce_PathIterator.cpp *********/ +/*** Start of inlined file: juce_PathIterator.cpp ***/ BEGIN_JUCE_NAMESPACE #if JUCE_MSVC @@ -89851,10 +89920,10 @@ bool PathFlatteningIterator::next() throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_PathIterator.cpp *********/ +/*** End of inlined file: juce_PathIterator.cpp ***/ -/********* Start of inlined file: juce_PathStrokeType.cpp *********/ +/*** Start of inlined file: juce_PathStrokeType.cpp ***/ BEGIN_JUCE_NAMESPACE PathStrokeType::PathStrokeType (const float strokeThickness, @@ -90461,10 +90530,10 @@ void PathStrokeType::createDashedStroke (Path& destPath, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_PathStrokeType.cpp *********/ +/*** End of inlined file: juce_PathStrokeType.cpp ***/ -/********* Start of inlined file: juce_PositionedRectangle.cpp *********/ +/*** Start of inlined file: juce_PositionedRectangle.cpp ***/ BEGIN_JUCE_NAMESPACE PositionedRectangle::PositionedRectangle() throw() @@ -90819,10 +90888,10 @@ void PositionedRectangle::updatePosAndSize (double& xOut, double& wOut, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_PositionedRectangle.cpp *********/ +/*** End of inlined file: juce_PositionedRectangle.cpp ***/ -/********* Start of inlined file: juce_RectangleList.cpp *********/ +/*** Start of inlined file: juce_RectangleList.cpp ***/ BEGIN_JUCE_NAMESPACE RectangleList::RectangleList() throw() @@ -91314,10 +91383,10 @@ const Path RectangleList::toPath() const throw() } END_JUCE_NAMESPACE -/********* End of inlined file: juce_RectangleList.cpp *********/ +/*** End of inlined file: juce_RectangleList.cpp ***/ -/********* Start of inlined file: juce_Image.cpp *********/ +/*** Start of inlined file: juce_Image.cpp ***/ BEGIN_JUCE_NAMESPACE static const int fullAlphaThreshold = 253; @@ -91768,10 +91837,10 @@ void Image::moveImageSection (int dx, int dy, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_Image.cpp *********/ +/*** End of inlined file: juce_Image.cpp ***/ -/********* Start of inlined file: juce_ImageCache.cpp *********/ +/*** Start of inlined file: juce_ImageCache.cpp ***/ BEGIN_JUCE_NAMESPACE struct ImageCacheItem @@ -91969,10 +92038,10 @@ void ImageCache::setCacheTimeout (const int millisecs) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ImageCache.cpp *********/ +/*** End of inlined file: juce_ImageCache.cpp ***/ -/********* Start of inlined file: juce_ImageConvolutionKernel.cpp *********/ +/*** Start of inlined file: juce_ImageConvolutionKernel.cpp ***/ BEGIN_JUCE_NAMESPACE ImageConvolutionKernel::ImageConvolutionKernel (const int size_) @@ -92199,13 +92268,14 @@ void ImageConvolutionKernel::applyToImage (Image& destImage, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ImageConvolutionKernel.cpp *********/ +/*** End of inlined file: juce_ImageConvolutionKernel.cpp ***/ -/********* Start of inlined file: juce_ImageFileFormat.cpp *********/ +/*** Start of inlined file: juce_ImageFileFormat.cpp ***/ BEGIN_JUCE_NAMESPACE -/********* Start of inlined file: juce_GIFLoader.h *********/ + +/*** Start of inlined file: juce_GIFLoader.h ***/ #ifndef __JUCE_GIFLOADER_JUCEHEADER__ #define __JUCE_GIFLOADER_JUCEHEADER__ @@ -92251,7 +92321,7 @@ private: #endif // DOXYGEN #endif // __JUCE_GIFLOADER_JUCEHEADER__ -/********* End of inlined file: juce_GIFLoader.h *********/ +/*** End of inlined file: juce_GIFLoader.h ***/ Image* juce_loadPNGImageFromStream (InputStream& inputStream); bool juce_writePNGImageToStream (const Image& image, OutputStream& out); @@ -92429,10 +92499,10 @@ Image* ImageFileFormat::loadFrom (const void* rawData, const int numBytes) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_ImageFileFormat.cpp *********/ +/*** End of inlined file: juce_ImageFileFormat.cpp ***/ -/********* Start of inlined file: juce_GIFLoader.cpp *********/ +/*** Start of inlined file: juce_GIFLoader.cpp ***/ BEGIN_JUCE_NAMESPACE GIFLoader::GIFLoader (InputStream& in) @@ -92868,28 +92938,28 @@ bool GIFLoader::readImage (const int width, const int height, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_GIFLoader.cpp *********/ +/*** End of inlined file: juce_GIFLoader.cpp ***/ #endif //============================================================================== // some files include lots of library code, so leave them to the end to avoid cluttering // up the build for the clean files. +#if JUCE_BUILD_CORE -/********* Start of inlined file: juce_GZIPCompressorOutputStream.cpp *********/ - +/*** Start of inlined file: juce_GZIPCompressorOutputStream.cpp ***/ namespace zlibNamespace { #if JUCE_INCLUDE_ZLIB_CODE #undef OS_CODE #undef fdopen -/********* Start of inlined file: zlib.h *********/ +/*** Start of inlined file: zlib.h ***/ #ifndef ZLIB_H #define ZLIB_H -/********* Start of inlined file: zconf.h *********/ +/*** Start of inlined file: zconf.h ***/ #ifndef ZCONF_H #define ZCONF_H @@ -93174,7 +93244,7 @@ typedef uLong FAR uLongf; #endif #endif /* ZCONF_H */ -/********* End of inlined file: zconf.h *********/ +/*** End of inlined file: zconf.h ***/ #ifdef __cplusplus extern "C" { @@ -93442,7 +93512,8 @@ ZEXTERN const uLongf * ZEXPORT get_crc_table OF((void)); #endif #endif /* ZLIB_H */ -/********* End of inlined file: zlib.h *********/ +/*** End of inlined file: zlib.h ***/ + #undef OS_CODE #else @@ -93608,10 +93679,11 @@ bool GZIPCompressorOutputStream::setPosition (int64 /*newPosition*/) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_GZIPCompressorOutputStream.cpp *********/ +/*** End of inlined file: juce_GZIPCompressorOutputStream.cpp ***/ -/********* Start of inlined file: juce_GZIPDecompressorInputStream.cpp *********/ + +/*** Start of inlined file: juce_GZIPDecompressorInputStream.cpp ***/ #if JUCE_MSVC #pragma warning (push) #pragma warning (disable: 4309 4305) @@ -93627,8 +93699,8 @@ namespace zlibNamespace #define ZLIB_INTERNAL #define NO_DUMMY_DECL -/********* Start of inlined file: adler32.c *********/ +/*** Start of inlined file: adler32.c ***/ #define ZLIB_INTERNAL #define BASE 65521UL /* largest prime smaller than 65536 */ @@ -93752,10 +93824,10 @@ uLong ZEXPORT adler32_combine(uLong adler1, uLong adler2, z_off_t len2) if (sum2 > BASE) sum2 -= BASE; return sum1 | (sum2 << 16); } -/********* End of inlined file: adler32.c *********/ +/*** End of inlined file: adler32.c ***/ -/********* Start of inlined file: compress.c *********/ +/*** Start of inlined file: compress.c ***/ #define ZLIB_INTERNAL int ZEXPORT compress2 (Bytef *dest, uLongf *destLen, const Bytef *source, @@ -93800,13 +93872,12 @@ uLong ZEXPORT compressBound (uLong sourceLen) { return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) + 11; } -/********* End of inlined file: compress.c *********/ +/*** End of inlined file: compress.c ***/ #undef DO1 #undef DO8 -/********* Start of inlined file: crc32.c *********/ - +/*** Start of inlined file: crc32.c ***/ #ifdef MAKECRCH # include # ifndef DYNAMIC_CRC_TABLE @@ -93814,8 +93885,8 @@ uLong ZEXPORT compressBound (uLong sourceLen) # endif /* !DYNAMIC_CRC_TABLE */ #endif /* MAKECRCH */ -/********* Start of inlined file: zutil.h *********/ +/*** Start of inlined file: zutil.h ***/ #ifndef ZUTIL_H #define ZUTIL_H @@ -94042,7 +94113,9 @@ void zcfree OF((voidpf opaque, voidpf ptr)); #define TRY_FREE(s, p) {if (p) ZFREE(s, p);} #endif /* ZUTIL_H */ -/********* End of inlined file: zutil.h *********/ +/*** End of inlined file: zutil.h ***/ + + /* for STDC and FAR definitions */ #define local static @@ -94171,7 +94244,7 @@ local void write_table(out, table) #else /* !DYNAMIC_CRC_TABLE */ -/********* Start of inlined file: crc32.h *********/ +/*** Start of inlined file: crc32.h ***/ local const unsigned long FAR crc_table[TBLS][256] = { { @@ -94609,7 +94682,8 @@ local const unsigned long FAR crc_table[TBLS][256] = #endif } }; -/********* End of inlined file: crc32.h *********/ +/*** End of inlined file: crc32.h ***/ + #endif /* DYNAMIC_CRC_TABLE */ @@ -94796,12 +94870,13 @@ uLong ZEXPORT crc32_combine (uLong crc1, uLong crc2, z_off_t len2) crc1 ^= crc2; return crc1; } -/********* End of inlined file: crc32.c *********/ +/*** End of inlined file: crc32.c ***/ -/********* Start of inlined file: deflate.c *********/ -/********* Start of inlined file: deflate.h *********/ +/*** Start of inlined file: deflate.c ***/ + +/*** Start of inlined file: deflate.h ***/ #ifndef DEFLATE_H #define DEFLATE_H @@ -95006,7 +95081,7 @@ void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len, #endif #endif /* DEFLATE_H */ -/********* End of inlined file: deflate.h *********/ +/*** End of inlined file: deflate.h ***/ const char deflate_copyright[] = " deflate 1.2.3 Copyright 1995-2005 Jean-loup Gailly "; @@ -96251,12 +96326,12 @@ local block_state deflate_rle(s, flush) return flush == Z_FINISH ? finish_done : block_done; } #endif -/********* End of inlined file: deflate.c *********/ +/*** End of inlined file: deflate.c ***/ -/********* Start of inlined file: inffast.c *********/ -/********* Start of inlined file: inftrees.h *********/ +/*** Start of inlined file: inffast.c ***/ +/*** Start of inlined file: inftrees.h ***/ #ifndef _INFTREES_H_ #define _INFTREES_H_ @@ -96280,10 +96355,10 @@ extern int inflate_table OF((codetype type, unsigned short FAR *lens, unsigned FAR *bits, unsigned short FAR *work)); #endif -/********* End of inlined file: inftrees.h *********/ +/*** End of inlined file: inftrees.h ***/ -/********* Start of inlined file: inflate.h *********/ +/*** Start of inlined file: inflate.h ***/ #ifndef _INFLATE_H_ #define _INFLATE_H_ @@ -96359,12 +96434,12 @@ struct inflate_state { }; #endif -/********* End of inlined file: inflate.h *********/ +/*** End of inlined file: inflate.h ***/ -/********* Start of inlined file: inffast.h *********/ +/*** Start of inlined file: inffast.h ***/ void inflate_fast OF((z_streamp strm, unsigned start)); -/********* End of inlined file: inffast.h *********/ +/*** End of inlined file: inffast.h ***/ #ifndef ASMINF @@ -96606,7 +96681,7 @@ void inflate_fast (z_streamp strm, unsigned start) } #endif /* !ASMINF */ -/********* End of inlined file: inffast.c *********/ +/*** End of inlined file: inffast.c ***/ #undef PULLBYTE #undef LOAD @@ -96616,12 +96691,11 @@ void inflate_fast (z_streamp strm, unsigned start) #undef DROPBITS #undef BYTEBITS -/********* Start of inlined file: inflate.c *********/ - -/********* Start of inlined file: inffast.h *********/ +/*** Start of inlined file: inflate.c ***/ +/*** Start of inlined file: inffast.h ***/ void inflate_fast OF((z_streamp strm, unsigned start)); -/********* End of inlined file: inffast.h *********/ +/*** End of inlined file: inffast.h ***/ #ifdef MAKEFIXED # ifndef BUILDFIXED @@ -96749,8 +96823,7 @@ local void fixedtables (struct inflate_state FAR *state) } #else /* !BUILDFIXED */ -/********* Start of inlined file: inffixed.h *********/ - +/*** Start of inlined file: inffixed.h ***/ static const code lenfix[512] = { {96,7,0},{0,8,80},{0,8,16},{20,8,115},{18,7,31},{0,8,112},{0,8,48}, {0,9,192},{16,7,10},{0,8,96},{0,8,32},{0,9,160},{0,8,0},{0,8,128}, @@ -96836,7 +96909,8 @@ local void fixedtables (struct inflate_state FAR *state) {16,5,4},{24,5,769},{20,5,49},{28,5,12289},{18,5,13},{26,5,3073}, {22,5,193},{64,5,0} }; -/********* End of inlined file: inffixed.h *********/ +/*** End of inlined file: inffixed.h ***/ + #endif /* BUILDFIXED */ state->lencode = lenfix; @@ -97778,10 +97852,11 @@ int ZEXPORT inflateCopy(z_streamp dest, z_streamp source) dest->state = (struct internal_state FAR *)copy; return Z_OK; } -/********* End of inlined file: inflate.c *********/ +/*** End of inlined file: inflate.c ***/ -/********* Start of inlined file: inftrees.c *********/ + +/*** Start of inlined file: inftrees.c ***/ #define MAXBITS 15 const char inflate_copyright[] = @@ -97991,10 +98066,10 @@ int inflate_table (codetype type, *bits = root; return 0; } -/********* End of inlined file: inftrees.c *********/ +/*** End of inlined file: inftrees.c ***/ -/********* Start of inlined file: trees.c *********/ +/*** Start of inlined file: trees.c ***/ #ifdef DEBUG # include #endif @@ -98041,7 +98116,7 @@ local int base_dist[D_CODES]; #else -/********* Start of inlined file: trees.h *********/ +/*** Start of inlined file: trees.h ***/ local const ct_data static_ltree[L_CODES+2] = { {{ 12},{ 8}}, {{140},{ 8}}, {{ 76},{ 8}}, {{204},{ 8}}, {{ 44},{ 8}}, {{172},{ 8}}, {{108},{ 8}}, {{236},{ 8}}, {{ 28},{ 8}}, {{156},{ 8}}, @@ -98167,7 +98242,8 @@ local const int base_dist[D_CODES] = { 32, 48, 64, 96, 128, 192, 256, 384, 512, 768, 1024, 1536, 2048, 3072, 4096, 6144, 8192, 12288, 16384, 24576 }; -/********* End of inlined file: trees.h *********/ +/*** End of inlined file: trees.h ***/ + #endif /* GEN_TREES_H */ @@ -98997,10 +99073,10 @@ local void copy_block(deflate_state *s, put_byte(s, *buf++); } } -/********* End of inlined file: trees.c *********/ +/*** End of inlined file: trees.c ***/ -/********* Start of inlined file: zutil.c *********/ +/*** Start of inlined file: zutil.c ***/ #ifndef NO_DUMMY_DECL struct internal_state {int dummy;}; /* for buggy compilers */ #endif @@ -99184,7 +99260,7 @@ void zcfree (voidpf opaque, voidpf ptr) } #endif /* MY_ZCALLOC */ -/********* End of inlined file: zutil.c *********/ +/*** End of inlined file: zutil.c ***/ #undef Byte } @@ -99390,12 +99466,13 @@ bool GZIPDecompressorInputStream::setPosition (int64 newPos) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_GZIPDecompressorInputStream.cpp *********/ +/*** End of inlined file: juce_GZIPDecompressorInputStream.cpp ***/ -#if ! JUCE_ONLY_BUILD_CORE_LIBRARY +#endif -/********* Start of inlined file: juce_FlacAudioFormat.cpp *********/ +#if JUCE_BUILD_MISC +/*** Start of inlined file: juce_FlacAudioFormat.cpp ***/ #if JUCE_USE_FLAC #if JUCE_WINDOWS @@ -99418,11 +99495,12 @@ namespace FlacNamespace #define __STDC_LIMIT_MACROS 1 -/********* Start of inlined file: all.h *********/ +/*** Start of inlined file: all.h ***/ #ifndef FLAC__ALL_H #define FLAC__ALL_H -/********* Start of inlined file: export.h *********/ + +/*** Start of inlined file: export.h ***/ #ifndef FLAC__EXPORT_H #define FLAC__EXPORT_H @@ -99454,9 +99532,10 @@ extern FLAC_API int FLAC_API_SUPPORTS_OGG_FLAC; #endif #endif -/********* End of inlined file: export.h *********/ +/*** End of inlined file: export.h ***/ -/********* Start of inlined file: assert.h *********/ + +/*** Start of inlined file: assert.h ***/ #ifndef FLAC__ASSERT_H #define FLAC__ASSERT_H @@ -99471,13 +99550,15 @@ extern FLAC_API int FLAC_API_SUPPORTS_OGG_FLAC; #endif #endif -/********* End of inlined file: assert.h *********/ +/*** End of inlined file: assert.h ***/ -/********* Start of inlined file: callback.h *********/ + +/*** Start of inlined file: callback.h ***/ #ifndef FLAC__CALLBACK_H #define FLAC__CALLBACK_H -/********* Start of inlined file: ordinals.h *********/ + +/*** Start of inlined file: ordinals.h ***/ #ifndef FLAC__ORDINALS_H #define FLAC__ORDINALS_H @@ -99527,7 +99608,7 @@ typedef FLAC__uint8 FLAC__byte; #endif #endif -/********* End of inlined file: ordinals.h *********/ +/*** End of inlined file: ordinals.h ***/ #include /* for size_t */ @@ -99563,9 +99644,10 @@ typedef struct { #endif #endif -/********* End of inlined file: callback.h *********/ +/*** End of inlined file: callback.h ***/ -/********* Start of inlined file: format.h *********/ + +/*** Start of inlined file: format.h ***/ #ifndef FLAC__FORMAT_H #define FLAC__FORMAT_H @@ -100039,9 +100121,10 @@ FLAC_API FLAC__bool FLAC__format_picture_is_legal(const FLAC__StreamMetadata_Pic #endif #endif -/********* End of inlined file: format.h *********/ +/*** End of inlined file: format.h ***/ -/********* Start of inlined file: metadata.h *********/ + +/*** Start of inlined file: metadata.h ***/ #ifndef FLAC__METADATA_H #define FLAC__METADATA_H @@ -100316,9 +100399,10 @@ FLAC_API FLAC__bool FLAC__metadata_object_picture_is_legal(const FLAC__StreamMet #endif #endif -/********* End of inlined file: metadata.h *********/ +/*** End of inlined file: metadata.h ***/ -/********* Start of inlined file: stream_decoder.h *********/ + +/*** Start of inlined file: stream_decoder.h ***/ #ifndef FLAC__STREAM_DECODER_H #define FLAC__STREAM_DECODER_H @@ -100590,9 +100674,10 @@ FLAC_API FLAC__bool FLAC__stream_decoder_seek_absolute(FLAC__StreamDecoder *deco #endif #endif -/********* End of inlined file: stream_decoder.h *********/ +/*** End of inlined file: stream_decoder.h ***/ -/********* Start of inlined file: stream_encoder.h *********/ + +/*** Start of inlined file: stream_encoder.h ***/ #ifndef FLAC__STREAM_ENCODER_H #define FLAC__STREAM_ENCODER_H @@ -100838,7 +100923,7 @@ FLAC_API FLAC__bool FLAC__stream_encoder_process_interleaved(FLAC__StreamEncoder #endif #endif -/********* End of inlined file: stream_encoder.h *********/ +/*** End of inlined file: stream_encoder.h ***/ #ifdef _MSC_VER static _inline FLAC__uint32 local_swap32_(FLAC__uint32 x) @@ -100869,11 +100954,13 @@ done1: #endif #endif -/********* End of inlined file: all.h *********/ +/*** End of inlined file: all.h ***/ -/********* Start of inlined file: bitmath.c *********/ -/********* Start of inlined file: juce_FlacHeader.h *********/ + +/*** Start of inlined file: bitmath.c ***/ + +/*** Start of inlined file: juce_FlacHeader.h ***/ // This file is included at the start of each FLAC .c file, just to do a few housekeeping // tasks.. @@ -100888,7 +100975,7 @@ done1: #if JUCE_MAC #define FLAC__SYS_DARWIN 1 #endif -/********* End of inlined file: juce_FlacHeader.h *********/ +/*** End of inlined file: juce_FlacHeader.h ***/ #if JUCE_USE_FLAC @@ -100896,7 +100983,8 @@ done1: # include #endif -/********* Start of inlined file: bitmath.h *********/ + +/*** Start of inlined file: bitmath.h ***/ #ifndef FLAC__PRIVATE__BITMATH_H #define FLAC__PRIVATE__BITMATH_H @@ -100906,7 +100994,7 @@ unsigned FLAC__bitmath_silog2(int v); unsigned FLAC__bitmath_silog2_wide(FLAC__int64 v); #endif -/********* End of inlined file: bitmath.h *********/ +/*** End of inlined file: bitmath.h ***/ unsigned FLAC__bitmath_ilog2(FLAC__uint32 v) { @@ -100975,11 +101063,12 @@ unsigned FLAC__bitmath_silog2_wide(FLAC__int64 v) } #endif -/********* End of inlined file: bitmath.c *********/ +/*** End of inlined file: bitmath.c ***/ -/********* Start of inlined file: bitreader.c *********/ -/********* Start of inlined file: juce_FlacHeader.h *********/ +/*** Start of inlined file: bitreader.c ***/ + +/*** Start of inlined file: juce_FlacHeader.h ***/ // This file is included at the start of each FLAC .c file, just to do a few housekeeping // tasks.. @@ -100994,7 +101083,7 @@ unsigned FLAC__bitmath_silog2_wide(FLAC__int64 v) #if JUCE_MAC #define FLAC__SYS_DARWIN 1 #endif -/********* End of inlined file: juce_FlacHeader.h *********/ +/*** End of inlined file: juce_FlacHeader.h ***/ #if JUCE_USE_FLAC @@ -101014,13 +101103,15 @@ unsigned FLAC__bitmath_silog2_wide(FLAC__int64 v) #include /* for ntohl() */ #endif -/********* Start of inlined file: bitreader.h *********/ + +/*** Start of inlined file: bitreader.h ***/ #ifndef FLAC__PRIVATE__BITREADER_H #define FLAC__PRIVATE__BITREADER_H #include /* for FILE */ -/********* Start of inlined file: cpu.h *********/ + +/*** Start of inlined file: cpu.h ***/ #ifndef FLAC__PRIVATE__CPU_H #define FLAC__PRIVATE__CPU_H @@ -101076,7 +101167,7 @@ FLAC__uint32 FLAC__cpu_info_extended_amd_asm_ia32(void); #endif #endif -/********* End of inlined file: cpu.h *********/ +/*** End of inlined file: cpu.h ***/ struct FLAC__BitReader; typedef struct FLAC__BitReader FLAC__BitReader; @@ -101123,9 +101214,10 @@ FLAC__bool FLAC__bitreader_read_utf8_uint64(FLAC__BitReader *br, FLAC__uint64 *v FLAC__bool bitreader_read_from_client_(FLAC__BitReader *br); #endif -/********* End of inlined file: bitreader.h *********/ +/*** End of inlined file: bitreader.h ***/ -/********* Start of inlined file: crc.h *********/ + +/*** Start of inlined file: crc.h ***/ #ifndef FLAC__PRIVATE__CRC_H #define FLAC__PRIVATE__CRC_H @@ -101145,7 +101237,7 @@ extern unsigned FLAC__crc16_table[256]; unsigned FLAC__crc16(const FLAC__byte *data, unsigned len); #endif -/********* End of inlined file: crc.h *********/ +/*** End of inlined file: crc.h ***/ typedef FLAC__uint32 brword; #define FLAC__BYTES_PER_WORD 4 @@ -102249,11 +102341,12 @@ FLAC__bool FLAC__bitreader_read_utf8_uint64(FLAC__BitReader *br, FLAC__uint64 *v } #endif -/********* End of inlined file: bitreader.c *********/ +/*** End of inlined file: bitreader.c ***/ -/********* Start of inlined file: bitwriter.c *********/ -/********* Start of inlined file: juce_FlacHeader.h *********/ +/*** Start of inlined file: bitwriter.c ***/ + +/*** Start of inlined file: juce_FlacHeader.h ***/ // This file is included at the start of each FLAC .c file, just to do a few housekeeping // tasks.. @@ -102268,7 +102361,7 @@ FLAC__bool FLAC__bitreader_read_utf8_uint64(FLAC__BitReader *br, FLAC__uint64 *v #if JUCE_MAC #define FLAC__SYS_DARWIN 1 #endif -/********* End of inlined file: juce_FlacHeader.h *********/ +/*** End of inlined file: juce_FlacHeader.h ***/ #if JUCE_USE_FLAC @@ -102291,7 +102384,7 @@ FLAC__bool FLAC__bitreader_read_utf8_uint64(FLAC__BitReader *br, FLAC__uint64 *v #endif -/********* Start of inlined file: bitwriter.h *********/ +/*** Start of inlined file: bitwriter.h ***/ #ifndef FLAC__PRIVATE__BITWRITER_H #define FLAC__PRIVATE__BITWRITER_H @@ -102339,9 +102432,11 @@ FLAC__bool FLAC__bitwriter_write_utf8_uint64(FLAC__BitWriter *bw, FLAC__uint64 v FLAC__bool FLAC__bitwriter_zero_pad_to_byte_boundary(FLAC__BitWriter *bw); #endif -/********* End of inlined file: bitwriter.h *********/ +/*** End of inlined file: bitwriter.h ***/ -/********* Start of inlined file: alloc.h *********/ + + +/*** Start of inlined file: alloc.h ***/ #ifndef FLAC__SHARE__ALLOC_H #define FLAC__SHARE__ALLOC_H @@ -102521,7 +102616,7 @@ static FLaC__INLINE void *safe_realloc_muladd2_(void *ptr, size_t size1, size_t } #endif -/********* End of inlined file: alloc.h *********/ +/*** End of inlined file: alloc.h ***/ typedef FLAC__uint32 bwword; #define FLAC__BYTES_PER_WORD 4 @@ -103271,11 +103366,12 @@ FLAC__bool FLAC__bitwriter_zero_pad_to_byte_boundary(FLAC__BitWriter *bw) } #endif -/********* End of inlined file: bitwriter.c *********/ +/*** End of inlined file: bitwriter.c ***/ -/********* Start of inlined file: cpu.c *********/ -/********* Start of inlined file: juce_FlacHeader.h *********/ +/*** Start of inlined file: cpu.c ***/ + +/*** Start of inlined file: juce_FlacHeader.h ***/ // This file is included at the start of each FLAC .c file, just to do a few housekeeping // tasks.. @@ -103290,7 +103386,7 @@ FLAC__bool FLAC__bitwriter_zero_pad_to_byte_boundary(FLAC__BitWriter *bw) #if JUCE_MAC #define FLAC__SYS_DARWIN 1 #endif -/********* End of inlined file: juce_FlacHeader.h *********/ +/*** End of inlined file: juce_FlacHeader.h ***/ #if JUCE_USE_FLAC @@ -103631,11 +103727,12 @@ void FLAC__cpu_info(FLAC__CPUInfo *info) } #endif -/********* End of inlined file: cpu.c *********/ +/*** End of inlined file: cpu.c ***/ -/********* Start of inlined file: crc.c *********/ -/********* Start of inlined file: juce_FlacHeader.h *********/ +/*** Start of inlined file: crc.c ***/ + +/*** Start of inlined file: juce_FlacHeader.h ***/ // This file is included at the start of each FLAC .c file, just to do a few housekeeping // tasks.. @@ -103650,7 +103747,7 @@ void FLAC__cpu_info(FLAC__CPUInfo *info) #if JUCE_MAC #define FLAC__SYS_DARWIN 1 #endif -/********* End of inlined file: juce_FlacHeader.h *********/ +/*** End of inlined file: juce_FlacHeader.h ***/ #if JUCE_USE_FLAC @@ -103760,11 +103857,12 @@ unsigned FLAC__crc16(const FLAC__byte *data, unsigned len) } #endif -/********* End of inlined file: crc.c *********/ +/*** End of inlined file: crc.c ***/ -/********* Start of inlined file: fixed.c *********/ -/********* Start of inlined file: juce_FlacHeader.h *********/ +/*** Start of inlined file: fixed.c ***/ + +/*** Start of inlined file: juce_FlacHeader.h ***/ // This file is included at the start of each FLAC .c file, just to do a few housekeeping // tasks.. @@ -103779,7 +103877,7 @@ unsigned FLAC__crc16(const FLAC__byte *data, unsigned len) #if JUCE_MAC #define FLAC__SYS_DARWIN 1 #endif -/********* End of inlined file: juce_FlacHeader.h *********/ +/*** End of inlined file: juce_FlacHeader.h ***/ #if JUCE_USE_FLAC @@ -103790,7 +103888,8 @@ unsigned FLAC__crc16(const FLAC__byte *data, unsigned len) #include #include -/********* Start of inlined file: fixed.h *********/ + +/*** Start of inlined file: fixed.h ***/ #ifndef FLAC__PRIVATE__FIXED_H #define FLAC__PRIVATE__FIXED_H @@ -103798,7 +103897,8 @@ unsigned FLAC__crc16(const FLAC__byte *data, unsigned len) #include #endif -/********* Start of inlined file: float.h *********/ + +/*** Start of inlined file: float.h ***/ #ifndef FLAC__PRIVATE__FLOAT_H #define FLAC__PRIVATE__FLOAT_H @@ -103829,9 +103929,10 @@ FLAC__uint32 FLAC__fixedpoint_log2(FLAC__uint32 x, unsigned fracbits, unsigned p #endif #endif -/********* End of inlined file: float.h *********/ +/*** End of inlined file: float.h ***/ -/********* Start of inlined file: format.h *********/ + +/*** Start of inlined file: format.h ***/ #ifndef FLAC__PRIVATE__FORMAT_H #define FLAC__PRIVATE__FORMAT_H @@ -103843,7 +103944,7 @@ void FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(FLAC__En FLAC__bool FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(FLAC__EntropyCodingMethod_PartitionedRiceContents *object, unsigned max_partition_order); #endif -/********* End of inlined file: format.h *********/ +/*** End of inlined file: format.h ***/ #ifndef FLAC__INTEGER_ONLY_LIBRARY unsigned FLAC__fixed_compute_best_predictor(const FLAC__int32 data[], unsigned data_len, FLAC__float residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1]); @@ -103865,7 +103966,7 @@ void FLAC__fixed_compute_residual(const FLAC__int32 data[], unsigned data_len, u void FLAC__fixed_restore_signal(const FLAC__int32 residual[], unsigned data_len, unsigned order, FLAC__int32 data[]); #endif -/********* End of inlined file: fixed.h *********/ +/*** End of inlined file: fixed.h ***/ #ifndef M_LN2 #define M_LN2 0.69314718055994530942 @@ -104197,11 +104298,12 @@ void FLAC__fixed_restore_signal(const FLAC__int32 residual[], unsigned data_len, } #endif -/********* End of inlined file: fixed.c *********/ +/*** End of inlined file: fixed.c ***/ -/********* Start of inlined file: float.c *********/ -/********* Start of inlined file: juce_FlacHeader.h *********/ +/*** Start of inlined file: float.c ***/ + +/*** Start of inlined file: juce_FlacHeader.h ***/ // This file is included at the start of each FLAC .c file, just to do a few housekeeping // tasks.. @@ -104216,7 +104318,7 @@ void FLAC__fixed_restore_signal(const FLAC__int32 residual[], unsigned data_len, #if JUCE_MAC #define FLAC__SYS_DARWIN 1 #endif -/********* End of inlined file: juce_FlacHeader.h *********/ +/*** End of inlined file: juce_FlacHeader.h ***/ #if JUCE_USE_FLAC @@ -104462,11 +104564,12 @@ FLAC__uint32 FLAC__fixedpoint_log2(FLAC__uint32 x, unsigned fracbits, unsigned p #endif /* defined FLAC__INTEGER_ONLY_LIBRARY */ #endif -/********* End of inlined file: float.c *********/ +/*** End of inlined file: float.c ***/ -/********* Start of inlined file: format.c *********/ -/********* Start of inlined file: juce_FlacHeader.h *********/ +/*** Start of inlined file: format.c ***/ + +/*** Start of inlined file: juce_FlacHeader.h ***/ // This file is included at the start of each FLAC .c file, just to do a few housekeeping // tasks.. @@ -104481,7 +104584,7 @@ FLAC__uint32 FLAC__fixedpoint_log2(FLAC__uint32 x, unsigned fracbits, unsigned p #if JUCE_MAC #define FLAC__SYS_DARWIN 1 #endif -/********* End of inlined file: juce_FlacHeader.h *********/ +/*** End of inlined file: juce_FlacHeader.h ***/ #if JUCE_USE_FLAC @@ -105027,11 +105130,12 @@ FLAC__bool FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_s } #endif -/********* End of inlined file: format.c *********/ +/*** End of inlined file: format.c ***/ -/********* Start of inlined file: lpc_flac.c *********/ -/********* Start of inlined file: juce_FlacHeader.h *********/ +/*** Start of inlined file: lpc_flac.c ***/ + +/*** Start of inlined file: juce_FlacHeader.h ***/ // This file is included at the start of each FLAC .c file, just to do a few housekeeping // tasks.. @@ -105046,7 +105150,7 @@ FLAC__bool FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_s #if JUCE_MAC #define FLAC__SYS_DARWIN 1 #endif -/********* End of inlined file: juce_FlacHeader.h *********/ +/*** End of inlined file: juce_FlacHeader.h ***/ #if JUCE_USE_FLAC @@ -105056,7 +105160,8 @@ FLAC__bool FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_s #include -/********* Start of inlined file: lpc.h *********/ + +/*** Start of inlined file: lpc.h ***/ #ifndef FLAC__PRIVATE__LPC_H #define FLAC__PRIVATE__LPC_H @@ -105122,7 +105227,7 @@ unsigned FLAC__lpc_compute_best_order(const FLAC__double lpc_error[], unsigned m #endif /* !defined FLAC__INTEGER_ONLY_LIBRARY */ #endif -/********* End of inlined file: lpc.h *********/ +/*** End of inlined file: lpc.h ***/ #if defined DEBUG || defined FLAC__OVERFLOW_DETECT || defined FLAC__OVERFLOW_DETECT_VERBOSE #include @@ -106401,11 +106506,12 @@ unsigned FLAC__lpc_compute_best_order(const FLAC__double lpc_error[], unsigned m #endif /* !defined FLAC__INTEGER_ONLY_LIBRARY */ #endif -/********* End of inlined file: lpc_flac.c *********/ +/*** End of inlined file: lpc_flac.c ***/ -/********* Start of inlined file: md5.c *********/ -/********* Start of inlined file: juce_FlacHeader.h *********/ +/*** Start of inlined file: md5.c ***/ + +/*** Start of inlined file: juce_FlacHeader.h ***/ // This file is included at the start of each FLAC .c file, just to do a few housekeeping // tasks.. @@ -106420,7 +106526,7 @@ unsigned FLAC__lpc_compute_best_order(const FLAC__double lpc_error[], unsigned m #if JUCE_MAC #define FLAC__SYS_DARWIN 1 #endif -/********* End of inlined file: juce_FlacHeader.h *********/ +/*** End of inlined file: juce_FlacHeader.h ***/ #if JUCE_USE_FLAC @@ -106431,7 +106537,8 @@ unsigned FLAC__lpc_compute_best_order(const FLAC__double lpc_error[], unsigned m #include /* for malloc() */ #include /* for memcpy() */ -/********* Start of inlined file: md5.h *********/ + +/*** Start of inlined file: md5.h ***/ #ifndef FLAC__PRIVATE__MD5_H #define FLAC__PRIVATE__MD5_H @@ -106449,7 +106556,7 @@ void FLAC__MD5Final(FLAC__byte digest[16], FLAC__MD5Context *context); FLAC__bool FLAC__MD5Accumulate(FLAC__MD5Context *ctx, const FLAC__int32 * const signal[], unsigned channels, unsigned samples, unsigned bytes_per_sample); #endif -/********* End of inlined file: md5.h *********/ +/*** End of inlined file: md5.h ***/ #ifndef FLaC__INLINE #define FLaC__INLINE @@ -106806,11 +106913,12 @@ FLAC__bool FLAC__MD5Accumulate(FLAC__MD5Context *ctx, const FLAC__int32 * const } #endif -/********* End of inlined file: md5.c *********/ +/*** End of inlined file: md5.c ***/ -/********* Start of inlined file: memory.c *********/ -/********* Start of inlined file: juce_FlacHeader.h *********/ +/*** Start of inlined file: memory.c ***/ + +/*** Start of inlined file: juce_FlacHeader.h ***/ // This file is included at the start of each FLAC .c file, just to do a few housekeeping // tasks.. @@ -106825,7 +106933,7 @@ FLAC__bool FLAC__MD5Accumulate(FLAC__MD5Context *ctx, const FLAC__int32 * const #if JUCE_MAC #define FLAC__SYS_DARWIN 1 #endif -/********* End of inlined file: juce_FlacHeader.h *********/ +/*** End of inlined file: juce_FlacHeader.h ***/ #if JUCE_USE_FLAC @@ -106833,7 +106941,8 @@ FLAC__bool FLAC__MD5Accumulate(FLAC__MD5Context *ctx, const FLAC__int32 * const # include #endif -/********* Start of inlined file: memory.h *********/ + +/*** Start of inlined file: memory.h ***/ #ifndef FLAC__PRIVATE__MEMORY_H #define FLAC__PRIVATE__MEMORY_H @@ -106853,7 +106962,7 @@ FLAC__bool FLAC__memory_alloc_aligned_real_array(unsigned elements, FLAC__real * #endif #endif -/********* End of inlined file: memory.h *********/ +/*** End of inlined file: memory.h ***/ void *FLAC__memory_alloc_aligned(size_t bytes, void **aligned_address) { @@ -107021,11 +107130,12 @@ FLAC__bool FLAC__memory_alloc_aligned_real_array(unsigned elements, FLAC__real * #endif #endif -/********* End of inlined file: memory.c *********/ +/*** End of inlined file: memory.c ***/ -/********* Start of inlined file: stream_decoder.c *********/ -/********* Start of inlined file: juce_FlacHeader.h *********/ +/*** Start of inlined file: stream_decoder.c ***/ + +/*** Start of inlined file: juce_FlacHeader.h ***/ // This file is included at the start of each FLAC .c file, just to do a few housekeeping // tasks.. @@ -107040,7 +107150,7 @@ FLAC__bool FLAC__memory_alloc_aligned_real_array(unsigned elements, FLAC__real * #if JUCE_MAC #define FLAC__SYS_DARWIN 1 #endif -/********* End of inlined file: juce_FlacHeader.h *********/ +/*** End of inlined file: juce_FlacHeader.h ***/ #if JUCE_USE_FLAC @@ -107068,7 +107178,8 @@ FLAC__bool FLAC__memory_alloc_aligned_real_array(unsigned elements, FLAC__real * #endif #endif -/********* Start of inlined file: stream_decoder.h *********/ + +/*** Start of inlined file: stream_decoder.h ***/ #ifndef FLAC__PROTECTED__STREAM_DECODER_H #define FLAC__PROTECTED__STREAM_DECODER_H @@ -107092,7 +107203,7 @@ typedef struct FLAC__StreamDecoderProtected { unsigned FLAC__stream_decoder_get_input_bytes_unconsumed(const FLAC__StreamDecoder *decoder); #endif -/********* End of inlined file: stream_decoder.h *********/ +/*** End of inlined file: stream_decoder.h ***/ #ifdef max #undef max @@ -110060,11 +110171,12 @@ FLAC__bool file_eof_callback_(const FLAC__StreamDecoder *decoder, void *client_d } #endif -/********* End of inlined file: stream_decoder.c *********/ +/*** End of inlined file: stream_decoder.c ***/ -/********* Start of inlined file: stream_encoder.c *********/ -/********* Start of inlined file: juce_FlacHeader.h *********/ +/*** Start of inlined file: stream_encoder.c ***/ + +/*** Start of inlined file: juce_FlacHeader.h ***/ // This file is included at the start of each FLAC .c file, just to do a few housekeeping // tasks.. @@ -110079,7 +110191,7 @@ FLAC__bool file_eof_callback_(const FLAC__StreamDecoder *decoder, void *client_d #if JUCE_MAC #define FLAC__SYS_DARWIN 1 #endif -/********* End of inlined file: juce_FlacHeader.h *********/ +/*** End of inlined file: juce_FlacHeader.h ***/ #if JUCE_USE_FLAC @@ -110107,7 +110219,8 @@ FLAC__bool file_eof_callback_(const FLAC__StreamDecoder *decoder, void *client_d #endif #endif -/********* Start of inlined file: stream_encoder.h *********/ + +/*** Start of inlined file: stream_encoder.h ***/ #ifndef FLAC__PROTECTED__STREAM_ENCODER_H #define FLAC__PROTECTED__STREAM_ENCODER_H @@ -110184,14 +110297,14 @@ typedef struct FLAC__StreamEncoderProtected { } FLAC__StreamEncoderProtected; #endif -/********* End of inlined file: stream_encoder.h *********/ +/*** End of inlined file: stream_encoder.h ***/ #if FLAC__HAS_OGG #include "include/private/ogg_helper.h" #include "include/private/ogg_mapping.h" #endif -/********* Start of inlined file: stream_encoder_framing.h *********/ +/*** Start of inlined file: stream_encoder_framing.h ***/ #ifndef FLAC__PRIVATE__STREAM_ENCODER_FRAMING_H #define FLAC__PRIVATE__STREAM_ENCODER_FRAMING_H @@ -110203,9 +110316,11 @@ FLAC__bool FLAC__subframe_add_lpc(const FLAC__Subframe_LPC *subframe, unsigned r FLAC__bool FLAC__subframe_add_verbatim(const FLAC__Subframe_Verbatim *subframe, unsigned samples, unsigned subframe_bps, unsigned wasted_bits, FLAC__BitWriter *bw); #endif -/********* End of inlined file: stream_encoder_framing.h *********/ +/*** End of inlined file: stream_encoder_framing.h ***/ -/********* Start of inlined file: window.h *********/ + + +/*** Start of inlined file: window.h ***/ #ifndef FLAC__PRIVATE__WINDOW_H #define FLAC__PRIVATE__WINDOW_H @@ -110234,7 +110349,7 @@ void FLAC__window_welch(FLAC__real *window, const FLAC__int32 L); #endif /* !defined FLAC__INTEGER_ONLY_LIBRARY */ #endif -/********* End of inlined file: window.h *********/ +/*** End of inlined file: window.h ***/ #ifndef FLaC__INLINE #define FLaC__INLINE @@ -114171,11 +114286,12 @@ FILE *get_binary_stdout_(void) } #endif -/********* End of inlined file: stream_encoder.c *********/ +/*** End of inlined file: stream_encoder.c ***/ -/********* Start of inlined file: stream_encoder_framing.c *********/ -/********* Start of inlined file: juce_FlacHeader.h *********/ +/*** Start of inlined file: stream_encoder_framing.c ***/ + +/*** Start of inlined file: juce_FlacHeader.h ***/ // This file is included at the start of each FLAC .c file, just to do a few housekeeping // tasks.. @@ -114190,7 +114306,7 @@ FILE *get_binary_stdout_(void) #if JUCE_MAC #define FLAC__SYS_DARWIN 1 #endif -/********* End of inlined file: juce_FlacHeader.h *********/ +/*** End of inlined file: juce_FlacHeader.h ***/ #if JUCE_USE_FLAC @@ -114710,11 +114826,12 @@ FLAC__bool add_residual_partitioned_rice_(FLAC__BitWriter *bw, const FLAC__int32 } #endif -/********* End of inlined file: stream_encoder_framing.c *********/ +/*** End of inlined file: stream_encoder_framing.c ***/ -/********* Start of inlined file: window_flac.c *********/ -/********* Start of inlined file: juce_FlacHeader.h *********/ +/*** Start of inlined file: window_flac.c ***/ + +/*** Start of inlined file: juce_FlacHeader.h ***/ // This file is included at the start of each FLAC .c file, just to do a few housekeeping // tasks.. @@ -114729,7 +114846,7 @@ FLAC__bool add_residual_partitioned_rice_(FLAC__BitWriter *bw, const FLAC__int32 #if JUCE_MAC #define FLAC__SYS_DARWIN 1 #endif -/********* End of inlined file: juce_FlacHeader.h *********/ +/*** End of inlined file: juce_FlacHeader.h ***/ #if JUCE_USE_FLAC @@ -114921,7 +115038,7 @@ void FLAC__window_welch(FLAC__real *window, const FLAC__int32 L) #endif /* !defined FLAC__INTEGER_ONLY_LIBRARY */ #endif -/********* End of inlined file: window_flac.c *********/ +/*** End of inlined file: window_flac.c ***/ #else #include @@ -115395,10 +115512,11 @@ AudioFormatWriter* FlacAudioFormat::createWriterFor (OutputStream* out, END_JUCE_NAMESPACE #endif -/********* End of inlined file: juce_FlacAudioFormat.cpp *********/ +/*** End of inlined file: juce_FlacAudioFormat.cpp ***/ -/********* Start of inlined file: juce_OggVorbisAudioFormat.cpp *********/ + +/*** Start of inlined file: juce_OggVorbisAudioFormat.cpp ***/ #if JUCE_USE_OGGVORBIS #if JUCE_MAC @@ -115409,7 +115527,7 @@ namespace OggVorbisNamespace { #if JUCE_INCLUDE_OGGVORBIS_CODE -/********* Start of inlined file: vorbisenc.h *********/ +/*** Start of inlined file: vorbisenc.h ***/ #ifndef _OV_ENC_H_ #define _OV_ENC_H_ @@ -115418,7 +115536,8 @@ extern "C" { #endif /* __cplusplus */ -/********* Start of inlined file: codec.h *********/ + +/*** Start of inlined file: codec.h ***/ #ifndef _vorbis_codec_h_ #define _vorbis_codec_h_ @@ -115427,7 +115546,8 @@ extern "C" { #endif /* __cplusplus */ -/********* Start of inlined file: ogg.h *********/ + +/*** Start of inlined file: ogg.h ***/ #ifndef _OGG_H #define _OGG_H @@ -115435,7 +115555,8 @@ extern "C" extern "C" { #endif -/********* Start of inlined file: os_types.h *********/ + +/*** Start of inlined file: os_types.h ***/ #ifndef _OS_TYPES_H #define _OS_TYPES_H @@ -115535,7 +115656,7 @@ extern "C" { # include -/********* Start of inlined file: config_types.h *********/ +/*** Start of inlined file: config_types.h ***/ #ifndef __CONFIG_TYPES_H__ #define __CONFIG_TYPES_H__ @@ -115546,12 +115667,13 @@ typedef unsigned int ogg_uint32_t; typedef int64_t ogg_int64_t; #endif -/********* End of inlined file: config_types.h *********/ +/*** End of inlined file: config_types.h ***/ + #endif #endif /* _OS_TYPES_H */ -/********* End of inlined file: os_types.h *********/ +/*** End of inlined file: os_types.h ***/ typedef struct { long endbyte; @@ -115714,7 +115836,7 @@ extern void ogg_packet_clear(ogg_packet *op); #endif #endif /* _OGG_H */ -/********* End of inlined file: ogg.h *********/ +/*** End of inlined file: ogg.h ***/ typedef struct vorbis_info{ int version; @@ -115871,7 +115993,7 @@ extern int vorbis_synthesis_halfrate_p(vorbis_info *v); #endif /* __cplusplus */ #endif -/********* End of inlined file: codec.h *********/ +/*** End of inlined file: codec.h ***/ extern int vorbis_encode_init(vorbis_info *vi, long channels, @@ -115951,9 +116073,11 @@ struct ovectl_ratemanage2_arg { #endif /* __cplusplus */ #endif -/********* End of inlined file: vorbisenc.h *********/ +/*** End of inlined file: vorbisenc.h ***/ -/********* Start of inlined file: vorbisfile.h *********/ + + +/*** Start of inlined file: vorbisfile.h ***/ #ifndef _OV_FILE_H_ #define _OV_FILE_H_ @@ -116064,18 +116188,19 @@ extern int ov_halfrate_p(OggVorbis_File *vf); #endif /* __cplusplus */ #endif -/********* End of inlined file: vorbisfile.h *********/ +/*** End of inlined file: vorbisfile.h ***/ -/********* Start of inlined file: bitwise.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: bitwise.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -116820,18 +116945,19 @@ int main(void){ #undef BUFFER_INCREMENT #endif -/********* End of inlined file: bitwise.c *********/ +/*** End of inlined file: bitwise.c ***/ -/********* Start of inlined file: framing.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: framing.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -118369,18 +118495,19 @@ int main(void){ #endif #endif -/********* End of inlined file: framing.c *********/ +/*** End of inlined file: framing.c ***/ -/********* Start of inlined file: analysis.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: analysis.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -118388,15 +118515,18 @@ int main(void){ #include #include -/********* Start of inlined file: codec_internal.h *********/ + +/*** Start of inlined file: codec_internal.h ***/ #ifndef _V_CODECI_H_ #define _V_CODECI_H_ -/********* Start of inlined file: envelope.h *********/ + +/*** Start of inlined file: envelope.h ***/ #ifndef _V_ENVELOPE_ #define _V_ENVELOPE_ -/********* Start of inlined file: mdct.h *********/ + +/*** Start of inlined file: mdct.h ***/ #ifndef _OGG_mdct_H_ #define _OGG_mdct_H_ @@ -118443,7 +118573,7 @@ extern void mdct_forward(mdct_lookup *init, DATA_TYPE *in, DATA_TYPE *out); extern void mdct_backward(mdct_lookup *init, DATA_TYPE *in, DATA_TYPE *out); #endif -/********* End of inlined file: mdct.h *********/ +/*** End of inlined file: mdct.h ***/ #define VE_PRE 16 #define VE_WIN 4 @@ -118502,9 +118632,10 @@ extern void _ve_envelope_shift(envelope_lookup *e,long shift); extern int _ve_envelope_mark(vorbis_dsp_state *v); #endif -/********* End of inlined file: envelope.h *********/ +/*** End of inlined file: envelope.h ***/ -/********* Start of inlined file: codebook.h *********/ + +/*** Start of inlined file: codebook.h ***/ #ifndef _V_CODEBOOK_H_ #define _V_CODEBOOK_H_ @@ -118619,7 +118750,7 @@ extern long vorbis_book_decodevv_add(codebook *book, float **a, oggpack_buffer *b,int n); #endif -/********* End of inlined file: codebook.h *********/ +/*** End of inlined file: codebook.h ***/ #define BLOCKTYPE_IMPULSE 0 #define BLOCKTYPE_PADDING 1 @@ -118654,11 +118785,12 @@ typedef void vorbis_info_floor; typedef void vorbis_info_residue; typedef void vorbis_info_mapping; -/********* Start of inlined file: psy.h *********/ + +/*** Start of inlined file: psy.h ***/ #ifndef _V_PSY_H_ #define _V_PSY_H_ -/********* Start of inlined file: smallft.h *********/ +/*** Start of inlined file: smallft.h ***/ #ifndef _V_SMFT_H_ #define _V_SMFT_H_ @@ -118674,10 +118806,11 @@ extern void drft_init(drft_lookup *l,int n); extern void drft_clear(drft_lookup *l); #endif -/********* End of inlined file: smallft.h *********/ +/*** End of inlined file: smallft.h ***/ -/********* Start of inlined file: backends.h *********/ + +/*** Start of inlined file: backends.h ***/ #ifndef _vorbis_backend_h_ #define _vorbis_backend_h_ @@ -118788,7 +118921,7 @@ typedef struct vorbis_info_mapping0{ } vorbis_info_mapping0; #endif -/********* End of inlined file: backends.h *********/ +/*** End of inlined file: backends.h ***/ #ifndef EHMER_MAX #define EHMER_MAX 56 @@ -118946,13 +119079,15 @@ extern void hf_reduction(vorbis_info_psy_global *g, float **mdct); #endif -/********* End of inlined file: psy.h *********/ +/*** End of inlined file: psy.h ***/ -/********* Start of inlined file: bitrate.h *********/ + +/*** Start of inlined file: bitrate.h ***/ #ifndef _V_BITRATE_H_ #define _V_BITRATE_H_ -/********* Start of inlined file: os.h *********/ + +/*** Start of inlined file: os.h ***/ #ifndef _OS_H #define _OS_H @@ -118962,7 +119097,8 @@ extern void hf_reduction(vorbis_info_psy_global *g, #include -/********* Start of inlined file: misc.h *********/ + +/*** Start of inlined file: misc.h ***/ #ifndef _V_RANDOM_H_ #define _V_RANDOM_H_ @@ -118993,7 +119129,7 @@ extern void _VDBG_free(void *ptr,char *file,long line); #endif #endif -/********* End of inlined file: misc.h *********/ +/*** End of inlined file: misc.h ***/ #ifndef _V_IFDEFJAIL_H_ # define _V_IFDEFJAIL_H_ @@ -119113,7 +119249,7 @@ static int vorbis_ftoi(double f){ #endif #endif /* _OS_H */ -/********* End of inlined file: os.h *********/ +/*** End of inlined file: os.h ***/ typedef struct bitrate_manager_state { int managed; @@ -119149,7 +119285,7 @@ extern int vorbis_bitrate_addblock(vorbis_block *vb); extern int vorbis_bitrate_flushpacket(vorbis_dsp_state *vd, ogg_packet *op); #endif -/********* End of inlined file: bitrate.h *********/ +/*** End of inlined file: bitrate.h ***/ static int ilog(unsigned int v){ int ret=0; @@ -119191,7 +119327,8 @@ typedef struct private_state { ogg_int64_t sample_count; } private_state; -/********* Start of inlined file: highlevel.h *********/ + +/*** Start of inlined file: highlevel.h ***/ typedef struct highlevel_byblocktype { double tone_mask_setting; double tone_peaklimit_setting; @@ -119231,7 +119368,7 @@ typedef struct highlevel_encode_setup { highlevel_byblocktype block[4]; /* padding, impulse, transition, long */ } highlevel_encode_setup; -/********* End of inlined file: highlevel.h *********/ +/*** End of inlined file: highlevel.h ***/ typedef struct codec_setup_info { @@ -119268,9 +119405,10 @@ extern vorbis_look_psy_global *_vp_global_look(vorbis_info *vi); extern void _vp_global_free(vorbis_look_psy_global *look); #endif -/********* End of inlined file: codec_internal.h *********/ +/*** End of inlined file: codec_internal.h ***/ -/********* Start of inlined file: registry.h *********/ + +/*** Start of inlined file: registry.h ***/ #ifndef _V_REG_H_ #define _V_REG_H_ @@ -119286,9 +119424,10 @@ extern vorbis_func_residue *_residue_P[]; extern vorbis_func_mapping *_mapping_P[]; #endif -/********* End of inlined file: registry.h *********/ +/*** End of inlined file: registry.h ***/ -/********* Start of inlined file: scales.h *********/ + +/*** Start of inlined file: scales.h ***/ #ifndef _V_SCALES_H_ #define _V_SCALES_H_ @@ -119342,7 +119481,7 @@ static float unitnorm(float x){ #define fromOC(o) (exp(((o)+5.965784f)*.693147f)) #endif -/********* End of inlined file: scales.h *********/ +/*** End of inlined file: scales.h ***/ int analysis_noisy=1; @@ -119415,18 +119554,19 @@ void _analysis_output(char *base,int i,float *v,int n,int bark,int dB, } #endif -/********* End of inlined file: analysis.c *********/ +/*** End of inlined file: analysis.c ***/ -/********* Start of inlined file: bitrate.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: bitrate.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -119628,18 +119768,19 @@ int vorbis_bitrate_flushpacket(vorbis_dsp_state *vd,ogg_packet *op){ } #endif -/********* End of inlined file: bitrate.c *********/ +/*** End of inlined file: bitrate.c ***/ -/********* Start of inlined file: block.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: block.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -119647,7 +119788,8 @@ int vorbis_bitrate_flushpacket(vorbis_dsp_state *vd,ogg_packet *op){ #include #include -/********* Start of inlined file: window.h *********/ + +/*** Start of inlined file: window.h ***/ #ifndef _V_WINDOW_ #define _V_WINDOW_ @@ -119656,9 +119798,10 @@ extern void _vorbis_apply_window(float *d,int *winno,long *blocksizes, int lW,int W,int nW); #endif -/********* End of inlined file: window.h *********/ +/*** End of inlined file: window.h ***/ -/********* Start of inlined file: lpc.h *********/ + +/*** Start of inlined file: lpc.h ***/ #ifndef _V_LPC_H_ #define _V_LPC_H_ @@ -119668,7 +119811,7 @@ extern void vorbis_lpc_predict(float *coeff,float *prime,int m, float *data,long n); #endif -/********* End of inlined file: lpc.h *********/ +/*** End of inlined file: lpc.h ***/ #ifndef WORD_ALIGN #define WORD_ALIGN 8 @@ -120424,18 +120567,19 @@ float *vorbis_window(vorbis_dsp_state *v,int W){ } #endif -/********* End of inlined file: block.c *********/ +/*** End of inlined file: block.c ***/ -/********* Start of inlined file: codebook.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: codebook.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -120931,18 +121075,19 @@ int main(){ #endif #endif -/********* End of inlined file: codebook.c *********/ +/*** End of inlined file: codebook.c ***/ -/********* Start of inlined file: envelope.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: envelope.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -121266,18 +121411,19 @@ void _ve_envelope_shift(envelope_lookup *e,long shift){ } #endif -/********* End of inlined file: envelope.c *********/ +/*** End of inlined file: envelope.c ***/ -/********* Start of inlined file: floor0.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: floor0.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -121285,7 +121431,8 @@ void _ve_envelope_shift(envelope_lookup *e,long shift){ #include #include -/********* Start of inlined file: lsp.h *********/ + +/*** Start of inlined file: lsp.h ***/ #ifndef _V_LSP_H_ #define _V_LSP_H_ @@ -121296,7 +121443,7 @@ extern void vorbis_lsp_to_curve(float *curve,int *map,int n,int ln, float amp,float ampoffset); #endif -/********* End of inlined file: lsp.h *********/ +/*** End of inlined file: lsp.h ***/ #include @@ -121463,18 +121610,19 @@ vorbis_func_floor floor0_exportbundle={ }; #endif -/********* End of inlined file: floor0.c *********/ +/*** End of inlined file: floor0.c ***/ -/********* Start of inlined file: floor1.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: floor1.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -122438,18 +122586,19 @@ vorbis_func_floor floor1_exportbundle={ }; #endif -/********* End of inlined file: floor1.c *********/ +/*** End of inlined file: floor1.c ***/ -/********* Start of inlined file: info.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: info.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -122963,18 +123112,19 @@ double vorbis_granule_time(vorbis_dsp_state *v,ogg_int64_t granulepos){ } #endif -/********* End of inlined file: info.c *********/ +/*** End of inlined file: info.c ***/ -/********* Start of inlined file: lpc.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: lpc.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -123051,18 +123201,19 @@ void vorbis_lpc_predict(float *coeff,float *prime,int m, } #endif -/********* End of inlined file: lpc.c *********/ +/*** End of inlined file: lpc.c ***/ -/********* Start of inlined file: lsp.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: lsp.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -123070,7 +123221,8 @@ void vorbis_lpc_predict(float *coeff,float *prime,int m, #include #include -/********* Start of inlined file: lookup.h *********/ + +/*** Start of inlined file: lookup.h ***/ #ifndef _V_LOOKUP_H_ #ifdef FLOAT_LOOKUP @@ -123086,29 +123238,29 @@ extern float vorbis_fromdBlook_i(long a); #endif #endif -/********* End of inlined file: lookup.h *********/ +/*** End of inlined file: lookup.h ***/ #define FLOAT_LOOKUP #undef INT_LOOKUP #ifdef FLOAT_LOOKUP -/********* Start of inlined file: lookup.c *********/ +/*** Start of inlined file: lookup.c ***/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS #include -/********* Start of inlined file: lookup.h *********/ +/*** Start of inlined file: lookup.h ***/ #ifndef _V_LOOKUP_H_ #ifdef FLOAT_LOOKUP @@ -123124,9 +123276,11 @@ extern float vorbis_fromdBlook_i(long a); #endif #endif -/********* End of inlined file: lookup.h *********/ +/*** End of inlined file: lookup.h ***/ -/********* Start of inlined file: lookup_data.h *********/ + + +/*** Start of inlined file: lookup_data.h ***/ #ifndef _V_LOOKUP_DATA_H_ #ifdef FLOAT_LOOKUP @@ -123299,7 +123453,7 @@ static long COS_LOOKUP_I[COS_LOOKUP_I_SZ+1]={ #endif #endif -/********* End of inlined file: lookup_data.h *********/ +/*** End of inlined file: lookup_data.h ***/ #ifdef FLOAT_LOOKUP @@ -123362,7 +123516,11 @@ long vorbis_coslook_i(long a){ #endif #endif -/********* End of inlined file: lookup.c *********/ +/*** End of inlined file: lookup.c ***/ + + /* catch this in the build system; we #include for + compilers (like gcc) that can't inline across + modules */ void vorbis_lsp_to_curve(float *curve,int *map,int n,int ln,float *lsp,int m, float amp,float ampoffset){ @@ -123416,22 +123574,22 @@ void vorbis_lsp_to_curve(float *curve,int *map,int n,int ln,float *lsp,int m, #ifdef INT_LOOKUP -/********* Start of inlined file: lookup.c *********/ +/*** Start of inlined file: lookup.c ***/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS #include -/********* Start of inlined file: lookup.h *********/ +/*** Start of inlined file: lookup.h ***/ #ifndef _V_LOOKUP_H_ #ifdef FLOAT_LOOKUP @@ -123447,9 +123605,11 @@ extern float vorbis_fromdBlook_i(long a); #endif #endif -/********* End of inlined file: lookup.h *********/ +/*** End of inlined file: lookup.h ***/ -/********* Start of inlined file: lookup_data.h *********/ + + +/*** Start of inlined file: lookup_data.h ***/ #ifndef _V_LOOKUP_DATA_H_ #ifdef FLOAT_LOOKUP @@ -123622,7 +123782,7 @@ static long COS_LOOKUP_I[COS_LOOKUP_I_SZ+1]={ #endif #endif -/********* End of inlined file: lookup_data.h *********/ +/*** End of inlined file: lookup_data.h ***/ #ifdef FLOAT_LOOKUP @@ -123685,7 +123845,11 @@ long vorbis_coslook_i(long a){ #endif #endif -/********* End of inlined file: lookup.c *********/ +/*** End of inlined file: lookup.c ***/ + + /* catch this in the build system; we #include for + compilers (like gcc) that can't inline across + modules */ static int MLOOP_1[64]={ 0,10,11,11, 12,12,12,12, 13,13,13,13, 13,13,13,13, @@ -123970,18 +124134,19 @@ int vorbis_lpc_to_lsp(float *lpc,float *lsp,int m){ } #endif -/********* End of inlined file: lsp.c *********/ +/*** End of inlined file: lsp.c ***/ -/********* Start of inlined file: mapping0.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: mapping0.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -124708,18 +124873,19 @@ vorbis_func_mapping mapping0_exportbundle={ }; #endif -/********* End of inlined file: mapping0.c *********/ +/*** End of inlined file: mapping0.c ***/ -/********* Start of inlined file: mdct.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: mdct.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -125222,18 +125388,19 @@ void mdct_forward(mdct_lookup *init, DATA_TYPE *in, DATA_TYPE *out){ } #endif -/********* End of inlined file: mdct.c *********/ +/*** End of inlined file: mdct.c ***/ -/********* Start of inlined file: psy.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: psy.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -125241,7 +125408,8 @@ void mdct_forward(mdct_lookup *init, DATA_TYPE *in, DATA_TYPE *out){ #include #include -/********* Start of inlined file: masking.h *********/ + +/*** Start of inlined file: masking.h ***/ #ifndef _V_MASKING_H_ #define _V_MASKING_H_ @@ -125981,7 +126149,7 @@ static float tonemasks[P_BANDS][6][EHMER_MAX]={ }; #endif -/********* End of inlined file: masking.h *********/ +/*** End of inlined file: masking.h ***/ #define NEGINF -9999.f static double stereo_threshholds[]={0.0, .5, 1.0, 1.5, 2.5, 4.5, 8.5, 16.5, 9e10}; @@ -127069,18 +127237,19 @@ void hf_reduction(vorbis_info_psy_global *g, } #endif -/********* End of inlined file: psy.c *********/ +/*** End of inlined file: psy.c ***/ -/********* Start of inlined file: registry.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: registry.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -127107,18 +127276,19 @@ vorbis_func_mapping *_mapping_P[]={ }; #endif -/********* End of inlined file: registry.c *********/ +/*** End of inlined file: registry.c ***/ -/********* Start of inlined file: res0.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: res0.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -127895,18 +128065,19 @@ vorbis_func_residue residue2_exportbundle={ }; #endif -/********* End of inlined file: res0.c *********/ +/*** End of inlined file: res0.c ***/ -/********* Start of inlined file: sharedbook.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: sharedbook.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -128501,18 +128672,19 @@ int main(){ #endif #endif -/********* End of inlined file: sharedbook.c *********/ +/*** End of inlined file: sharedbook.c ***/ -/********* Start of inlined file: smallft.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: smallft.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -129725,18 +129897,19 @@ void drft_clear(drft_lookup *l){ } #endif -/********* End of inlined file: smallft.c *********/ +/*** End of inlined file: smallft.c ***/ -/********* Start of inlined file: synthesis.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: synthesis.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -129865,18 +130038,19 @@ int vorbis_synthesis_halfrate_p(vorbis_info *vi){ } #endif -/********* End of inlined file: synthesis.c *********/ +/*** End of inlined file: synthesis.c ***/ -/********* Start of inlined file: vorbisenc.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: vorbisenc.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -129995,12 +130169,12 @@ static vorbis_info_mapping0 _map_nominal[2]={ {1, {0,0}, {1}, {1}, 1,{0},{1}} }; -/********* Start of inlined file: setup_44.h *********/ -/********* Start of inlined file: floor_all.h *********/ +/*** Start of inlined file: setup_44.h ***/ -/********* Start of inlined file: floor_books.h *********/ +/*** Start of inlined file: floor_all.h ***/ +/*** Start of inlined file: floor_books.h ***/ static long _huff_lengthlist_line_256x7_0sub1[] = { 0, 2, 3, 3, 3, 3, 4, 3, 4, }; @@ -131819,7 +131993,7 @@ static static_codebook _huff_book_line_256x4low_0sub3 = { NULL, 0 }; -/********* End of inlined file: floor_books.h *********/ +/*** End of inlined file: floor_books.h ***/ static static_codebook *_floor_128x4_books[]={ &_huff_book_line_128x4_class0, @@ -132037,12 +132211,12 @@ static vorbis_info_floor1 _floor[10]={ }, }; -/********* End of inlined file: floor_all.h *********/ +/*** End of inlined file: floor_all.h ***/ -/********* Start of inlined file: residue_44.h *********/ -/********* Start of inlined file: res_books_stereo.h *********/ +/*** Start of inlined file: residue_44.h ***/ +/*** Start of inlined file: res_books_stereo.h ***/ static long _vq_quantlist__16c0_s_p1_0[] = { 1, 0, @@ -153013,7 +153187,7 @@ static static_codebook _huff_book__44cn1_sm_short = { NULL, 0 }; -/********* End of inlined file: res_books_stereo.h *********/ +/*** End of inlined file: res_books_stereo.h ***/ static vorbis_info_residue0 _residue_44_low={ 0,-1, -1, 9,-1, @@ -153281,10 +153455,10 @@ static vorbis_mapping_template _mapres_template_44_stereo[]={ { _map_nominal, _res_44s_8 }, /* 8 */ { _map_nominal, _res_44s_9 }, /* 9 */ }; -/********* End of inlined file: residue_44.h *********/ +/*** End of inlined file: residue_44.h ***/ -/********* Start of inlined file: psych_44.h *********/ +/*** Start of inlined file: psych_44.h ***/ static vorbis_info_psy_global _psy_global_44[5]={ {8, /* lines per eighth octave */ @@ -153709,7 +153883,7 @@ static double _noise_thresh_44[11]={ static double _noise_thresh_5only[2]={ .5,.5, }; -/********* End of inlined file: psych_44.h *********/ +/*** End of inlined file: psych_44.h ***/ static double rate_mapping_44_stereo[12]={ 22500.,32000.,40000.,48000.,56000.,64000., @@ -153795,14 +153969,14 @@ ve_setup_data_template ve_setup_44_stereo={ _mapres_template_44_stereo }; -/********* End of inlined file: setup_44.h *********/ +/*** End of inlined file: setup_44.h ***/ -/********* Start of inlined file: setup_44u.h *********/ -/********* Start of inlined file: residue_44u.h *********/ +/*** Start of inlined file: setup_44u.h ***/ -/********* Start of inlined file: res_books_uncoupled.h *********/ +/*** Start of inlined file: residue_44u.h ***/ +/*** Start of inlined file: res_books_uncoupled.h ***/ static long _vq_quantlist__16u0__p1_0[] = { 1, 0, @@ -165301,7 +165475,7 @@ static static_codebook _huff_book__44un1__short = { NULL, 0 }; -/********* End of inlined file: res_books_uncoupled.h *********/ +/*** End of inlined file: res_books_uncoupled.h ***/ static vorbis_info_residue0 _residue_44_low_un={ 0,-1, -1, 8,-1, @@ -165592,7 +165766,7 @@ static vorbis_mapping_template _mapres_template_44_uncoupled[]={ { _map_nominal_u, _res_44u_8 }, /* 8 */ { _map_nominal_u, _res_44u_9 }, /* 9 */ }; -/********* End of inlined file: residue_44u.h *********/ +/*** End of inlined file: residue_44u.h ***/ static double rate_mapping_44_un[12]={ 32000.,48000.,60000.,70000.,80000.,86000., @@ -165649,9 +165823,10 @@ ve_setup_data_template ve_setup_44_uncoupled={ _mapres_template_44_uncoupled }; -/********* End of inlined file: setup_44u.h *********/ +/*** End of inlined file: setup_44u.h ***/ -/********* Start of inlined file: setup_32.h *********/ + +/*** Start of inlined file: setup_32.h ***/ static double rate_mapping_32[12]={ 18000.,28000.,35000.,45000.,56000.,60000., 75000.,90000.,100000.,115000.,150000.,190000., @@ -165767,11 +165942,12 @@ ve_setup_data_template ve_setup_32_uncoupled={ _mapres_template_44_uncoupled }; -/********* End of inlined file: setup_32.h *********/ +/*** End of inlined file: setup_32.h ***/ -/********* Start of inlined file: setup_8.h *********/ -/********* Start of inlined file: psych_8.h *********/ +/*** Start of inlined file: setup_8.h ***/ + +/*** Start of inlined file: psych_8.h ***/ static att3 _psy_tone_masteratt_8[3]={ {{ 32, 25, 12}, 0, 0}, /* 0 */ {{ 30, 25, 12}, 0, 0}, /* 0 */ @@ -165850,10 +166026,10 @@ static int _psy_ath_floater_8[3]={ static int _psy_ath_abs_8[3]={ -130,-130,-140, }; -/********* End of inlined file: psych_8.h *********/ +/*** End of inlined file: psych_8.h ***/ -/********* Start of inlined file: residue_8.h *********/ +/*** Start of inlined file: residue_8.h ***/ static static_bookblock _resbook_8s_0={ { {0},{0,0,&_8c0_s_p1_0},{0,0,&_8c0_s_p2_0},{0,0,&_8c0_s_p3_0}, @@ -165929,7 +166105,7 @@ static vorbis_mapping_template _mapres_template_8_uncoupled[2]={ { _map_nominal_u, _res_8u_0 }, /* 0 */ { _map_nominal_u, _res_8u_1 }, /* 1 */ }; -/********* End of inlined file: residue_8.h *********/ +/*** End of inlined file: residue_8.h ***/ static int blocksize_8[2]={ 512,512 @@ -166056,11 +166232,12 @@ ve_setup_data_template ve_setup_8_uncoupled={ _mapres_template_8_uncoupled }; -/********* End of inlined file: setup_8.h *********/ +/*** End of inlined file: setup_8.h ***/ -/********* Start of inlined file: setup_11.h *********/ -/********* Start of inlined file: psych_11.h *********/ +/*** Start of inlined file: setup_11.h ***/ + +/*** Start of inlined file: psych_11.h ***/ static double _psy_lowpass_11[3]={4.5,5.5,30.,}; static att3 _psy_tone_masteratt_11[3]={ @@ -166090,7 +166267,7 @@ static noise3 _psy_noisebias_11[3]={ }; static double _noise_thresh_11[3]={ .3,.5,.5 }; -/********* End of inlined file: psych_11.h *********/ +/*** End of inlined file: psych_11.h ***/ static int blocksize_11[2]={ 512,512 @@ -166213,11 +166390,12 @@ ve_setup_data_template ve_setup_11_uncoupled={ _mapres_template_8_uncoupled }; -/********* End of inlined file: setup_11.h *********/ +/*** End of inlined file: setup_11.h ***/ -/********* Start of inlined file: setup_16.h *********/ -/********* Start of inlined file: psych_16.h *********/ +/*** Start of inlined file: setup_16.h ***/ + +/*** Start of inlined file: psych_16.h ***/ static adj_stereo _psy_stereo_modes_16[4]={ {{ 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3}, { 6, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4}, @@ -166319,10 +166497,10 @@ static int _psy_ath_floater_16[4]={ static int _psy_ath_abs_16[4]={ -130,-130,-130,-140, }; -/********* End of inlined file: psych_16.h *********/ +/*** End of inlined file: psych_16.h ***/ -/********* Start of inlined file: residue_16.h *********/ +/*** Start of inlined file: residue_16.h ***/ static static_bookblock _resbook_16s_0={ { {0}, @@ -166466,7 +166644,7 @@ static vorbis_mapping_template _mapres_template_16_uncoupled[3]={ { _map_nominal_u, _res_16u_1 }, /* 1 */ { _map_nominal_u, _res_16u_2 }, /* 2 */ }; -/********* End of inlined file: residue_16.h *********/ +/*** End of inlined file: residue_16.h ***/ static int blocksize_16_short[3]={ 1024,512,512 @@ -166597,9 +166775,10 @@ ve_setup_data_template ve_setup_16_uncoupled={ _mapres_template_16_uncoupled }; -/********* End of inlined file: setup_16.h *********/ +/*** End of inlined file: setup_16.h ***/ -/********* Start of inlined file: setup_22.h *********/ + +/*** Start of inlined file: setup_22.h ***/ static double rate_mapping_22[4]={ 15000.,20000.,44000.,86000. }; @@ -166711,9 +166890,10 @@ ve_setup_data_template ve_setup_22_uncoupled={ _mapres_template_16_uncoupled }; -/********* End of inlined file: setup_22.h *********/ +/*** End of inlined file: setup_22.h ***/ -/********* Start of inlined file: setup_X.h *********/ + +/*** Start of inlined file: setup_X.h ***/ static double rate_mapping_X[12]={ -1.,-1.,-1.,-1.,-1.,-1., -1.,-1.,-1.,-1.,-1.,-1. @@ -166922,7 +167102,7 @@ ve_setup_data_template ve_setup_XX_uncoupled={ _mapres_template_8_uncoupled }; -/********* End of inlined file: setup_X.h *********/ +/*** End of inlined file: setup_X.h ***/ static ve_setup_data_template *setup_list[]={ &ve_setup_44_stereo, @@ -167886,18 +168066,19 @@ int vorbis_encode_ctl(vorbis_info *vi,int number,void *arg){ } #endif -/********* End of inlined file: vorbisenc.c *********/ +/*** End of inlined file: vorbisenc.c ***/ -/********* Start of inlined file: vorbisfile.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: vorbisfile.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -169460,18 +169641,19 @@ int ov_time_seek_page_lap(OggVorbis_File *vf,double pos){ } #endif -/********* End of inlined file: vorbisfile.c *********/ +/*** End of inlined file: vorbisfile.c ***/ -/********* Start of inlined file: window.c *********/ -/********* Start of inlined file: juce_OggVorbisHeader.h *********/ +/*** Start of inlined file: window.c ***/ + +/*** Start of inlined file: juce_OggVorbisHeader.h ***/ // This file is included at the start of each Ogg-Vorbis .c file, just to do a few housekeeping // tasks.. #if JUCE_MSVC #pragma warning (disable: 4267 4127 4244 4996 4100 4701 4702 4013 4133 4206 4305 4189 4706) #endif -/********* End of inlined file: juce_OggVorbisHeader.h *********/ +/*** End of inlined file: juce_OggVorbisHeader.h ***/ #if JUCE_USE_OGGVORBIS @@ -171593,7 +171775,7 @@ void _vorbis_apply_window(float *d,int *winno,long *blocksizes, } #endif -/********* End of inlined file: window.c *********/ +/*** End of inlined file: window.c ***/ #else #include @@ -172012,10 +172194,13 @@ int OggVorbisAudioFormat::estimateOggFileQuality (const File& source) END_JUCE_NAMESPACE #endif -/********* End of inlined file: juce_OggVorbisAudioFormat.cpp *********/ +/*** End of inlined file: juce_OggVorbisAudioFormat.cpp ***/ -/********* Start of inlined file: juce_JPEGLoader.cpp *********/ +#endif +#if JUCE_BUILD_GUI + +/*** Start of inlined file: juce_JPEGLoader.cpp ***/ #if JUCE_MSVC #pragma warning (push) #endif @@ -172031,14 +172216,13 @@ namespace jpeglibNamespace #define JPEG_INTERNALS #undef FAR -/********* Start of inlined file: jpeglib.h *********/ +/*** Start of inlined file: jpeglib.h ***/ #ifndef JPEGLIB_H #define JPEGLIB_H #ifndef JCONFIG_INCLUDED /* in case jinclude.h already did */ -/********* Start of inlined file: jconfig.h *********/ - +/*** Start of inlined file: jconfig.h ***/ // disable all the warnings under MSVC #ifdef _MSC_VER #pragma warning (disable: 4996 4267 4100 4127 4702 4244) @@ -172089,12 +172273,12 @@ typedef unsigned char boolean; #undef PROGRESS_REPORT /* optional */ #endif /* JPEG_CJPEG_DJPEG */ -/********* End of inlined file: jconfig.h *********/ +/*** End of inlined file: jconfig.h ***/ + /* widely used configuration options */ #endif -/********* Start of inlined file: jmorecfg.h *********/ - +/*** Start of inlined file: jmorecfg.h ***/ #define BITS_IN_JSAMPLE 8 /* use 8 or 12 */ #define MAX_COMPONENTS 10 /* maximum number of image components */ @@ -172259,7 +172443,9 @@ typedef int boolean; #endif #endif /* JPEG_INTERNAL_OPTIONS */ -/********* End of inlined file: jmorecfg.h *********/ +/*** End of inlined file: jmorecfg.h ***/ + + /* seldom changed options */ #define JPEG_LIB_VERSION 62 /* Version 6b */ @@ -172893,8 +173079,7 @@ struct jpeg_color_quantizer { long dummy; }; #ifdef JPEG_INTERNALS -/********* Start of inlined file: jpegint.h *********/ - +/*** Start of inlined file: jpegint.h ***/ typedef enum { /* Operating modes for buffer controllers */ JBUF_PASS_THRU, /* Plain stripwise operation */ JBUF_SAVE_SOURCE, /* Run source subobject only, save output */ @@ -173201,9 +173386,11 @@ struct jvirt_sarray_control { long dummy; }; struct jvirt_barray_control { long dummy; }; #endif #endif /* INCOMPLETE_TYPES_BROKEN */ -/********* End of inlined file: jpegint.h *********/ +/*** End of inlined file: jpegint.h ***/ -/********* Start of inlined file: jerror.h *********/ + /* fetch private declarations */ + +/*** Start of inlined file: jerror.h ***/ #ifndef JMESSAGE #ifndef JERROR_H #define JMAKE_ENUM_LIST @@ -173464,23 +173651,25 @@ JMESSAGE(JWRN_TOO_MUCH_DATA, "Application transferred too many scanlines") (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl))) #endif /* JERROR_H */ -/********* End of inlined file: jerror.h *********/ +/*** End of inlined file: jerror.h ***/ + /* fetch error codes too */ #endif #endif /* JPEGLIB_H */ -/********* End of inlined file: jpeglib.h *********/ +/*** End of inlined file: jpeglib.h ***/ -/********* Start of inlined file: jcapimin.c *********/ + + +/*** Start of inlined file: jcapimin.c ***/ #define JPEG_INTERNALS -/********* Start of inlined file: jinclude.h *********/ - +/*** Start of inlined file: jinclude.h ***/ #ifndef __jinclude_h__ #define __jinclude_h__ -/********* Start of inlined file: jconfig.h *********/ +/*** Start of inlined file: jconfig.h ***/ // disable all the warnings under MSVC #ifdef _MSC_VER #pragma warning (disable: 4996 4267 4100 4127 4702 4244) @@ -173531,8 +173720,9 @@ typedef unsigned char boolean; #undef PROGRESS_REPORT /* optional */ #endif /* JPEG_CJPEG_DJPEG */ -/********* End of inlined file: jconfig.h *********/ +/*** End of inlined file: jconfig.h ***/ + /* auto configuration options */ #define JCONFIG_INCLUDED /* so that jpeglib.h doesn't do it again */ #ifdef HAVE_STDDEF_H @@ -173658,7 +173848,8 @@ static const int extend_offset[16] = /* entry n is (-1 << n) + 1 */ #endif /* AVOID_TABLES */ #endif -/********* End of inlined file: jinclude.h *********/ +/*** End of inlined file: jinclude.h ***/ + GLOBAL(void) jpeg_CreateCompress (j_compress_ptr cinfo, int version, size_t structsize) @@ -173815,9 +174006,10 @@ jpeg_write_tables (j_compress_ptr cinfo) (*cinfo->marker->write_tables_only) (cinfo); (*cinfo->dest->term_destination) (cinfo); } -/********* End of inlined file: jcapimin.c *********/ +/*** End of inlined file: jcapimin.c ***/ -/********* Start of inlined file: jcapistd.c *********/ + +/*** Start of inlined file: jcapistd.c ***/ #define JPEG_INTERNALS GLOBAL(void) @@ -173900,9 +174092,10 @@ jpeg_write_raw_data (j_compress_ptr cinfo, JSAMPIMAGE data, cinfo->next_scanline += lines_per_iMCU_row; return lines_per_iMCU_row; } -/********* End of inlined file: jcapistd.c *********/ +/*** End of inlined file: jcapistd.c ***/ -/********* Start of inlined file: jccoefct.c *********/ + +/*** Start of inlined file: jccoefct.c ***/ #define JPEG_INTERNALS #ifdef ENTROPY_OPT_SUPPORTED @@ -174208,9 +174401,10 @@ jinit_c_coef_controller (j_compress_ptr cinfo, boolean need_full_buffer) coef->whole_image[0] = NULL; /* flag for no virtual arrays */ } } -/********* End of inlined file: jccoefct.c *********/ +/*** End of inlined file: jccoefct.c ***/ -/********* Start of inlined file: jccolor.c *********/ + +/*** Start of inlined file: jccolor.c ***/ #define JPEG_INTERNALS typedef struct { @@ -174524,15 +174718,15 @@ jinit_color_converter (j_compress_ptr cinfo) break; } } -/********* End of inlined file: jccolor.c *********/ +/*** End of inlined file: jccolor.c ***/ #undef FIX -/********* Start of inlined file: jcdctmgr.c *********/ +/*** Start of inlined file: jcdctmgr.c ***/ #define JPEG_INTERNALS -/********* Start of inlined file: jdct.h *********/ +/*** Start of inlined file: jdct.h ***/ #ifndef __jdct_h__ #define __jdct_h__ @@ -174621,7 +174815,9 @@ EXTERN(void) jpeg_idct_1x1 #endif #endif -/********* End of inlined file: jdct.h *********/ +/*** End of inlined file: jdct.h ***/ + + /* Private declarations for DCT subsystem */ typedef struct { struct jpeg_forward_dct pub; /* public fields */ @@ -174907,15 +175103,16 @@ jinit_forward_dct (j_compress_ptr cinfo) #endif } } -/********* End of inlined file: jcdctmgr.c *********/ +/*** End of inlined file: jcdctmgr.c ***/ + #undef CONST_BITS -/********* Start of inlined file: jchuff.c *********/ +/*** Start of inlined file: jchuff.c ***/ #define JPEG_INTERNALS -/********* Start of inlined file: jchuff.h *********/ +/*** Start of inlined file: jchuff.h ***/ #ifndef _jchuff_h_ #define _jchuff_h_ @@ -174943,7 +175140,9 @@ EXTERN(void) jpeg_gen_optimal_table JPP((j_compress_ptr cinfo, JHUFF_TBL * htbl, long freq[])); #endif -/********* End of inlined file: jchuff.h *********/ +/*** End of inlined file: jchuff.h ***/ + + /* Declarations shared with jcphuff.c */ typedef struct { INT32 put_buffer; /* current bit-accumulation buffer */ @@ -175571,11 +175770,12 @@ jinit_huff_encoder (j_compress_ptr cinfo) #endif } } -/********* End of inlined file: jchuff.c *********/ +/*** End of inlined file: jchuff.c ***/ + #undef emit_byte -/********* Start of inlined file: jcinit.c *********/ +/*** Start of inlined file: jcinit.c ***/ #define JPEG_INTERNALS GLOBAL(void) @@ -175612,9 +175812,11 @@ jinit_compress_master (j_compress_ptr cinfo) (*cinfo->marker->write_file_header) (cinfo); } -/********* End of inlined file: jcinit.c *********/ +/*** End of inlined file: jcinit.c ***/ -/********* Start of inlined file: jcmainct.c *********/ + + +/*** Start of inlined file: jcmainct.c ***/ #define JPEG_INTERNALS #undef FULL_MAIN_BUFFER_SUPPORTED @@ -175814,9 +176016,10 @@ jinit_c_main_controller (j_compress_ptr cinfo, boolean need_full_buffer) } } } -/********* End of inlined file: jcmainct.c *********/ +/*** End of inlined file: jcmainct.c ***/ -/********* Start of inlined file: jcmarker.c *********/ + +/*** Start of inlined file: jcmarker.c ***/ #define JPEG_INTERNALS typedef struct { @@ -176242,9 +176445,10 @@ jinit_marker_writer (j_compress_ptr cinfo) marker->pub.write_marker_byte = write_marker_byte; marker->last_restart_interval = 0; } -/********* End of inlined file: jcmarker.c *********/ +/*** End of inlined file: jcmarker.c ***/ -/********* Start of inlined file: jcmaster.c *********/ + +/*** Start of inlined file: jcmaster.c ***/ #define JPEG_INTERNALS typedef enum { @@ -176690,9 +176894,10 @@ jinit_c_master_control (j_compress_ptr cinfo, boolean transcode_only) else master->total_passes = cinfo->num_scans; } -/********* End of inlined file: jcmaster.c *********/ +/*** End of inlined file: jcmaster.c ***/ -/********* Start of inlined file: jcomapi.c *********/ + +/*** Start of inlined file: jcomapi.c ***/ #define JPEG_INTERNALS GLOBAL(void) @@ -176745,9 +176950,10 @@ jpeg_alloc_huff_table (j_common_ptr cinfo) tbl->sent_table = FALSE; /* make sure this is false in any new table */ return tbl; } -/********* End of inlined file: jcomapi.c *********/ +/*** End of inlined file: jcomapi.c ***/ -/********* Start of inlined file: jcparam.c *********/ + +/*** Start of inlined file: jcparam.c ***/ #define JPEG_INTERNALS GLOBAL(void) @@ -177186,9 +177392,10 @@ jpeg_simple_progression (j_compress_ptr cinfo) } #endif /* C_PROGRESSIVE_SUPPORTED */ -/********* End of inlined file: jcparam.c *********/ +/*** End of inlined file: jcparam.c ***/ -/********* Start of inlined file: jcphuff.c *********/ + +/*** Start of inlined file: jcphuff.c ***/ #define JPEG_INTERNALS #ifdef C_PROGRESSIVE_SUPPORTED @@ -177794,9 +178001,10 @@ jinit_phuff_encoder (j_compress_ptr cinfo) } #endif /* C_PROGRESSIVE_SUPPORTED */ -/********* End of inlined file: jcphuff.c *********/ +/*** End of inlined file: jcphuff.c ***/ -/********* Start of inlined file: jcprepct.c *********/ + +/*** Start of inlined file: jcprepct.c ***/ #define JPEG_INTERNALS #ifdef INPUT_SMOOTHING_SUPPORTED @@ -178033,9 +178241,10 @@ jinit_c_prep_controller (j_compress_ptr cinfo, boolean need_full_buffer) } } } -/********* End of inlined file: jcprepct.c *********/ +/*** End of inlined file: jcprepct.c ***/ -/********* Start of inlined file: jcsample.c *********/ + +/*** Start of inlined file: jcsample.c ***/ #define JPEG_INTERNALS typedef JMETHOD(void, downsample1_ptr, @@ -178375,9 +178584,10 @@ jinit_downsampler (j_compress_ptr cinfo) TRACEMS(cinfo, 0, JTRC_SMOOTH_NOTIMPL); #endif } -/********* End of inlined file: jcsample.c *********/ +/*** End of inlined file: jcsample.c ***/ -/********* Start of inlined file: jctrans.c *********/ + +/*** Start of inlined file: jctrans.c ***/ #define JPEG_INTERNALS LOCAL(void) transencode_master_selection @@ -178622,9 +178832,10 @@ transencode_coef_controller (j_compress_ptr cinfo, coef->dummy_buffer[i] = buffer + i; } } -/********* End of inlined file: jctrans.c *********/ +/*** End of inlined file: jctrans.c ***/ -/********* Start of inlined file: jdapistd.c *********/ + +/*** Start of inlined file: jdapistd.c ***/ #define JPEG_INTERNALS LOCAL(boolean) output_pass_setup JPP((j_decompress_ptr cinfo)); @@ -178795,9 +179006,10 @@ jpeg_finish_output (j_decompress_ptr cinfo) } #endif /* D_MULTISCAN_FILES_SUPPORTED */ -/********* End of inlined file: jdapistd.c *********/ +/*** End of inlined file: jdapistd.c ***/ -/********* Start of inlined file: jdapimin.c *********/ + +/*** Start of inlined file: jdapimin.c ***/ #define JPEG_INTERNALS GLOBAL(void) @@ -179047,11 +179259,12 @@ jpeg_finish_decompress (j_decompress_ptr cinfo) jpeg_abort((j_common_ptr) cinfo); return TRUE; } -/********* End of inlined file: jdapimin.c *********/ +/*** End of inlined file: jdapimin.c ***/ -/********* Start of inlined file: jdatasrc.c *********/ -/********* Start of inlined file: jerror.h *********/ +/*** Start of inlined file: jdatasrc.c ***/ + +/*** Start of inlined file: jerror.h ***/ #ifndef JMESSAGE #ifndef JERROR_H #define JMAKE_ENUM_LIST @@ -179312,7 +179525,7 @@ JMESSAGE(JWRN_TOO_MUCH_DATA, "Application transferred too many scanlines") (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl))) #endif /* JERROR_H */ -/********* End of inlined file: jerror.h *********/ +/*** End of inlined file: jerror.h ***/ typedef struct { struct jpeg_source_mgr pub; /* public fields */ @@ -179403,9 +179616,10 @@ jpeg_stdio_src (j_decompress_ptr cinfo, FILE * infile) src->pub.bytes_in_buffer = 0; /* forces fill_input_buffer on first read */ src->pub.next_input_byte = NULL; /* until buffer loaded */ } -/********* End of inlined file: jdatasrc.c *********/ +/*** End of inlined file: jdatasrc.c ***/ -/********* Start of inlined file: jdcoefct.c *********/ + +/*** Start of inlined file: jdcoefct.c ***/ #define JPEG_INTERNALS #ifndef D_PROGRESSIVE_SUPPORTED @@ -179956,11 +180170,11 @@ jinit_d_coef_controller (j_decompress_ptr cinfo, boolean need_full_buffer) coef->pub.coef_arrays = NULL; /* flag for no virtual arrays */ } } -/********* End of inlined file: jdcoefct.c *********/ +/*** End of inlined file: jdcoefct.c ***/ #undef FIX -/********* Start of inlined file: jdcolor.c *********/ +/*** Start of inlined file: jdcolor.c ***/ #define JPEG_INTERNALS typedef struct { @@ -180231,11 +180445,12 @@ jinit_color_deconverter (j_decompress_ptr cinfo) else cinfo->output_components = cinfo->out_color_components; } -/********* End of inlined file: jdcolor.c *********/ +/*** End of inlined file: jdcolor.c ***/ + #undef FIX -/********* Start of inlined file: jddctmgr.c *********/ +/*** Start of inlined file: jddctmgr.c ***/ #define JPEG_INTERNALS typedef struct { @@ -180415,16 +180630,17 @@ jinit_inverse_dct (j_decompress_ptr cinfo) idct->cur_method[ci] = -1; } } -/********* End of inlined file: jddctmgr.c *********/ +/*** End of inlined file: jddctmgr.c ***/ + #undef CONST_BITS #undef ASSIGN_STATE -/********* Start of inlined file: jdhuff.c *********/ +/*** Start of inlined file: jdhuff.c ***/ #define JPEG_INTERNALS -/********* Start of inlined file: jdhuff.h *********/ +/*** Start of inlined file: jdhuff.h ***/ #ifndef __jdhuff_h__ #define __jdhuff_h__ @@ -180530,7 +180746,9 @@ EXTERN(int) jpeg_huff_decode register int bits_left, d_derived_tbl * htbl, int min_bits)); #endif -/********* End of inlined file: jdhuff.h *********/ +/*** End of inlined file: jdhuff.h ***/ + + /* Declarations shared with jdphuff.c */ typedef struct { int last_dc_val[MAX_COMPS_IN_SCAN]; /* last DC coef for each component */ @@ -180926,9 +181144,11 @@ jinit_huff_decoder (j_decompress_ptr cinfo) entropy->dc_derived_tbls[i] = entropy->ac_derived_tbls[i] = NULL; } } -/********* End of inlined file: jdhuff.c *********/ +/*** End of inlined file: jdhuff.c ***/ -/********* Start of inlined file: jdinput.c *********/ + + +/*** Start of inlined file: jdinput.c ***/ #define JPEG_INTERNALS typedef struct { @@ -181174,9 +181394,10 @@ jinit_input_controller (j_decompress_ptr cinfo) inputctl->pub.eoi_reached = FALSE; inputctl->inheaders = TRUE; } -/********* End of inlined file: jdinput.c *********/ +/*** End of inlined file: jdinput.c ***/ -/********* Start of inlined file: jdmainct.c *********/ + +/*** Start of inlined file: jdmainct.c ***/ #define JPEG_INTERNALS typedef struct { @@ -181470,9 +181691,10 @@ jinit_d_main_controller (j_decompress_ptr cinfo, boolean need_full_buffer) (JDIMENSION) (rgroup * ngroups)); } } -/********* End of inlined file: jdmainct.c *********/ +/*** End of inlined file: jdmainct.c ***/ -/********* Start of inlined file: jdmarker.c *********/ + +/*** Start of inlined file: jdmarker.c ***/ #define JPEG_INTERNALS typedef struct { @@ -182438,9 +182660,10 @@ jpeg_set_marker_processor (j_decompress_ptr cinfo, int marker_code, else ERREXIT1(cinfo, JERR_UNKNOWN_MARKER, marker_code); } -/********* End of inlined file: jdmarker.c *********/ +/*** End of inlined file: jdmarker.c ***/ -/********* Start of inlined file: jdmaster.c *********/ + +/*** Start of inlined file: jdmaster.c ***/ #define JPEG_INTERNALS typedef struct { @@ -182815,11 +183038,11 @@ jinit_master_decompress (j_decompress_ptr cinfo) master_selection(cinfo); } -/********* End of inlined file: jdmaster.c *********/ +/*** End of inlined file: jdmaster.c ***/ #undef FIX -/********* Start of inlined file: jdmerge.c *********/ +/*** Start of inlined file: jdmerge.c ***/ #define JPEG_INTERNALS #ifdef UPSAMPLE_MERGING_SUPPORTED @@ -183093,11 +183316,12 @@ jinit_merged_upsampler (j_decompress_ptr cinfo) } #endif /* UPSAMPLE_MERGING_SUPPORTED */ -/********* End of inlined file: jdmerge.c *********/ +/*** End of inlined file: jdmerge.c ***/ + #undef ASSIGN_STATE -/********* Start of inlined file: jdphuff.c *********/ +/*** Start of inlined file: jdphuff.c ***/ #define JPEG_INTERNALS #ifdef D_PROGRESSIVE_SUPPORTED @@ -183542,9 +183766,11 @@ jinit_phuff_decoder (j_decompress_ptr cinfo) } #endif /* D_PROGRESSIVE_SUPPORTED */ -/********* End of inlined file: jdphuff.c *********/ +/*** End of inlined file: jdphuff.c ***/ -/********* Start of inlined file: jdpostct.c *********/ + + +/*** Start of inlined file: jdpostct.c ***/ #define JPEG_INTERNALS typedef struct { @@ -183747,11 +183973,11 @@ jinit_d_post_controller (j_decompress_ptr cinfo, boolean need_full_buffer) } } } -/********* End of inlined file: jdpostct.c *********/ +/*** End of inlined file: jdpostct.c ***/ #undef FIX -/********* Start of inlined file: jdsample.c *********/ +/*** Start of inlined file: jdsample.c ***/ #define JPEG_INTERNALS typedef JMETHOD(void, upsample1_ptr, @@ -184065,9 +184291,11 @@ jinit_upsampler (j_decompress_ptr cinfo) } } } -/********* End of inlined file: jdsample.c *********/ +/*** End of inlined file: jdsample.c ***/ -/********* Start of inlined file: jdtrans.c *********/ + + +/*** Start of inlined file: jdtrans.c ***/ #define JPEG_INTERNALS LOCAL(void) transdecode_master_selection JPP((j_decompress_ptr cinfo)); @@ -184145,9 +184373,10 @@ transdecode_master_selection (j_decompress_ptr cinfo) cinfo->progress->total_passes = 1; } } -/********* End of inlined file: jdtrans.c *********/ +/*** End of inlined file: jdtrans.c ***/ -/********* Start of inlined file: jfdctflt.c *********/ + +/*** Start of inlined file: jfdctflt.c ***/ #define JPEG_INTERNALS #ifdef DCT_FLOAT_SUPPORTED @@ -184253,9 +184482,10 @@ jpeg_fdct_float (FAST_FLOAT * data) } #endif /* DCT_FLOAT_SUPPORTED */ -/********* End of inlined file: jfdctflt.c *********/ +/*** End of inlined file: jfdctflt.c ***/ -/********* Start of inlined file: jfdctint.c *********/ + +/*** Start of inlined file: jfdctint.c ***/ #define JPEG_INTERNALS #ifdef DCT_ISLOW_SUPPORTED @@ -184424,13 +184654,13 @@ jpeg_fdct_islow (DCTELEM * data) } #endif /* DCT_ISLOW_SUPPORTED */ -/********* End of inlined file: jfdctint.c *********/ +/*** End of inlined file: jfdctint.c ***/ #undef CONST_BITS #undef MULTIPLY #undef FIX_0_541196100 -/********* Start of inlined file: jfdctfst.c *********/ +/*** Start of inlined file: jfdctfst.c ***/ #define JPEG_INTERNALS #ifdef DCT_IFAST_SUPPORTED @@ -184558,11 +184788,12 @@ jpeg_fdct_ifast (DCTELEM * data) } #endif /* DCT_IFAST_SUPPORTED */ -/********* End of inlined file: jfdctfst.c *********/ +/*** End of inlined file: jfdctfst.c ***/ + #undef FIX_0_541196100 -/********* Start of inlined file: jidctflt.c *********/ +/*** Start of inlined file: jidctflt.c ***/ #define JPEG_INTERNALS #ifdef DCT_FLOAT_SUPPORTED @@ -184720,7 +184951,8 @@ jpeg_idct_float (j_decompress_ptr cinfo, jpeg_component_info * compptr, } #endif /* DCT_FLOAT_SUPPORTED */ -/********* End of inlined file: jidctflt.c *********/ +/*** End of inlined file: jidctflt.c ***/ + #undef CONST_BITS #undef FIX_1_847759065 @@ -184728,7 +184960,7 @@ jpeg_idct_float (j_decompress_ptr cinfo, jpeg_component_info * compptr, #undef DEQUANTIZE #undef DESCALE -/********* Start of inlined file: jidctfst.c *********/ +/*** Start of inlined file: jidctfst.c ***/ #define JPEG_INTERNALS #ifdef DCT_IFAST_SUPPORTED @@ -184962,14 +185194,15 @@ jpeg_idct_ifast (j_decompress_ptr cinfo, jpeg_component_info * compptr, } #endif /* DCT_IFAST_SUPPORTED */ -/********* End of inlined file: jidctfst.c *********/ +/*** End of inlined file: jidctfst.c ***/ + #undef CONST_BITS #undef FIX_1_847759065 #undef MULTIPLY #undef DEQUANTIZE -/********* Start of inlined file: jidctint.c *********/ +/*** Start of inlined file: jidctint.c ***/ #define JPEG_INTERNALS #ifdef DCT_ISLOW_SUPPORTED @@ -185222,9 +185455,11 @@ jpeg_idct_islow (j_decompress_ptr cinfo, jpeg_component_info * compptr, } #endif /* DCT_ISLOW_SUPPORTED */ -/********* End of inlined file: jidctint.c *********/ +/*** End of inlined file: jidctint.c ***/ -/********* Start of inlined file: jidctred.c *********/ + + +/*** Start of inlined file: jidctred.c ***/ #define JPEG_INTERNALS #ifdef IDCT_SCALING_SUPPORTED @@ -185508,13 +185743,15 @@ jpeg_idct_1x1 (j_decompress_ptr cinfo, jpeg_component_info * compptr, } #endif /* IDCT_SCALING_SUPPORTED */ -/********* End of inlined file: jidctred.c *********/ +/*** End of inlined file: jidctred.c ***/ -/********* Start of inlined file: jmemmgr.c *********/ + +/*** Start of inlined file: jmemmgr.c ***/ #define JPEG_INTERNALS #define AM_MEMORY_MANAGER /* we define jvirt_Xarray_control structs */ -/********* Start of inlined file: jmemsys.h *********/ + +/*** Start of inlined file: jmemsys.h ***/ #ifndef __jmemsys_h__ #define __jmemsys_h__ @@ -185603,7 +185840,9 @@ EXTERN(long) jpeg_mem_init JPP((j_common_ptr cinfo)); EXTERN(void) jpeg_mem_term JPP((j_common_ptr cinfo)); #endif -/********* End of inlined file: jmemsys.h *********/ +/*** End of inlined file: jmemsys.h ***/ + + /* import the system-dependent declarations */ #ifndef NO_GETENV #ifndef HAVE_STDLIB_H /* should declare getenv() */ @@ -186363,9 +186602,10 @@ jinit_memory_mgr (j_common_ptr cinfo) #endif } -/********* End of inlined file: jmemmgr.c *********/ +/*** End of inlined file: jmemmgr.c ***/ -/********* Start of inlined file: jmemnobs.c *********/ + +/*** Start of inlined file: jmemnobs.c ***/ #define JPEG_INTERNALS #ifndef HAVE_STDLIB_H /* should declare malloc(),free() */ @@ -186421,9 +186661,10 @@ GLOBAL(void) jpeg_mem_term (j_common_ptr cinfo) { } -/********* End of inlined file: jmemnobs.c *********/ +/*** End of inlined file: jmemnobs.c ***/ -/********* Start of inlined file: jquant1.c *********/ + +/*** Start of inlined file: jquant1.c ***/ #define JPEG_INTERNALS #ifdef QUANT_1PASS_SUPPORTED @@ -186973,9 +187214,10 @@ jinit_1pass_quantizer (j_decompress_ptr cinfo) } #endif /* QUANT_1PASS_SUPPORTED */ -/********* End of inlined file: jquant1.c *********/ +/*** End of inlined file: jquant1.c ***/ -/********* Start of inlined file: jquant2.c *********/ + +/*** Start of inlined file: jquant2.c ***/ #define JPEG_INTERNALS #ifdef QUANT_2PASS_SUPPORTED @@ -187825,9 +188067,10 @@ jinit_2pass_quantizer (j_decompress_ptr cinfo) } #endif /* QUANT_2PASS_SUPPORTED */ -/********* End of inlined file: jquant2.c *********/ +/*** End of inlined file: jquant2.c ***/ -/********* Start of inlined file: jutils.c *********/ + +/*** Start of inlined file: jutils.c ***/ #define JPEG_INTERNALS #if 0 /* This table is not actually needed in v6a */ @@ -187941,12 +188184,14 @@ jzero_far (void FAR * target, size_t bytestozero) } #endif } -/********* End of inlined file: jutils.c *********/ +/*** End of inlined file: jutils.c ***/ -/********* Start of inlined file: transupp.c *********/ + +/*** Start of inlined file: transupp.c ***/ #define JPEG_INTERNALS -/********* Start of inlined file: transupp.h *********/ + +/*** Start of inlined file: transupp.h ***/ #ifndef TRANSFORMS_SUPPORTED #define TRANSFORMS_SUPPORTED 1 /* 0 disables transform code */ #endif @@ -188007,7 +188252,9 @@ EXTERN(void) jcopy_markers_setup EXTERN(void) jcopy_markers_execute JPP((j_decompress_ptr srcinfo, j_compress_ptr dstinfo, JCOPY_OPTION option)); -/********* End of inlined file: transupp.h *********/ +/*** End of inlined file: transupp.h ***/ + + /* My own external interface */ #if TRANSFORMS_SUPPORTED @@ -188697,7 +188944,7 @@ jcopy_markers_execute (j_decompress_ptr srcinfo, j_compress_ptr dstinfo, #endif } } -/********* End of inlined file: transupp.c *********/ +/*** End of inlined file: transupp.c ***/ } #else @@ -188970,10 +189217,11 @@ bool juce_writeJPEGImageToStream (const Image& image, } END_JUCE_NAMESPACE -/********* End of inlined file: juce_JPEGLoader.cpp *********/ +/*** End of inlined file: juce_JPEGLoader.cpp ***/ -/********* Start of inlined file: juce_PNGLoader.cpp *********/ + +/*** Start of inlined file: juce_PNGLoader.cpp ***/ #ifdef _MSC_VER #pragma warning (push) #pragma warning (disable: 4390 4611) @@ -189010,8 +189258,8 @@ namespace pnglibNamespace #define NO_DUMMY_DECL #define PNG_SETJMP_NOT_SUPPORTED -/********* Start of inlined file: png.h *********/ +/*** Start of inlined file: png.h ***/ #ifndef PNG_H #define PNG_H @@ -189049,8 +189297,8 @@ namespace pnglibNamespace #endif -/********* Start of inlined file: pngconf.h *********/ +/*** Start of inlined file: pngconf.h ***/ #ifndef PNGCONF_H #define PNGCONF_H @@ -190160,7 +190408,7 @@ typedef z_stream FAR * png_zstreamp; #endif /* PNG_VERSION_INFO_ONLY */ #endif /* PNGCONF_H */ -/********* End of inlined file: pngconf.h *********/ +/*** End of inlined file: pngconf.h ***/ #ifdef _MSC_VER #pragma warning (disable: 4996 4100) @@ -192625,12 +192873,11 @@ png_infop info_ptr, png_uint_32 *res_x, png_uint_32 *res_y, int *unit_type)); #endif /* PNG_VERSION_INFO_ONLY */ #endif /* PNG_H */ -/********* End of inlined file: png.h *********/ +/*** End of inlined file: png.h ***/ #define PNG_NO_EXTERN -/********* Start of inlined file: png.c *********/ - +/*** Start of inlined file: png.c ***/ #define PNG_INTERNAL #define PNG_NO_EXTERN @@ -193308,10 +193555,11 @@ png_convert_size(size_t size) } #endif /* PNG_SIZE_T */ #endif /* defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) */ -/********* End of inlined file: png.c *********/ +/*** End of inlined file: png.c ***/ -/********* Start of inlined file: pngerror.c *********/ + +/*** Start of inlined file: pngerror.c ***/ #define PNG_INTERNAL #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) @@ -193590,10 +193838,10 @@ png_set_strip_error_numbers(png_structp png_ptr, png_uint_32 strip_mode) } #endif #endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */ -/********* End of inlined file: pngerror.c *********/ +/*** End of inlined file: pngerror.c ***/ -/********* Start of inlined file: pngget.c *********/ +/*** Start of inlined file: pngget.c ***/ #define PNG_INTERNAL #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) @@ -194465,10 +194713,10 @@ png_get_user_height_max (png_structp png_ptr) #endif /* ?PNG_SET_USER_LIMITS_SUPPORTED */ #endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */ -/********* End of inlined file: pngget.c *********/ +/*** End of inlined file: pngget.c ***/ -/********* Start of inlined file: pngmem.c *********/ +/*** Start of inlined file: pngmem.c ***/ #define PNG_INTERNAL #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) @@ -194999,10 +195247,10 @@ png_get_mem_ptr(png_structp png_ptr) } #endif /* PNG_USER_MEM_SUPPORTED */ #endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */ -/********* End of inlined file: pngmem.c *********/ +/*** End of inlined file: pngmem.c ***/ -/********* Start of inlined file: pngread.c *********/ +/*** Start of inlined file: pngread.c ***/ #define PNG_INTERNAL #if defined(PNG_READ_SUPPORTED) @@ -196316,10 +196564,10 @@ png_read_png(png_structp png_ptr, png_infop info_ptr, #endif /* PNG_INFO_IMAGE_SUPPORTED */ #endif /* PNG_NO_SEQUENTIAL_READ_SUPPORTED */ #endif /* PNG_READ_SUPPORTED */ -/********* End of inlined file: pngread.c *********/ +/*** End of inlined file: pngread.c ***/ -/********* Start of inlined file: pngpread.c *********/ +/*** Start of inlined file: pngpread.c ***/ #define PNG_INTERNAL #ifdef PNG_PROGRESSIVE_READ_SUPPORTED @@ -197849,10 +198097,10 @@ png_get_progressive_ptr(png_structp png_ptr) return png_ptr->io_ptr; } #endif /* PNG_PROGRESSIVE_READ_SUPPORTED */ -/********* End of inlined file: pngpread.c *********/ +/*** End of inlined file: pngpread.c ***/ -/********* Start of inlined file: pngrio.c *********/ +/*** Start of inlined file: pngrio.c ***/ #define PNG_INTERNAL #if defined(PNG_READ_SUPPORTED) @@ -197971,10 +198219,10 @@ png_set_read_fn(png_structp png_ptr, png_voidp io_ptr, #endif } #endif /* PNG_READ_SUPPORTED */ -/********* End of inlined file: pngrio.c *********/ +/*** End of inlined file: pngrio.c ***/ -/********* Start of inlined file: pngrtran.c *********/ +/*** Start of inlined file: pngrtran.c ***/ #define PNG_INTERNAL #if defined(PNG_READ_SUPPORTED) @@ -201942,10 +202190,10 @@ png_do_read_intrapixel(png_row_infop row_info, png_bytep row) } #endif /* PNG_MNG_FEATURES_SUPPORTED */ #endif /* PNG_READ_SUPPORTED */ -/********* End of inlined file: pngrtran.c *********/ +/*** End of inlined file: pngrtran.c ***/ -/********* Start of inlined file: pngrutil.c *********/ +/*** Start of inlined file: pngrutil.c ***/ #define PNG_INTERNAL #if defined(PNG_READ_SUPPORTED) @@ -204959,10 +205207,10 @@ defined(PNG_USER_TRANSFORM_PTR_SUPPORTED) png_ptr->flags |= PNG_FLAG_ROW_INIT; } #endif /* PNG_READ_SUPPORTED */ -/********* End of inlined file: pngrutil.c *********/ +/*** End of inlined file: pngrutil.c ***/ -/********* Start of inlined file: pngset.c *********/ +/*** Start of inlined file: pngset.c ***/ #define PNG_INTERNAL #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) @@ -206139,10 +206387,10 @@ png_set_user_limits (png_structp png_ptr, png_uint_32 user_width_max, #endif /* ?PNG_1_0_X */ #endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */ -/********* End of inlined file: pngset.c *********/ +/*** End of inlined file: pngset.c ***/ -/********* Start of inlined file: pngtrans.c *********/ +/*** Start of inlined file: pngtrans.c ***/ #define PNG_INTERNAL #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) @@ -206745,10 +206993,10 @@ png_get_user_transform_ptr(png_structp png_ptr) #endif } #endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */ -/********* End of inlined file: pngtrans.c *********/ +/*** End of inlined file: pngtrans.c ***/ -/********* Start of inlined file: pngwio.c *********/ +/*** Start of inlined file: pngwio.c ***/ #define PNG_INTERNAL #ifdef PNG_WRITE_SUPPORTED @@ -206925,10 +207173,10 @@ void *png_far_to_near(png_structp png_ptr,png_voidp ptr, int check) # endif # endif #endif /* PNG_WRITE_SUPPORTED */ -/********* End of inlined file: pngwio.c *********/ +/*** End of inlined file: pngwio.c ***/ -/********* Start of inlined file: pngwrite.c *********/ +/*** Start of inlined file: pngwrite.c ***/ #define PNG_INTERNAL #ifdef PNG_WRITE_SUPPORTED @@ -208273,10 +208521,10 @@ png_write_png(png_structp png_ptr, png_infop info_ptr, } #endif #endif /* PNG_WRITE_SUPPORTED */ -/********* End of inlined file: pngwrite.c *********/ +/*** End of inlined file: pngwrite.c ***/ -/********* Start of inlined file: pngwtran.c *********/ +/*** Start of inlined file: pngwtran.c ***/ #define PNG_INTERNAL #ifdef PNG_WRITE_SUPPORTED @@ -208792,10 +209040,10 @@ png_do_write_intrapixel(png_row_infop row_info, png_bytep row) } #endif /* PNG_MNG_FEATURES_SUPPORTED */ #endif /* PNG_WRITE_SUPPORTED */ -/********* End of inlined file: pngwtran.c *********/ +/*** End of inlined file: pngwtran.c ***/ -/********* Start of inlined file: pngwutil.c *********/ +/*** Start of inlined file: pngwutil.c ***/ #define PNG_INTERNAL #ifdef PNG_WRITE_SUPPORTED @@ -211277,7 +211525,7 @@ png_write_filtered_row(png_structp png_ptr, png_bytep filtered_row) #endif } #endif /* PNG_WRITE_SUPPORTED */ -/********* End of inlined file: pngwutil.c *********/ +/*** End of inlined file: pngwutil.c ***/ } #else @@ -211519,27 +211767,28 @@ bool juce_writePNGImageToStream (const Image& image, OutputStream& out) } END_JUCE_NAMESPACE -/********* End of inlined file: juce_PNGLoader.cpp *********/ +/*** End of inlined file: juce_PNGLoader.cpp ***/ #endif //============================================================================== -#if JUCE_WINDOWS - -/********* Start of inlined file: juce_win32_NativeCode.cpp *********/ +#if JUCE_BUILD_NATIVE + #if JUCE_WINDOWS +/*** Start of inlined file: juce_win32_NativeCode.cpp ***/ BEGIN_JUCE_NAMESPACE #define JUCE_INCLUDED_FILE 1 // Now include the actual code files.. -/********* Start of inlined file: juce_win32_DynamicLibraryLoader.cpp *********/ +/*** Start of inlined file: juce_win32_DynamicLibraryLoader.cpp ***/ // (This file gets included by juce_win32_NativeCode.cpp, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE -/********* Start of inlined file: juce_win32_DynamicLibraryLoader.h *********/ + +/*** Start of inlined file: juce_win32_DynamicLibraryLoader.h ***/ #ifndef __JUCE_WIN32_DYNAMICLIBRARYLOADER_JUCEHEADER__ #define __JUCE_WIN32_DYNAMICLIBRARYLOADER_JUCEHEADER__ @@ -211573,7 +211822,7 @@ private: #endif #endif // __JUCE_WIN32_DYNAMICLIBRARYLOADER_JUCEHEADER__ -/********* End of inlined file: juce_win32_DynamicLibraryLoader.h *********/ +/*** End of inlined file: juce_win32_DynamicLibraryLoader.h ***/ DynamicLibraryLoader::DynamicLibraryLoader (const String& name) { @@ -211591,9 +211840,11 @@ void* DynamicLibraryLoader::findProcAddress (const String& functionName) } #endif -/********* End of inlined file: juce_win32_DynamicLibraryLoader.cpp *********/ +/*** End of inlined file: juce_win32_DynamicLibraryLoader.cpp ***/ -/********* Start of inlined file: juce_win32_SystemStats.cpp *********/ + + +/*** Start of inlined file: juce_win32_SystemStats.cpp ***/ // (This file gets included by juce_win32_NativeCode.cpp, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -211962,9 +212213,10 @@ const String SystemStats::getFullUserName() } #endif -/********* End of inlined file: juce_win32_SystemStats.cpp *********/ +/*** End of inlined file: juce_win32_SystemStats.cpp ***/ -/********* Start of inlined file: juce_win32_Threads.cpp *********/ + +/*** Start of inlined file: juce_win32_Threads.cpp ***/ // (This file gets included by juce_win32_NativeCode.cpp, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -212329,9 +212581,10 @@ void InterProcessLock::exit() } #endif -/********* End of inlined file: juce_win32_Threads.cpp *********/ +/*** End of inlined file: juce_win32_Threads.cpp ***/ -/********* Start of inlined file: juce_win32_Files.cpp *********/ + +/*** Start of inlined file: juce_win32_Files.cpp ***/ // (This file gets included by juce_win32_NativeCode.cpp, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -213207,9 +213460,10 @@ void NamedPipe::cancelPendingReads() } #endif -/********* End of inlined file: juce_win32_Files.cpp *********/ +/*** End of inlined file: juce_win32_Files.cpp ***/ -/********* Start of inlined file: juce_win32_Network.cpp *********/ + +/*** Start of inlined file: juce_win32_Network.cpp ***/ // (This file gets included by juce_win32_NativeCode.cpp, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -213661,9 +213915,10 @@ bool PlatformUtilities::launchEmailWithAttachments (const String& targetEmailAdd } #endif -/********* End of inlined file: juce_win32_Network.cpp *********/ +/*** End of inlined file: juce_win32_Network.cpp ***/ -/********* Start of inlined file: juce_win32_PlatformUtils.cpp *********/ + +/*** Start of inlined file: juce_win32_PlatformUtils.cpp ***/ // (This file gets included by juce_win32_NativeCode.cpp, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -213865,11 +214120,11 @@ void PlatformUtilities::beep() } #endif -/********* End of inlined file: juce_win32_PlatformUtils.cpp *********/ +/*** End of inlined file: juce_win32_PlatformUtils.cpp ***/ #if ! JUCE_ONLY_BUILD_CORE_LIBRARY -/********* Start of inlined file: juce_win32_Messaging.cpp *********/ +/*** Start of inlined file: juce_win32_Messaging.cpp ***/ // (This file gets included by juce_win32_NativeCode.cpp, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -214137,9 +214392,11 @@ void MessageManager::doPlatformSpecificShutdown() } #endif -/********* End of inlined file: juce_win32_Messaging.cpp *********/ +/*** End of inlined file: juce_win32_Messaging.cpp ***/ -/********* Start of inlined file: juce_win32_Windowing.cpp *********/ + + +/*** Start of inlined file: juce_win32_Windowing.cpp ***/ // (This file gets included by juce_win32_NativeCode.cpp, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -217146,9 +217403,10 @@ bool DragAndDropContainer::performExternalDragDropOfText (const String& text) } #endif -/********* End of inlined file: juce_win32_Windowing.cpp *********/ +/*** End of inlined file: juce_win32_Windowing.cpp ***/ -/********* Start of inlined file: juce_win32_Fonts.cpp *********/ + +/*** Start of inlined file: juce_win32_Fonts.cpp ***/ // (This file gets included by juce_win32_NativeCode.cpp, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -217511,9 +217769,10 @@ const Typeface::Ptr Typeface::createSystemTypefaceFor (const Font& font) } #endif -/********* End of inlined file: juce_win32_Fonts.cpp *********/ +/*** End of inlined file: juce_win32_Fonts.cpp ***/ -/********* Start of inlined file: juce_win32_FileChooser.cpp *********/ + +/*** Start of inlined file: juce_win32_FileChooser.cpp ***/ // (This file gets included by juce_win32_NativeCode.cpp, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -217824,9 +218083,10 @@ void FileChooser::showPlatformDialog (Array& results, } #endif -/********* End of inlined file: juce_win32_FileChooser.cpp *********/ +/*** End of inlined file: juce_win32_FileChooser.cpp ***/ -/********* Start of inlined file: juce_win32_Misc.cpp *********/ + +/*** Start of inlined file: juce_win32_Misc.cpp ***/ // (This file gets included by juce_win32_NativeCode.cpp, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -217886,9 +218146,10 @@ const String SystemClipboard::getTextFromClipboard() throw() } #endif -/********* End of inlined file: juce_win32_Misc.cpp *********/ +/*** End of inlined file: juce_win32_Misc.cpp ***/ -/********* Start of inlined file: juce_win32_ActiveXComponent.cpp *********/ + +/*** Start of inlined file: juce_win32_ActiveXComponent.cpp ***/ // (This file gets included by juce_win32_NativeCode.cpp, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -218400,9 +218661,10 @@ void ActiveXControlComponent::setMouseEventsAllowed (const bool eventsCanReachCo } #endif -/********* End of inlined file: juce_win32_ActiveXComponent.cpp *********/ +/*** End of inlined file: juce_win32_ActiveXComponent.cpp ***/ -/********* Start of inlined file: juce_win32_QuickTimeMovieComponent.cpp *********/ + +/*** Start of inlined file: juce_win32_QuickTimeMovieComponent.cpp ***/ // (This file gets included by juce_win32_NativeCode.cpp, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE && JUCE_QUICKTIME @@ -218868,9 +219130,10 @@ void QuickTimeMovieComponent::setBoundsWithCorrectAspectRatio (const Rectangle& results, } #endif -/********* End of inlined file: juce_linux_FileChooser.cpp *********/ +/*** End of inlined file: juce_linux_FileChooser.cpp ***/ -/********* Start of inlined file: juce_linux_WebBrowserComponent.cpp *********/ + +/*** Start of inlined file: juce_linux_WebBrowserComponent.cpp ***/ // (This file gets included by juce_linux_NativeCode.cpp, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE && JUCE_WEB_BROWSER @@ -236754,19 +237040,19 @@ bool WebBrowserComponent::pageAboutToLoad (const String& url) } #endif -/********* End of inlined file: juce_linux_WebBrowserComponent.cpp *********/ +/*** End of inlined file: juce_linux_WebBrowserComponent.cpp ***/ #endif END_JUCE_NAMESPACE -/********* End of inlined file: juce_linux_NativeCode.cpp *********/ +/*** End of inlined file: juce_linux_NativeCode.cpp ***/ -#endif -#if JUCE_MAC || JUCE_IPHONE + #endif -/********* Start of inlined file: juce_mac_NativeCode.mm *********/ + #if JUCE_MAC || JUCE_IPHONE +/*** Start of inlined file: juce_mac_NativeCode.mm ***/ BEGIN_JUCE_NAMESPACE #undef Point @@ -236775,7 +237061,8 @@ BEGIN_JUCE_NAMESPACE // Now include the actual code files.. -/********* Start of inlined file: juce_mac_ObjCSuffix.h *********/ + +/*** Start of inlined file: juce_mac_ObjCSuffix.h ***/ #ifndef JUCE_ObjCExtraSuffix #define JUCE_ObjCExtraSuffix 3 #endif @@ -236783,9 +237070,10 @@ BEGIN_JUCE_NAMESPACE #define appendMacro1(a, b, c, d) a ## _ ## b ## _ ## c ## _ ## d #define appendMacro2(a, b, c, d) appendMacro1(a, b, c, d) #define MakeObjCClassName(rootName) appendMacro2 (rootName, JUCE_MAJOR_VERSION, JUCE_MINOR_VERSION, JUCE_ObjCExtraSuffix) -/********* End of inlined file: juce_mac_ObjCSuffix.h *********/ +/*** End of inlined file: juce_mac_ObjCSuffix.h ***/ -/********* Start of inlined file: juce_mac_Strings.mm *********/ + +/*** Start of inlined file: juce_mac_Strings.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -236943,9 +237231,10 @@ const String SystemClipboard::getTextFromClipboard() throw() #endif #endif -/********* End of inlined file: juce_mac_Strings.mm *********/ +/*** End of inlined file: juce_mac_Strings.mm ***/ -/********* Start of inlined file: juce_mac_SystemStats.mm *********/ + +/*** Start of inlined file: juce_mac_SystemStats.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -237190,9 +237479,10 @@ void PlatformUtilities::fpuReset() } #endif -/********* End of inlined file: juce_mac_SystemStats.mm *********/ +/*** End of inlined file: juce_mac_SystemStats.mm ***/ -/********* Start of inlined file: juce_mac_Network.mm *********/ + +/*** Start of inlined file: juce_mac_Network.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -237586,9 +237876,10 @@ int juce_seekInInternetFile (void* handle, int newPosition) } #endif -/********* End of inlined file: juce_mac_Network.mm *********/ +/*** End of inlined file: juce_mac_Network.mm ***/ -/********* Start of inlined file: juce_posix_NamedPipe.cpp *********/ + +/*** Start of inlined file: juce_posix_NamedPipe.cpp ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -237776,9 +238067,10 @@ int NamedPipe::write (const void* sourceBuffer, int numBytesToWrite, int timeOut } #endif -/********* End of inlined file: juce_posix_NamedPipe.cpp *********/ +/*** End of inlined file: juce_posix_NamedPipe.cpp ***/ -/********* Start of inlined file: juce_mac_Threads.mm *********/ + +/*** Start of inlined file: juce_mac_Threads.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -237873,10 +238165,10 @@ void Process::setPriority (ProcessPriority p) } #endif -/********* End of inlined file: juce_mac_Threads.mm *********/ +/*** End of inlined file: juce_mac_Threads.mm ***/ -/********* Start of inlined file: juce_posix_SharedCode.h *********/ +/*** Start of inlined file: juce_posix_SharedCode.h ***/ CriticalSection::CriticalSection() throw() { pthread_mutexattr_t atts; @@ -238333,9 +238625,10 @@ void InterProcessLock::exit() } } } -/********* End of inlined file: juce_posix_SharedCode.h *********/ +/*** End of inlined file: juce_posix_SharedCode.h ***/ -/********* Start of inlined file: juce_mac_Files.mm *********/ + +/*** Start of inlined file: juce_mac_Files.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -238850,11 +239143,11 @@ bool PlatformUtilities::isBundle (const String& filename) } #endif -/********* End of inlined file: juce_mac_Files.mm *********/ +/*** End of inlined file: juce_mac_Files.mm ***/ #if JUCE_IPHONE -/********* Start of inlined file: juce_iphone_MiscUtilities.mm *********/ +/*** Start of inlined file: juce_iphone_MiscUtilities.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -239019,11 +239312,12 @@ void juce_updateMultiMonitorInfo (Array & monitorCoords, const bool c #endif #endif -/********* End of inlined file: juce_iphone_MiscUtilities.mm *********/ +/*** End of inlined file: juce_iphone_MiscUtilities.mm ***/ + #else -/********* Start of inlined file: juce_mac_MiscUtilities.mm *********/ +/*** Start of inlined file: juce_mac_MiscUtilities.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -239256,11 +239550,13 @@ void juce_updateMultiMonitorInfo (Array >& monitorCoords, const #endif #endif -/********* End of inlined file: juce_mac_MiscUtilities.mm *********/ +/*** End of inlined file: juce_mac_MiscUtilities.mm ***/ + #endif -/********* Start of inlined file: juce_mac_Debugging.mm *********/ + +/*** Start of inlined file: juce_mac_Debugging.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -239301,12 +239597,12 @@ bool JUCE_CALLTYPE Process::isRunningUnderDebugger() } #endif -/********* End of inlined file: juce_mac_Debugging.mm *********/ +/*** End of inlined file: juce_mac_Debugging.mm ***/ #if ! JUCE_ONLY_BUILD_CORE_LIBRARY #if JUCE_IPHONE -/********* Start of inlined file: juce_mac_Fonts.mm *********/ +/*** Start of inlined file: juce_mac_Fonts.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -239799,9 +240095,11 @@ void Font::getPlatformDefaultFontNames (String& defaultSans, String& defaultSeri } #endif -/********* End of inlined file: juce_mac_Fonts.mm *********/ +/*** End of inlined file: juce_mac_Fonts.mm ***/ -/********* Start of inlined file: juce_mac_CoreGraphicsContext.mm *********/ + + +/*** Start of inlined file: juce_mac_CoreGraphicsContext.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -240509,9 +240807,10 @@ LowLevelGraphicsContext* CoreGraphicsImage::createLowLevelContext() } #endif -/********* End of inlined file: juce_mac_CoreGraphicsContext.mm *********/ +/*** End of inlined file: juce_mac_CoreGraphicsContext.mm ***/ -/********* Start of inlined file: juce_iphone_UIViewComponentPeer.mm *********/ + +/*** Start of inlined file: juce_iphone_UIViewComponentPeer.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -241350,9 +241649,10 @@ const int KeyPress::fastForwardKey = 0x30002; const int KeyPress::rewindKey = 0x30003; #endif -/********* End of inlined file: juce_iphone_UIViewComponentPeer.mm *********/ +/*** End of inlined file: juce_iphone_UIViewComponentPeer.mm ***/ -/********* Start of inlined file: juce_iphone_MessageManager.mm *********/ + +/*** Start of inlined file: juce_iphone_MessageManager.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -241606,9 +241906,10 @@ void* MessageManager::callFunctionOnMessageThread (MessageCallbackFunction* call } #endif -/********* End of inlined file: juce_iphone_MessageManager.mm *********/ +/*** End of inlined file: juce_iphone_MessageManager.mm ***/ -/********* Start of inlined file: juce_mac_FileChooser.mm *********/ + +/*** Start of inlined file: juce_mac_FileChooser.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -241758,9 +242059,10 @@ void FileChooser::showPlatformDialog (Array& results, #endif #endif -/********* End of inlined file: juce_mac_FileChooser.mm *********/ +/*** End of inlined file: juce_mac_FileChooser.mm ***/ -/********* Start of inlined file: juce_mac_OpenGLComponent.mm *********/ + +/*** Start of inlined file: juce_mac_OpenGLComponent.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE && JUCE_OPENGL @@ -242064,9 +242366,10 @@ void juce_glViewport (const int w, const int h) #endif #endif -/********* End of inlined file: juce_mac_OpenGLComponent.mm *********/ +/*** End of inlined file: juce_mac_OpenGLComponent.mm ***/ -/********* Start of inlined file: juce_mac_MouseCursor.mm *********/ + +/*** Start of inlined file: juce_mac_MouseCursor.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -242209,9 +242512,10 @@ void MouseCursor::showInWindow (ComponentPeer*) const throw() {} #endif #endif -/********* End of inlined file: juce_mac_MouseCursor.mm *********/ +/*** End of inlined file: juce_mac_MouseCursor.mm ***/ -/********* Start of inlined file: juce_mac_WebBrowserComponent.mm *********/ + +/*** Start of inlined file: juce_mac_WebBrowserComponent.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE && JUCE_WEB_BROWSER @@ -242514,9 +242818,10 @@ bool WebBrowserComponent::pageAboutToLoad (const String& url) #endif #endif -/********* End of inlined file: juce_mac_WebBrowserComponent.mm *********/ +/*** End of inlined file: juce_mac_WebBrowserComponent.mm ***/ -/********* Start of inlined file: juce_iphone_Audio.cpp *********/ + +/*** Start of inlined file: juce_iphone_Audio.cpp ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -243056,9 +243361,10 @@ AudioIODeviceType* juce_createAudioIODeviceType_iPhoneAudio() } #endif -/********* End of inlined file: juce_iphone_Audio.cpp *********/ +/*** End of inlined file: juce_iphone_Audio.cpp ***/ -/********* Start of inlined file: juce_mac_CoreMidi.cpp *********/ + +/*** Start of inlined file: juce_mac_CoreMidi.cpp ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -243727,11 +244033,11 @@ MidiInput* MidiInput::openDevice (int index, MidiInputCallback* callback) #endif #endif -/********* End of inlined file: juce_mac_CoreMidi.cpp *********/ +/*** End of inlined file: juce_mac_CoreMidi.cpp ***/ #else -/********* Start of inlined file: juce_mac_Fonts.mm *********/ +/*** Start of inlined file: juce_mac_Fonts.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -244224,11 +244530,11 @@ void Font::getPlatformDefaultFontNames (String& defaultSans, String& defaultSeri } #endif -/********* End of inlined file: juce_mac_Fonts.mm *********/ +/*** End of inlined file: juce_mac_Fonts.mm ***/ // (must go before juce_mac_CoreGraphicsContext.mm) -/********* Start of inlined file: juce_mac_CoreGraphicsContext.mm *********/ +/*** Start of inlined file: juce_mac_CoreGraphicsContext.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -244936,9 +245242,11 @@ LowLevelGraphicsContext* CoreGraphicsImage::createLowLevelContext() } #endif -/********* End of inlined file: juce_mac_CoreGraphicsContext.mm *********/ +/*** End of inlined file: juce_mac_CoreGraphicsContext.mm ***/ -/********* Start of inlined file: juce_mac_NSViewComponentPeer.mm *********/ + + +/*** Start of inlined file: juce_mac_NSViewComponentPeer.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -246479,9 +246787,10 @@ const int KeyPress::fastForwardKey = 0x30002; const int KeyPress::rewindKey = 0x30003; #endif -/********* End of inlined file: juce_mac_NSViewComponentPeer.mm *********/ +/*** End of inlined file: juce_mac_NSViewComponentPeer.mm ***/ -/********* Start of inlined file: juce_mac_MouseCursor.mm *********/ + +/*** Start of inlined file: juce_mac_MouseCursor.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -246624,9 +246933,10 @@ void MouseCursor::showInWindow (ComponentPeer*) const throw() {} #endif #endif -/********* End of inlined file: juce_mac_MouseCursor.mm *********/ +/*** End of inlined file: juce_mac_MouseCursor.mm ***/ -/********* Start of inlined file: juce_mac_NSViewComponent.mm *********/ + +/*** Start of inlined file: juce_mac_NSViewComponent.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -246751,9 +247061,10 @@ void NSViewComponent::paint (Graphics& g) } #endif -/********* End of inlined file: juce_mac_NSViewComponent.mm *********/ +/*** End of inlined file: juce_mac_NSViewComponent.mm ***/ -/********* Start of inlined file: juce_mac_AppleRemote.mm *********/ + +/*** Start of inlined file: juce_mac_AppleRemote.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -246996,9 +247307,10 @@ void AppleRemoteDevice::handleCallbackInternal() } #endif -/********* End of inlined file: juce_mac_AppleRemote.mm *********/ +/*** End of inlined file: juce_mac_AppleRemote.mm ***/ -/********* Start of inlined file: juce_mac_OpenGLComponent.mm *********/ + +/*** Start of inlined file: juce_mac_OpenGLComponent.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE && JUCE_OPENGL @@ -247302,9 +247614,10 @@ void juce_glViewport (const int w, const int h) #endif #endif -/********* End of inlined file: juce_mac_OpenGLComponent.mm *********/ +/*** End of inlined file: juce_mac_OpenGLComponent.mm ***/ -/********* Start of inlined file: juce_mac_MainMenu.mm *********/ + +/*** Start of inlined file: juce_mac_MainMenu.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -247814,9 +248127,10 @@ void initialiseMainMenu() } #endif -/********* End of inlined file: juce_mac_MainMenu.mm *********/ +/*** End of inlined file: juce_mac_MainMenu.mm ***/ -/********* Start of inlined file: juce_mac_FileChooser.mm *********/ + +/*** Start of inlined file: juce_mac_FileChooser.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -247966,9 +248280,10 @@ void FileChooser::showPlatformDialog (Array& results, #endif #endif -/********* End of inlined file: juce_mac_FileChooser.mm *********/ +/*** End of inlined file: juce_mac_FileChooser.mm ***/ -/********* Start of inlined file: juce_mac_QuickTimeMovieComponent.mm *********/ + +/*** Start of inlined file: juce_mac_QuickTimeMovieComponent.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE && JUCE_QUICKTIME @@ -248262,9 +248577,10 @@ bool juce_OpenQuickTimeMovieFromStream (InputStream* movieStream, Movie& result, #endif #endif -/********* End of inlined file: juce_mac_QuickTimeMovieComponent.mm *********/ +/*** End of inlined file: juce_mac_QuickTimeMovieComponent.mm ***/ -/********* Start of inlined file: juce_mac_AudioCDBurner.mm *********/ + +/*** Start of inlined file: juce_mac_AudioCDBurner.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE && JUCE_USE_CDBURNER @@ -248667,9 +248983,10 @@ void AudioCDReader::ejectDisk() } #endif -/********* End of inlined file: juce_mac_AudioCDBurner.mm *********/ +/*** End of inlined file: juce_mac_AudioCDBurner.mm ***/ -/********* Start of inlined file: juce_mac_MessageManager.mm *********/ + +/*** Start of inlined file: juce_mac_MessageManager.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -249138,9 +249455,10 @@ void* MessageManager::callFunctionOnMessageThread (MessageCallbackFunction* call } #endif -/********* End of inlined file: juce_mac_MessageManager.mm *********/ +/*** End of inlined file: juce_mac_MessageManager.mm ***/ -/********* Start of inlined file: juce_mac_WebBrowserComponent.mm *********/ + +/*** Start of inlined file: juce_mac_WebBrowserComponent.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE && JUCE_WEB_BROWSER @@ -249443,9 +249761,10 @@ bool WebBrowserComponent::pageAboutToLoad (const String& url) #endif #endif -/********* End of inlined file: juce_mac_WebBrowserComponent.mm *********/ +/*** End of inlined file: juce_mac_WebBrowserComponent.mm ***/ -/********* Start of inlined file: juce_mac_CoreAudio.cpp *********/ + +/*** Start of inlined file: juce_mac_CoreAudio.cpp ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -250730,9 +251049,10 @@ AudioIODeviceType* juce_createAudioIODeviceType_CoreAudio() #undef log #endif -/********* End of inlined file: juce_mac_CoreAudio.cpp *********/ +/*** End of inlined file: juce_mac_CoreAudio.cpp ***/ -/********* Start of inlined file: juce_mac_CoreMidi.cpp *********/ + +/*** Start of inlined file: juce_mac_CoreMidi.cpp ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE @@ -251401,9 +251721,10 @@ MidiInput* MidiInput::openDevice (int index, MidiInputCallback* callback) #endif #endif -/********* End of inlined file: juce_mac_CoreMidi.cpp *********/ +/*** End of inlined file: juce_mac_CoreMidi.cpp ***/ -/********* Start of inlined file: juce_mac_CameraDevice.mm *********/ + +/*** Start of inlined file: juce_mac_CameraDevice.mm ***/ // (This file gets included by juce_mac_NativeCode.mm, rather than being // compiled on its own). #if JUCE_INCLUDED_FILE && JUCE_QUICKTIME && JUCE_USE_CAMERA @@ -251782,12 +252103,14 @@ CameraDevice* CameraDevice::openDevice (int index, } #endif -/********* End of inlined file: juce_mac_CameraDevice.mm *********/ +/*** End of inlined file: juce_mac_CameraDevice.mm ***/ #endif #endif END_JUCE_NAMESPACE -/********* End of inlined file: juce_mac_NativeCode.mm *********/ +/*** End of inlined file: juce_mac_NativeCode.mm ***/ + + #endif #endif diff --git a/juce_amalgamated.h b/juce_amalgamated.h index 7ac860205c..34ad1e3b4c 100644 --- a/juce_amalgamated.h +++ b/juce_amalgamated.h @@ -1,10 +1,35 @@ +/* + ============================================================================== + + This file is part of the JUCE library - "Jules' Utility Class Extensions" + Copyright 2004-9 by Raw Material Software Ltd. + + ------------------------------------------------------------------------------ + + JUCE can be redistributed and/or modified under the terms of the GNU General + Public License (Version 2), as published by the Free Software Foundation. + A copy of the license is included in the JUCE distribution, or can be found + online at www.gnu.org/licenses. + + JUCE is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + ------------------------------------------------------------------------------ + + To release a closed-source product which uses JUCE, commercial licenses are + available: visit www.rawmaterialsoftware.com/juce for more information. + + ============================================================================== +*/ #ifndef __JUCE_AMALGAMATED_TEMPLATE_JUCEHEADER__ #define __JUCE_AMALGAMATED_TEMPLATE_JUCEHEADER__ #define DONT_AUTOLINK_TO_JUCE_LIBRARY 1 -/********* Start of inlined file: juce.h *********/ + +/*** Start of inlined file: juce.h ***/ #ifndef __JUCE_JUCEHEADER__ #define __JUCE_JUCEHEADER__ @@ -12,7 +37,7 @@ // (this includes things that need defining outside of the JUCE namespace) -/********* Start of inlined file: juce_StandardHeader.h *********/ +/*** Start of inlined file: juce_StandardHeader.h ***/ #ifndef __JUCE_STANDARDHEADER_JUCEHEADER__ #define __JUCE_STANDARDHEADER_JUCEHEADER__ @@ -21,7 +46,8 @@ #define JUCE_VERSION ((JUCE_MAJOR_VERSION << 16) + (JUCE_MINOR_VERSION << 8)) -/********* Start of inlined file: juce_TargetPlatform.h *********/ + +/*** Start of inlined file: juce_TargetPlatform.h ***/ #ifndef __JUCE_TARGETPLATFORM_JUCEHEADER__ #define __JUCE_TARGETPLATFORM_JUCEHEADER__ @@ -146,11 +172,12 @@ #endif #endif // __JUCE_TARGETPLATFORM_JUCEHEADER__ -/********* End of inlined file: juce_TargetPlatform.h *********/ +/*** End of inlined file: juce_TargetPlatform.h ***/ // (sets up the various JUCE_WINDOWS, JUCE_MAC, etc flags) -/********* Start of inlined file: juce_Config.h *********/ + +/*** Start of inlined file: juce_Config.h ***/ #ifndef __JUCE_CONFIG_JUCEHEADER__ #define __JUCE_CONFIG_JUCEHEADER__ @@ -297,7 +324,7 @@ #endif #endif -/********* End of inlined file: juce_Config.h *********/ +/*** End of inlined file: juce_Config.h ***/ #ifdef JUCE_NAMESPACE #define BEGIN_JUCE_NAMESPACE namespace JUCE_NAMESPACE { @@ -307,7 +334,8 @@ #define END_JUCE_NAMESPACE #endif -/********* Start of inlined file: juce_PlatformDefs.h *********/ + +/*** Start of inlined file: juce_PlatformDefs.h ***/ #ifndef __JUCE_PLATFORMDEFS_JUCEHEADER__ #define __JUCE_PLATFORMDEFS_JUCEHEADER__ @@ -460,7 +488,7 @@ #endif #endif // __JUCE_PLATFORMDEFS_JUCEHEADER__ -/********* End of inlined file: juce_PlatformDefs.h *********/ +/*** End of inlined file: juce_PlatformDefs.h ***/ // Now we'll include any OS headers we need.. (at this point we are outside the Juce namespace). #if JUCE_MSVC @@ -535,7 +563,8 @@ extern bool JUCE_PUBLIC_FUNCTION juce_isRunningUnderDebugger(); extern void JUCE_API juce_LogAssertion (const char* filename, const int lineNum) throw(); #endif -/********* Start of inlined file: juce_Memory.h *********/ + +/*** Start of inlined file: juce_Memory.h ***/ #ifndef __JUCE_MEMORY_JUCEHEADER__ #define __JUCE_MEMORY_JUCEHEADER__ @@ -642,9 +671,10 @@ template inline void deleteAndZero (Type& pointer) { delete pointer; pointer = 0; } #endif // __JUCE_MEMORY_JUCEHEADER__ -/********* End of inlined file: juce_Memory.h *********/ +/*** End of inlined file: juce_Memory.h ***/ -/********* Start of inlined file: juce_MathsFunctions.h *********/ + +/*** Start of inlined file: juce_MathsFunctions.h ***/ #ifndef __JUCE_MATHSFUNCTIONS_JUCEHEADER__ #define __JUCE_MATHSFUNCTIONS_JUCEHEADER__ @@ -791,9 +821,10 @@ inline int roundFloatToInt (const float value) throw() } #endif // __JUCE_MATHSFUNCTIONS_JUCEHEADER__ -/********* End of inlined file: juce_MathsFunctions.h *********/ +/*** End of inlined file: juce_MathsFunctions.h ***/ -/********* Start of inlined file: juce_ByteOrder.h *********/ + +/*** Start of inlined file: juce_ByteOrder.h ***/ #ifndef __JUCE_BYTEORDER_JUCEHEADER__ #define __JUCE_BYTEORDER_JUCEHEADER__ @@ -913,17 +944,20 @@ inline void ByteOrder::littleEndian24BitToChars (const int value, char* const de inline void ByteOrder::bigEndian24BitToChars (const int value, char* const destBytes) { destBytes[0] = (char)((value >> 16) & 0xff); destBytes[1] = (char)((value >> 8) & 0xff); destBytes[2] = (char)(value & 0xff); } #endif // __JUCE_BYTEORDER_JUCEHEADER__ -/********* End of inlined file: juce_ByteOrder.h *********/ +/*** End of inlined file: juce_ByteOrder.h ***/ -/********* Start of inlined file: juce_Logger.h *********/ + +/*** Start of inlined file: juce_Logger.h ***/ #ifndef __JUCE_LOGGER_JUCEHEADER__ #define __JUCE_LOGGER_JUCEHEADER__ -/********* Start of inlined file: juce_String.h *********/ + +/*** Start of inlined file: juce_String.h ***/ #ifndef __JUCE_STRING_JUCEHEADER__ #define __JUCE_STRING_JUCEHEADER__ -/********* Start of inlined file: juce_CharacterFunctions.h *********/ + +/*** Start of inlined file: juce_CharacterFunctions.h ***/ #ifndef __JUCE_CHARACTERFUNCTIONS_JUCEHEADER__ #define __JUCE_CHARACTERFUNCTIONS_JUCEHEADER__ @@ -1036,7 +1070,7 @@ public: }; #endif // __JUCE_CHARACTERFUNCTIONS_JUCEHEADER__ -/********* End of inlined file: juce_CharacterFunctions.h *********/ +/*** End of inlined file: juce_CharacterFunctions.h ***/ class JUCE_API String { @@ -1405,7 +1439,7 @@ const String JUCE_PUBLIC_FUNCTION operator+ (const juce_wchar* const string1, const String& string2) throw(); #endif // __JUCE_STRING_JUCEHEADER__ -/********* End of inlined file: juce_String.h *********/ +/*** End of inlined file: juce_String.h ***/ class JUCE_API Logger { @@ -1430,12 +1464,13 @@ protected: }; #endif // __JUCE_LOGGER_JUCEHEADER__ -/********* End of inlined file: juce_Logger.h *********/ +/*** End of inlined file: juce_Logger.h ***/ END_JUCE_NAMESPACE #endif // __JUCE_STANDARDHEADER_JUCEHEADER__ -/********* End of inlined file: juce_StandardHeader.h *********/ +/*** End of inlined file: juce_StandardHeader.h ***/ + BEGIN_JUCE_NAMESPACE @@ -1448,21 +1483,23 @@ BEGIN_JUCE_NAMESPACE // this is where all the class header files get brought in.. -/********* Start of inlined file: juce_core_includes.h *********/ +/*** Start of inlined file: juce_core_includes.h ***/ #ifndef __JUCE_JUCE_CORE_INCLUDES_INCLUDEFILES__ #define __JUCE_JUCE_CORE_INCLUDES_INCLUDEFILES__ #ifndef __JUCE_ARRAY_JUCEHEADER__ -/********* Start of inlined file: juce_Array.h *********/ +/*** Start of inlined file: juce_Array.h ***/ #ifndef __JUCE_ARRAY_JUCEHEADER__ #define __JUCE_ARRAY_JUCEHEADER__ -/********* Start of inlined file: juce_ArrayAllocationBase.h *********/ + +/*** Start of inlined file: juce_ArrayAllocationBase.h ***/ #ifndef __JUCE_ARRAYALLOCATIONBASE_JUCEHEADER__ #define __JUCE_ARRAYALLOCATIONBASE_JUCEHEADER__ -/********* Start of inlined file: juce_HeapBlock.h *********/ + +/*** Start of inlined file: juce_HeapBlock.h ***/ #ifndef __JUCE_HEAPBLOCK_JUCEHEADER__ #define __JUCE_HEAPBLOCK_JUCEHEADER__ @@ -1556,7 +1593,7 @@ private: }; #endif // __JUCE_HEAPBLOCK_JUCEHEADER__ -/********* End of inlined file: juce_HeapBlock.h *********/ +/*** End of inlined file: juce_HeapBlock.h ***/ template class ArrayAllocationBase : public TypeOfCriticalSectionToUse @@ -1612,9 +1649,10 @@ private: }; #endif // __JUCE_ARRAYALLOCATIONBASE_JUCEHEADER__ -/********* End of inlined file: juce_ArrayAllocationBase.h *********/ +/*** End of inlined file: juce_ArrayAllocationBase.h ***/ -/********* Start of inlined file: juce_ElementComparator.h *********/ + +/*** Start of inlined file: juce_ElementComparator.h ***/ #ifndef __JUCE_ELEMENTCOMPARATOR_JUCEHEADER__ #define __JUCE_ELEMENTCOMPARATOR_JUCEHEADER__ @@ -1816,9 +1854,10 @@ public: }; #endif // __JUCE_ELEMENTCOMPARATOR_JUCEHEADER__ -/********* End of inlined file: juce_ElementComparator.h *********/ +/*** End of inlined file: juce_ElementComparator.h ***/ -/********* Start of inlined file: juce_CriticalSection.h *********/ + +/*** Start of inlined file: juce_CriticalSection.h ***/ #ifndef __JUCE_CRITICALSECTION_JUCEHEADER__ #define __JUCE_CRITICALSECTION_JUCEHEADER__ @@ -1868,7 +1907,7 @@ public: }; #endif // __JUCE_CRITICALSECTION_JUCEHEADER__ -/********* End of inlined file: juce_CriticalSection.h *********/ +/*** End of inlined file: juce_CriticalSection.h ***/ template @@ -2536,7 +2575,8 @@ private: }; #endif // __JUCE_ARRAY_JUCEHEADER__ -/********* End of inlined file: juce_Array.h *********/ +/*** End of inlined file: juce_Array.h ***/ + #endif #ifndef __JUCE_ARRAYALLOCATIONBASE_JUCEHEADER__ @@ -2544,7 +2584,7 @@ private: #endif #ifndef __JUCE_BITARRAY_JUCEHEADER__ -/********* Start of inlined file: juce_BitArray.h *********/ +/*** Start of inlined file: juce_BitArray.h ***/ #ifndef __JUCE_BITARRAY_JUCEHEADER__ #define __JUCE_BITARRAY_JUCEHEADER__ @@ -2660,32 +2700,38 @@ private: }; #endif // __JUCE_BITARRAY_JUCEHEADER__ -/********* End of inlined file: juce_BitArray.h *********/ +/*** End of inlined file: juce_BitArray.h ***/ + #endif #ifndef __JUCE_DYNAMICOBJECT_JUCEHEADER__ -/********* Start of inlined file: juce_DynamicObject.h *********/ +/*** Start of inlined file: juce_DynamicObject.h ***/ #ifndef __JUCE_DYNAMICOBJECT_JUCEHEADER__ #define __JUCE_DYNAMICOBJECT_JUCEHEADER__ -/********* Start of inlined file: juce_NamedValueSet.h *********/ + +/*** Start of inlined file: juce_NamedValueSet.h ***/ #ifndef __JUCE_NAMEDVALUESET_JUCEHEADER__ #define __JUCE_NAMEDVALUESET_JUCEHEADER__ -/********* Start of inlined file: juce_Variant.h *********/ + +/*** Start of inlined file: juce_Variant.h ***/ #ifndef __JUCE_VARIANT_JUCEHEADER__ #define __JUCE_VARIANT_JUCEHEADER__ -/********* Start of inlined file: juce_OutputStream.h *********/ + +/*** Start of inlined file: juce_OutputStream.h ***/ #ifndef __JUCE_OUTPUTSTREAM_JUCEHEADER__ #define __JUCE_OUTPUTSTREAM_JUCEHEADER__ -/********* Start of inlined file: juce_InputStream.h *********/ + +/*** Start of inlined file: juce_InputStream.h ***/ #ifndef __JUCE_INPUTSTREAM_JUCEHEADER__ #define __JUCE_INPUTSTREAM_JUCEHEADER__ -/********* Start of inlined file: juce_MemoryBlock.h *********/ + +/*** Start of inlined file: juce_MemoryBlock.h ***/ #ifndef __JUCE_MEMORYBLOCK_JUCEHEADER__ #define __JUCE_MEMORYBLOCK_JUCEHEADER__ @@ -2770,7 +2816,7 @@ private: }; #endif // __JUCE_MEMORYBLOCK_JUCEHEADER__ -/********* End of inlined file: juce_MemoryBlock.h *********/ +/*** End of inlined file: juce_MemoryBlock.h ***/ class JUCE_API InputStream { @@ -2833,7 +2879,7 @@ protected: }; #endif // __JUCE_INPUTSTREAM_JUCEHEADER__ -/********* End of inlined file: juce_InputStream.h *********/ +/*** End of inlined file: juce_InputStream.h ***/ class JUCE_API OutputStream { @@ -2906,7 +2952,7 @@ protected: }; #endif // __JUCE_OUTPUTSTREAM_JUCEHEADER__ -/********* End of inlined file: juce_OutputStream.h *********/ +/*** End of inlined file: juce_OutputStream.h ***/ class JUCE_API DynamicObject; @@ -3027,7 +3073,7 @@ private: }; #endif // __JUCE_VARIANT_JUCEHEADER__ -/********* End of inlined file: juce_Variant.h *********/ +/*** End of inlined file: juce_Variant.h ***/ class JUCE_API NamedValueSet { @@ -3074,13 +3120,15 @@ private: }; #endif // __JUCE_NAMEDVALUESET_JUCEHEADER__ -/********* End of inlined file: juce_NamedValueSet.h *********/ +/*** End of inlined file: juce_NamedValueSet.h ***/ -/********* Start of inlined file: juce_ReferenceCountedObject.h *********/ + +/*** Start of inlined file: juce_ReferenceCountedObject.h ***/ #ifndef __JUCE_REFERENCECOUNTEDOBJECT_JUCEHEADER__ #define __JUCE_REFERENCECOUNTEDOBJECT_JUCEHEADER__ -/********* Start of inlined file: juce_Atomic.h *********/ + +/*** Start of inlined file: juce_Atomic.h ***/ #ifndef __JUCE_ATOMIC_JUCEHEADER__ #define __JUCE_ATOMIC_JUCEHEADER__ @@ -3134,7 +3182,7 @@ inline int32 Atomic::compareAndExchange (int32& destination, int32 newValue, int #endif #endif // __JUCE_ATOMIC_JUCEHEADER__ -/********* End of inlined file: juce_Atomic.h *********/ +/*** End of inlined file: juce_Atomic.h ***/ class JUCE_API ReferenceCountedObject { @@ -3271,7 +3319,7 @@ private: }; #endif // __JUCE_REFERENCECOUNTEDOBJECT_JUCEHEADER__ -/********* End of inlined file: juce_ReferenceCountedObject.h *********/ +/*** End of inlined file: juce_ReferenceCountedObject.h ***/ class JUCE_API DynamicObject : public ReferenceCountedObject { @@ -3307,7 +3355,8 @@ private: }; #endif // __JUCE_DYNAMICOBJECT_JUCEHEADER__ -/********* End of inlined file: juce_DynamicObject.h *********/ +/*** End of inlined file: juce_DynamicObject.h ***/ + #endif #ifndef __JUCE_ELEMENTCOMPARATOR_JUCEHEADER__ @@ -3324,11 +3373,12 @@ private: #endif #ifndef __JUCE_OWNEDARRAY_JUCEHEADER__ -/********* Start of inlined file: juce_OwnedArray.h *********/ +/*** Start of inlined file: juce_OwnedArray.h ***/ #ifndef __JUCE_OWNEDARRAY_JUCEHEADER__ #define __JUCE_OWNEDARRAY_JUCEHEADER__ -/********* Start of inlined file: juce_ScopedPointer.h *********/ + +/*** Start of inlined file: juce_ScopedPointer.h ***/ #ifndef __JUCE_SCOPEDPOINTER_JUCEHEADER__ #define __JUCE_SCOPEDPOINTER_JUCEHEADER__ @@ -3418,7 +3468,7 @@ private: }; #endif // __JUCE_SCOPEDPOINTER_JUCEHEADER__ -/********* End of inlined file: juce_ScopedPointer.h *********/ +/*** End of inlined file: juce_ScopedPointer.h ***/ template @@ -3894,20 +3944,23 @@ private: }; #endif // __JUCE_OWNEDARRAY_JUCEHEADER__ -/********* End of inlined file: juce_OwnedArray.h *********/ +/*** End of inlined file: juce_OwnedArray.h ***/ + #endif #ifndef __JUCE_PROPERTYSET_JUCEHEADER__ -/********* Start of inlined file: juce_PropertySet.h *********/ +/*** Start of inlined file: juce_PropertySet.h ***/ #ifndef __JUCE_PROPERTYSET_JUCEHEADER__ #define __JUCE_PROPERTYSET_JUCEHEADER__ -/********* Start of inlined file: juce_StringPairArray.h *********/ + +/*** Start of inlined file: juce_StringPairArray.h ***/ #ifndef __JUCE_STRINGPAIRARRAY_JUCEHEADER__ #define __JUCE_STRINGPAIRARRAY_JUCEHEADER__ -/********* Start of inlined file: juce_StringArray.h *********/ + +/*** Start of inlined file: juce_StringArray.h ***/ #ifndef __JUCE_STRINGARRAY_JUCEHEADER__ #define __JUCE_STRINGARRAY_JUCEHEADER__ @@ -4010,7 +4063,7 @@ private: }; #endif // __JUCE_STRINGARRAY_JUCEHEADER__ -/********* End of inlined file: juce_StringArray.h *********/ +/*** End of inlined file: juce_StringArray.h ***/ class JUCE_API StringPairArray { @@ -4063,21 +4116,25 @@ private: }; #endif // __JUCE_STRINGPAIRARRAY_JUCEHEADER__ -/********* End of inlined file: juce_StringPairArray.h *********/ +/*** End of inlined file: juce_StringPairArray.h ***/ -/********* Start of inlined file: juce_XmlElement.h *********/ + +/*** Start of inlined file: juce_XmlElement.h ***/ #ifndef __JUCE_XMLELEMENT_JUCEHEADER__ #define __JUCE_XMLELEMENT_JUCEHEADER__ -/********* Start of inlined file: juce_File.h *********/ + +/*** Start of inlined file: juce_File.h ***/ #ifndef __JUCE_FILE_JUCEHEADER__ #define __JUCE_FILE_JUCEHEADER__ -/********* Start of inlined file: juce_Time.h *********/ + +/*** Start of inlined file: juce_Time.h ***/ #ifndef __JUCE_TIME_JUCEHEADER__ #define __JUCE_TIME_JUCEHEADER__ -/********* Start of inlined file: juce_RelativeTime.h *********/ + +/*** Start of inlined file: juce_RelativeTime.h ***/ #ifndef __JUCE_RELATIVETIME_JUCEHEADER__ #define __JUCE_RELATIVETIME_JUCEHEADER__ @@ -4147,7 +4204,7 @@ private: }; #endif // __JUCE_RELATIVETIME_JUCEHEADER__ -/********* End of inlined file: juce_RelativeTime.h *********/ +/*** End of inlined file: juce_RelativeTime.h ***/ class JUCE_API Time { @@ -4265,7 +4322,7 @@ private: }; #endif // __JUCE_TIME_JUCEHEADER__ -/********* End of inlined file: juce_Time.h *********/ +/*** End of inlined file: juce_Time.h ***/ class FileInputStream; class FileOutputStream; @@ -4494,7 +4551,7 @@ private: }; #endif // __JUCE_FILE_JUCEHEADER__ -/********* End of inlined file: juce_File.h *********/ +/*** End of inlined file: juce_File.h ***/ #define forEachXmlChildElement(parentXmlElement, childElementVariableName) \ \ @@ -4603,6 +4660,8 @@ public: void insertChildElement (XmlElement* const newChildNode, int indexToInsertAt) throw(); + XmlElement* createNewChildElement (const String& tagName); + bool replaceChildElement (XmlElement* const currentChildElement, XmlElement* const newChildNode) throw(); @@ -4685,7 +4744,7 @@ private: }; #endif // __JUCE_XMLELEMENT_JUCEHEADER__ -/********* End of inlined file: juce_XmlElement.h *********/ +/*** End of inlined file: juce_XmlElement.h ***/ class JUCE_API PropertySet { @@ -4758,12 +4817,13 @@ private: }; #endif // __JUCE_PROPERTYSET_JUCEHEADER__ -/********* End of inlined file: juce_PropertySet.h *********/ +/*** End of inlined file: juce_PropertySet.h ***/ + #endif #ifndef __JUCE_REFERENCECOUNTEDARRAY_JUCEHEADER__ -/********* Start of inlined file: juce_ReferenceCountedArray.h *********/ +/*** Start of inlined file: juce_ReferenceCountedArray.h ***/ #ifndef __JUCE_REFERENCECOUNTEDARRAY_JUCEHEADER__ #define __JUCE_REFERENCECOUNTEDARRAY_JUCEHEADER__ @@ -5248,7 +5308,8 @@ private: }; #endif // __JUCE_REFERENCECOUNTEDARRAY_JUCEHEADER__ -/********* End of inlined file: juce_ReferenceCountedArray.h *********/ +/*** End of inlined file: juce_ReferenceCountedArray.h ***/ + #endif #ifndef __JUCE_REFERENCECOUNTEDOBJECT_JUCEHEADER__ @@ -5259,7 +5320,7 @@ private: #endif #ifndef __JUCE_SORTEDSET_JUCEHEADER__ -/********* Start of inlined file: juce_SortedSet.h *********/ +/*** Start of inlined file: juce_SortedSet.h ***/ #ifndef __JUCE_SORTEDSET_JUCEHEADER__ #define __JUCE_SORTEDSET_JUCEHEADER__ @@ -5677,12 +5738,13 @@ private: #endif #endif // __JUCE_SORTEDSET_JUCEHEADER__ -/********* End of inlined file: juce_SortedSet.h *********/ +/*** End of inlined file: juce_SortedSet.h ***/ + #endif #ifndef __JUCE_SPARSESET_JUCEHEADER__ -/********* Start of inlined file: juce_SparseSet.h *********/ +/*** Start of inlined file: juce_SparseSet.h ***/ #ifndef __JUCE_SPARSESET_JUCEHEADER__ #define __JUCE_SPARSESET_JUCEHEADER__ @@ -5939,24 +6001,28 @@ private: }; #endif // __JUCE_SPARSESET_JUCEHEADER__ -/********* End of inlined file: juce_SparseSet.h *********/ +/*** End of inlined file: juce_SparseSet.h ***/ + #endif #ifndef __JUCE_VALUE_JUCEHEADER__ -/********* Start of inlined file: juce_Value.h *********/ +/*** Start of inlined file: juce_Value.h ***/ #ifndef __JUCE_VALUE_JUCEHEADER__ #define __JUCE_VALUE_JUCEHEADER__ -/********* Start of inlined file: juce_AsyncUpdater.h *********/ + +/*** Start of inlined file: juce_AsyncUpdater.h ***/ #ifndef __JUCE_ASYNCUPDATER_JUCEHEADER__ #define __JUCE_ASYNCUPDATER_JUCEHEADER__ -/********* Start of inlined file: juce_MessageListener.h *********/ + +/*** Start of inlined file: juce_MessageListener.h ***/ #ifndef __JUCE_MESSAGELISTENER_JUCEHEADER__ #define __JUCE_MESSAGELISTENER_JUCEHEADER__ -/********* Start of inlined file: juce_Message.h *********/ + +/*** Start of inlined file: juce_Message.h ***/ #ifndef __JUCE_MESSAGE_JUCEHEADER__ #define __JUCE_MESSAGE_JUCEHEADER__ @@ -5996,7 +6062,7 @@ private: }; #endif // __JUCE_MESSAGE_JUCEHEADER__ -/********* End of inlined file: juce_Message.h *********/ +/*** End of inlined file: juce_Message.h ***/ class JUCE_API MessageListener { @@ -6016,7 +6082,7 @@ public: }; #endif // __JUCE_MESSAGELISTENER_JUCEHEADER__ -/********* End of inlined file: juce_MessageListener.h *********/ +/*** End of inlined file: juce_MessageListener.h ***/ class JUCE_API AsyncUpdater { @@ -6056,7 +6122,7 @@ private: }; #endif // __JUCE_ASYNCUPDATER_JUCEHEADER__ -/********* End of inlined file: juce_AsyncUpdater.h *********/ +/*** End of inlined file: juce_AsyncUpdater.h ***/ class JUCE_API Value { @@ -6143,28 +6209,33 @@ private: }; #endif // __JUCE_VALUE_JUCEHEADER__ -/********* End of inlined file: juce_Value.h *********/ +/*** End of inlined file: juce_Value.h ***/ + #endif #ifndef __JUCE_VALUETREE_JUCEHEADER__ -/********* Start of inlined file: juce_ValueTree.h *********/ +/*** Start of inlined file: juce_ValueTree.h ***/ #ifndef __JUCE_VALUETREE_JUCEHEADER__ #define __JUCE_VALUETREE_JUCEHEADER__ -/********* Start of inlined file: juce_UndoManager.h *********/ + +/*** Start of inlined file: juce_UndoManager.h ***/ #ifndef __JUCE_UNDOMANAGER_JUCEHEADER__ #define __JUCE_UNDOMANAGER_JUCEHEADER__ -/********* Start of inlined file: juce_ChangeBroadcaster.h *********/ + +/*** Start of inlined file: juce_ChangeBroadcaster.h ***/ #ifndef __JUCE_CHANGEBROADCASTER_JUCEHEADER__ #define __JUCE_CHANGEBROADCASTER_JUCEHEADER__ -/********* Start of inlined file: juce_ChangeListenerList.h *********/ + +/*** Start of inlined file: juce_ChangeListenerList.h ***/ #ifndef __JUCE_CHANGELISTENERLIST_JUCEHEADER__ #define __JUCE_CHANGELISTENERLIST_JUCEHEADER__ -/********* Start of inlined file: juce_ChangeListener.h *********/ + +/*** Start of inlined file: juce_ChangeListener.h ***/ #ifndef __JUCE_CHANGELISTENER_JUCEHEADER__ #define __JUCE_CHANGELISTENER_JUCEHEADER__ @@ -6177,9 +6248,10 @@ public: }; #endif // __JUCE_CHANGELISTENER_JUCEHEADER__ -/********* End of inlined file: juce_ChangeListener.h *********/ +/*** End of inlined file: juce_ChangeListener.h ***/ -/********* Start of inlined file: juce_ScopedLock.h *********/ + +/*** Start of inlined file: juce_ScopedLock.h ***/ #ifndef __JUCE_SCOPEDLOCK_JUCEHEADER__ #define __JUCE_SCOPEDLOCK_JUCEHEADER__ @@ -6216,7 +6288,7 @@ private: }; #endif // __JUCE_SCOPEDLOCK_JUCEHEADER__ -/********* End of inlined file: juce_ScopedLock.h *********/ +/*** End of inlined file: juce_ScopedLock.h ***/ class JUCE_API ChangeListenerList : public MessageListener { @@ -6253,7 +6325,7 @@ private: }; #endif // __JUCE_CHANGELISTENERLIST_JUCEHEADER__ -/********* End of inlined file: juce_ChangeListenerList.h *********/ +/*** End of inlined file: juce_ChangeListenerList.h ***/ class JUCE_API ChangeBroadcaster { @@ -6284,9 +6356,10 @@ private: }; #endif // __JUCE_CHANGEBROADCASTER_JUCEHEADER__ -/********* End of inlined file: juce_ChangeBroadcaster.h *********/ +/*** End of inlined file: juce_ChangeBroadcaster.h ***/ -/********* Start of inlined file: juce_UndoableAction.h *********/ + +/*** Start of inlined file: juce_UndoableAction.h ***/ #ifndef __JUCE_UNDOABLEACTION_JUCEHEADER__ #define __JUCE_UNDOABLEACTION_JUCEHEADER__ @@ -6306,7 +6379,7 @@ public: }; #endif // __JUCE_UNDOABLEACTION_JUCEHEADER__ -/********* End of inlined file: juce_UndoableAction.h *********/ +/*** End of inlined file: juce_UndoableAction.h ***/ class JUCE_API UndoManager : public ChangeBroadcaster { @@ -6365,7 +6438,7 @@ private: }; #endif // __JUCE_UNDOMANAGER_JUCEHEADER__ -/********* End of inlined file: juce_UndoManager.h *********/ +/*** End of inlined file: juce_UndoManager.h ***/ class JUCE_API ValueTree { @@ -6538,7 +6611,8 @@ private: }; #endif // __JUCE_VALUETREE_JUCEHEADER__ -/********* End of inlined file: juce_ValueTree.h *********/ +/*** End of inlined file: juce_ValueTree.h ***/ + #endif #ifndef __JUCE_VARIANT_JUCEHEADER__ @@ -6546,14 +6620,15 @@ private: #endif #ifndef __JUCE_VOIDARRAY_JUCEHEADER__ -/********* Start of inlined file: juce_VoidArray.h *********/ +/*** Start of inlined file: juce_VoidArray.h ***/ #ifndef __JUCE_VOIDARRAY_JUCEHEADER__ #define __JUCE_VOIDARRAY_JUCEHEADER__ typedef Array VoidArray; #endif // __JUCE_VOIDARRAY_JUCEHEADER__ -/********* End of inlined file: juce_VoidArray.h *********/ +/*** End of inlined file: juce_VoidArray.h ***/ + #endif #ifndef __JUCE_ATOMIC_JUCEHEADER__ @@ -6564,7 +6639,7 @@ typedef Array VoidArray; #endif #ifndef __JUCE_FILELOGGER_JUCEHEADER__ -/********* Start of inlined file: juce_FileLogger.h *********/ +/*** Start of inlined file: juce_FileLogger.h ***/ #ifndef __JUCE_FILELOGGER_JUCEHEADER__ #define __JUCE_FILELOGGER_JUCEHEADER__ @@ -6599,12 +6674,13 @@ private: }; #endif // __JUCE_FILELOGGER_JUCEHEADER__ -/********* End of inlined file: juce_FileLogger.h *********/ +/*** End of inlined file: juce_FileLogger.h ***/ + #endif #ifndef __JUCE_INITIALISATION_JUCEHEADER__ -/********* Start of inlined file: juce_Initialisation.h *********/ +/*** Start of inlined file: juce_Initialisation.h ***/ #ifndef __JUCE_INITIALISATION_JUCEHEADER__ #define __JUCE_INITIALISATION_JUCEHEADER__ @@ -6617,7 +6693,8 @@ void JUCE_PUBLIC_FUNCTION initialiseJuce_NonGUI(); void JUCE_PUBLIC_FUNCTION shutdownJuce_NonGUI(); #endif // __JUCE_INITIALISATION_JUCEHEADER__ -/********* End of inlined file: juce_Initialisation.h *********/ +/*** End of inlined file: juce_Initialisation.h ***/ + #endif #ifndef __JUCE_LOGGER_JUCEHEADER__ @@ -6631,7 +6708,7 @@ void JUCE_PUBLIC_FUNCTION shutdownJuce_NonGUI(); #endif #ifndef __JUCE_PERFORMANCECOUNTER_JUCEHEADER__ -/********* Start of inlined file: juce_PerformanceCounter.h *********/ +/*** Start of inlined file: juce_PerformanceCounter.h ***/ #ifndef __JUCE_PERFORMANCECOUNTER_JUCEHEADER__ #define __JUCE_PERFORMANCECOUNTER_JUCEHEADER__ @@ -6663,7 +6740,8 @@ private: }; #endif // __JUCE_PERFORMANCECOUNTER_JUCEHEADER__ -/********* End of inlined file: juce_PerformanceCounter.h *********/ +/*** End of inlined file: juce_PerformanceCounter.h ***/ + #endif #ifndef __JUCE_PLATFORMDEFS_JUCEHEADER__ @@ -6671,7 +6749,7 @@ private: #endif #ifndef __JUCE_PLATFORMUTILITIES_JUCEHEADER__ -/********* Start of inlined file: juce_PlatformUtilities.h *********/ +/*** Start of inlined file: juce_PlatformUtilities.h ***/ #ifndef __JUCE_PLATFORMUTILITIES_JUCEHEADER__ #define __JUCE_PLATFORMUTILITIES_JUCEHEADER__ @@ -6834,12 +6912,13 @@ private: #endif #endif // __JUCE_PLATFORMUTILITIES_JUCEHEADER__ -/********* End of inlined file: juce_PlatformUtilities.h *********/ +/*** End of inlined file: juce_PlatformUtilities.h ***/ + #endif #ifndef __JUCE_RANDOM_JUCEHEADER__ -/********* Start of inlined file: juce_Random.h *********/ +/*** Start of inlined file: juce_Random.h ***/ #ifndef __JUCE_RANDOM_JUCEHEADER__ #define __JUCE_RANDOM_JUCEHEADER__ @@ -6880,7 +6959,8 @@ private: }; #endif // __JUCE_RANDOM_JUCEHEADER__ -/********* End of inlined file: juce_Random.h *********/ +/*** End of inlined file: juce_Random.h ***/ + #endif #ifndef __JUCE_RELATIVETIME_JUCEHEADER__ @@ -6888,7 +6968,7 @@ private: #endif #ifndef __JUCE_SINGLETON_JUCEHEADER__ -/********* Start of inlined file: juce_Singleton.h *********/ +/*** Start of inlined file: juce_Singleton.h ***/ #ifndef __JUCE_SINGLETON_JUCEHEADER__ #define __JUCE_SINGLETON_JUCEHEADER__ @@ -7038,7 +7118,8 @@ private: classname* classname::_singletonInstance = 0; #endif // __JUCE_SINGLETON_JUCEHEADER__ -/********* End of inlined file: juce_Singleton.h *********/ +/*** End of inlined file: juce_Singleton.h ***/ + #endif #ifndef __JUCE_STANDARDHEADER_JUCEHEADER__ @@ -7046,7 +7127,7 @@ private: #endif #ifndef __JUCE_SYSTEMSTATS_JUCEHEADER__ -/********* Start of inlined file: juce_SystemStats.h *********/ +/*** Start of inlined file: juce_SystemStats.h ***/ #ifndef __JUCE_SYSTEMSTATS_JUCEHEADER__ #define __JUCE_SYSTEMSTATS_JUCEHEADER__ @@ -7122,7 +7203,8 @@ public: }; #endif // __JUCE_SYSTEMSTATS_JUCEHEADER__ -/********* End of inlined file: juce_SystemStats.h *********/ +/*** End of inlined file: juce_SystemStats.h ***/ + #endif #ifndef __JUCE_TARGETPLATFORM_JUCEHEADER__ @@ -7133,7 +7215,7 @@ public: #endif #ifndef __JUCE_UUID_JUCEHEADER__ -/********* Start of inlined file: juce_Uuid.h *********/ +/*** Start of inlined file: juce_Uuid.h ***/ #ifndef __JUCE_UUID_JUCEHEADER__ #define __JUCE_UUID_JUCEHEADER__ @@ -7180,12 +7262,13 @@ private: }; #endif // __JUCE_UUID_JUCEHEADER__ -/********* End of inlined file: juce_Uuid.h *********/ +/*** End of inlined file: juce_Uuid.h ***/ + #endif #ifndef __JUCE_BLOWFISH_JUCEHEADER__ -/********* Start of inlined file: juce_BlowFish.h *********/ +/*** Start of inlined file: juce_BlowFish.h ***/ #ifndef __JUCE_BLOWFISH_JUCEHEADER__ #define __JUCE_BLOWFISH_JUCEHEADER__ @@ -7215,12 +7298,13 @@ private: }; #endif // __JUCE_BLOWFISH_JUCEHEADER__ -/********* End of inlined file: juce_BlowFish.h *********/ +/*** End of inlined file: juce_BlowFish.h ***/ + #endif #ifndef __JUCE_MD5_JUCEHEADER__ -/********* Start of inlined file: juce_MD5.h *********/ +/*** Start of inlined file: juce_MD5.h ***/ #ifndef __JUCE_MD5_JUCEHEADER__ #define __JUCE_MD5_JUCEHEADER__ @@ -7276,12 +7360,13 @@ private: }; #endif // __JUCE_MD5_JUCEHEADER__ -/********* End of inlined file: juce_MD5.h *********/ +/*** End of inlined file: juce_MD5.h ***/ + #endif #ifndef __JUCE_PRIMES_JUCEHEADER__ -/********* Start of inlined file: juce_Primes.h *********/ +/*** Start of inlined file: juce_Primes.h ***/ #ifndef __JUCE_PRIMES_JUCEHEADER__ #define __JUCE_PRIMES_JUCEHEADER__ @@ -7299,12 +7384,13 @@ public: }; #endif // __JUCE_PRIMES_JUCEHEADER__ -/********* End of inlined file: juce_Primes.h *********/ +/*** End of inlined file: juce_Primes.h ***/ + #endif #ifndef __JUCE_RSAKEY_JUCEHEADER__ -/********* Start of inlined file: juce_RSAKey.h *********/ +/*** Start of inlined file: juce_RSAKey.h ***/ #ifndef __JUCE_RSAKEY_JUCEHEADER__ #define __JUCE_RSAKEY_JUCEHEADER__ @@ -7335,12 +7421,13 @@ protected: }; #endif // __JUCE_RSAKEY_JUCEHEADER__ -/********* End of inlined file: juce_RSAKey.h *********/ +/*** End of inlined file: juce_RSAKey.h ***/ + #endif #ifndef __JUCE_DIRECTORYITERATOR_JUCEHEADER__ -/********* Start of inlined file: juce_DirectoryIterator.h *********/ +/*** Start of inlined file: juce_DirectoryIterator.h ***/ #ifndef __JUCE_DIRECTORYITERATOR_JUCEHEADER__ #define __JUCE_DIRECTORYITERATOR_JUCEHEADER__ @@ -7376,7 +7463,8 @@ private: }; #endif // __JUCE_DIRECTORYITERATOR_JUCEHEADER__ -/********* End of inlined file: juce_DirectoryIterator.h *********/ +/*** End of inlined file: juce_DirectoryIterator.h ***/ + #endif #ifndef __JUCE_FILE_JUCEHEADER__ @@ -7384,7 +7472,7 @@ private: #endif #ifndef __JUCE_FILEINPUTSTREAM_JUCEHEADER__ -/********* Start of inlined file: juce_FileInputStream.h *********/ +/*** Start of inlined file: juce_FileInputStream.h ***/ #ifndef __JUCE_FILEINPUTSTREAM_JUCEHEADER__ #define __JUCE_FILEINPUTSTREAM_JUCEHEADER__ @@ -7417,12 +7505,13 @@ private: }; #endif // __JUCE_FILEINPUTSTREAM_JUCEHEADER__ -/********* End of inlined file: juce_FileInputStream.h *********/ +/*** End of inlined file: juce_FileInputStream.h ***/ + #endif #ifndef __JUCE_FILEOUTPUTSTREAM_JUCEHEADER__ -/********* Start of inlined file: juce_FileOutputStream.h *********/ +/*** Start of inlined file: juce_FileOutputStream.h ***/ #ifndef __JUCE_FILEOUTPUTSTREAM_JUCEHEADER__ #define __JUCE_FILEOUTPUTSTREAM_JUCEHEADER__ @@ -7455,12 +7544,13 @@ private: }; #endif // __JUCE_FILEOUTPUTSTREAM_JUCEHEADER__ -/********* End of inlined file: juce_FileOutputStream.h *********/ +/*** End of inlined file: juce_FileOutputStream.h ***/ + #endif #ifndef __JUCE_FILESEARCHPATH_JUCEHEADER__ -/********* Start of inlined file: juce_FileSearchPath.h *********/ +/*** Start of inlined file: juce_FileSearchPath.h ***/ #ifndef __JUCE_FILESEARCHPATH_JUCEHEADER__ #define __JUCE_FILESEARCHPATH_JUCEHEADER__ @@ -7514,12 +7604,13 @@ private: }; #endif // __JUCE_FILESEARCHPATH_JUCEHEADER__ -/********* End of inlined file: juce_FileSearchPath.h *********/ +/*** End of inlined file: juce_FileSearchPath.h ***/ + #endif #ifndef __JUCE_NAMEDPIPE_JUCEHEADER__ -/********* Start of inlined file: juce_NamedPipe.h *********/ +/*** Start of inlined file: juce_NamedPipe.h ***/ #ifndef __JUCE_NAMEDPIPE_JUCEHEADER__ #define __JUCE_NAMEDPIPE_JUCEHEADER__ @@ -7561,12 +7652,13 @@ private: }; #endif // __JUCE_NAMEDPIPE_JUCEHEADER__ -/********* End of inlined file: juce_NamedPipe.h *********/ +/*** End of inlined file: juce_NamedPipe.h ***/ + #endif #ifndef __JUCE_TEMPORARYFILE_JUCEHEADER__ -/********* Start of inlined file: juce_TemporaryFile.h *********/ +/*** Start of inlined file: juce_TemporaryFile.h ***/ #ifndef __JUCE_TEMPORARYFILE_JUCEHEADER__ #define __JUCE_TEMPORARYFILE_JUCEHEADER__ @@ -7610,16 +7702,18 @@ private: }; #endif // __JUCE_TEMPORARYFILE_JUCEHEADER__ -/********* End of inlined file: juce_TemporaryFile.h *********/ +/*** End of inlined file: juce_TemporaryFile.h ***/ + #endif #ifndef __JUCE_ZIPFILE_JUCEHEADER__ -/********* Start of inlined file: juce_ZipFile.h *********/ +/*** Start of inlined file: juce_ZipFile.h ***/ #ifndef __JUCE_ZIPFILE_JUCEHEADER__ #define __JUCE_ZIPFILE_JUCEHEADER__ -/********* Start of inlined file: juce_InputSource.h *********/ + +/*** Start of inlined file: juce_InputSource.h ***/ #ifndef __JUCE_INPUTSOURCE_JUCEHEADER__ #define __JUCE_INPUTSOURCE_JUCEHEADER__ @@ -7641,7 +7735,7 @@ public: }; #endif // __JUCE_INPUTSOURCE_JUCEHEADER__ -/********* End of inlined file: juce_InputSource.h *********/ +/*** End of inlined file: juce_InputSource.h ***/ class JUCE_API ZipFile { @@ -7706,12 +7800,13 @@ private: }; #endif // __JUCE_ZIPFILE_JUCEHEADER__ -/********* End of inlined file: juce_ZipFile.h *********/ +/*** End of inlined file: juce_ZipFile.h ***/ + #endif #ifndef __JUCE_SOCKET_JUCEHEADER__ -/********* Start of inlined file: juce_Socket.h *********/ +/*** Start of inlined file: juce_Socket.h ***/ #ifndef __JUCE_SOCKET_JUCEHEADER__ #define __JUCE_SOCKET_JUCEHEADER__ @@ -7812,12 +7907,13 @@ private: }; #endif // __JUCE_SOCKET_JUCEHEADER__ -/********* End of inlined file: juce_Socket.h *********/ +/*** End of inlined file: juce_Socket.h ***/ + #endif #ifndef __JUCE_URL_JUCEHEADER__ -/********* Start of inlined file: juce_URL.h *********/ +/*** Start of inlined file: juce_URL.h ***/ #ifndef __JUCE_URL_JUCEHEADER__ #define __JUCE_URL_JUCEHEADER__ @@ -7898,12 +7994,13 @@ private: }; #endif // __JUCE_URL_JUCEHEADER__ -/********* End of inlined file: juce_URL.h *********/ +/*** End of inlined file: juce_URL.h ***/ + #endif #ifndef __JUCE_BUFFEREDINPUTSTREAM_JUCEHEADER__ -/********* Start of inlined file: juce_BufferedInputStream.h *********/ +/*** Start of inlined file: juce_BufferedInputStream.h ***/ #ifndef __JUCE_BUFFEREDINPUTSTREAM_JUCEHEADER__ #define __JUCE_BUFFEREDINPUTSTREAM_JUCEHEADER__ @@ -7939,12 +8036,13 @@ private: }; #endif // __JUCE_BUFFEREDINPUTSTREAM_JUCEHEADER__ -/********* End of inlined file: juce_BufferedInputStream.h *********/ +/*** End of inlined file: juce_BufferedInputStream.h ***/ + #endif #ifndef __JUCE_FILEINPUTSOURCE_JUCEHEADER__ -/********* Start of inlined file: juce_FileInputSource.h *********/ +/*** Start of inlined file: juce_FileInputSource.h ***/ #ifndef __JUCE_FILEINPUTSOURCE_JUCEHEADER__ #define __JUCE_FILEINPUTSOURCE_JUCEHEADER__ @@ -7969,12 +8067,13 @@ private: }; #endif // __JUCE_FILEINPUTSOURCE_JUCEHEADER__ -/********* End of inlined file: juce_FileInputSource.h *********/ +/*** End of inlined file: juce_FileInputSource.h ***/ + #endif #ifndef __JUCE_GZIPCOMPRESSOROUTPUTSTREAM_JUCEHEADER__ -/********* Start of inlined file: juce_GZIPCompressorOutputStream.h *********/ +/*** Start of inlined file: juce_GZIPCompressorOutputStream.h ***/ #ifndef __JUCE_GZIPCOMPRESSOROUTPUTSTREAM_JUCEHEADER__ #define __JUCE_GZIPCOMPRESSOROUTPUTSTREAM_JUCEHEADER__ @@ -8010,12 +8109,13 @@ private: }; #endif // __JUCE_GZIPCOMPRESSOROUTPUTSTREAM_JUCEHEADER__ -/********* End of inlined file: juce_GZIPCompressorOutputStream.h *********/ +/*** End of inlined file: juce_GZIPCompressorOutputStream.h ***/ + #endif #ifndef __JUCE_GZIPDECOMPRESSORINPUTSTREAM_JUCEHEADER__ -/********* Start of inlined file: juce_GZIPDecompressorInputStream.h *********/ +/*** Start of inlined file: juce_GZIPDecompressorInputStream.h ***/ #ifndef __JUCE_GZIPDECOMPRESSORINPUTSTREAM_JUCEHEADER__ #define __JUCE_GZIPDECOMPRESSORINPUTSTREAM_JUCEHEADER__ @@ -8056,7 +8156,8 @@ private: }; #endif // __JUCE_GZIPDECOMPRESSORINPUTSTREAM_JUCEHEADER__ -/********* End of inlined file: juce_GZIPDecompressorInputStream.h *********/ +/*** End of inlined file: juce_GZIPDecompressorInputStream.h ***/ + #endif #ifndef __JUCE_INPUTSOURCE_JUCEHEADER__ @@ -8067,7 +8168,7 @@ private: #endif #ifndef __JUCE_MEMORYINPUTSTREAM_JUCEHEADER__ -/********* Start of inlined file: juce_MemoryInputStream.h *********/ +/*** Start of inlined file: juce_MemoryInputStream.h ***/ #ifndef __JUCE_MEMORYINPUTSTREAM_JUCEHEADER__ #define __JUCE_MEMORYINPUTSTREAM_JUCEHEADER__ @@ -8096,12 +8197,13 @@ private: }; #endif // __JUCE_MEMORYINPUTSTREAM_JUCEHEADER__ -/********* End of inlined file: juce_MemoryInputStream.h *********/ +/*** End of inlined file: juce_MemoryInputStream.h ***/ + #endif #ifndef __JUCE_MEMORYOUTPUTSTREAM_JUCEHEADER__ -/********* Start of inlined file: juce_MemoryOutputStream.h *********/ +/*** Start of inlined file: juce_MemoryOutputStream.h ***/ #ifndef __JUCE_MEMORYOUTPUTSTREAM_JUCEHEADER__ #define __JUCE_MEMORYOUTPUTSTREAM_JUCEHEADER__ @@ -8115,7 +8217,7 @@ public: ~MemoryOutputStream() throw(); - const char* getData() throw(); + const char* getData() const throw(); size_t getDataSize() const throw(); @@ -8135,7 +8237,8 @@ private: }; #endif // __JUCE_MEMORYOUTPUTSTREAM_JUCEHEADER__ -/********* End of inlined file: juce_MemoryOutputStream.h *********/ +/*** End of inlined file: juce_MemoryOutputStream.h ***/ + #endif #ifndef __JUCE_OUTPUTSTREAM_JUCEHEADER__ @@ -8143,7 +8246,7 @@ private: #endif #ifndef __JUCE_SUBREGIONSTREAM_JUCEHEADER__ -/********* Start of inlined file: juce_SubregionStream.h *********/ +/*** Start of inlined file: juce_SubregionStream.h ***/ #ifndef __JUCE_SUBREGIONSTREAM_JUCEHEADER__ #define __JUCE_SUBREGIONSTREAM_JUCEHEADER__ @@ -8176,7 +8279,8 @@ private: }; #endif // __JUCE_SUBREGIONSTREAM_JUCEHEADER__ -/********* End of inlined file: juce_SubregionStream.h *********/ +/*** End of inlined file: juce_SubregionStream.h ***/ + #endif #ifndef __JUCE_CHARACTERFUNCTIONS_JUCEHEADER__ @@ -8184,7 +8288,7 @@ private: #endif #ifndef __JUCE_LOCALISEDSTRINGS_JUCEHEADER__ -/********* Start of inlined file: juce_LocalisedStrings.h *********/ +/*** Start of inlined file: juce_LocalisedStrings.h ***/ #ifndef __JUCE_LOCALISEDSTRINGS_JUCEHEADER__ #define __JUCE_LOCALISEDSTRINGS_JUCEHEADER__ @@ -8228,7 +8332,8 @@ private: }; #endif // __JUCE_LOCALISEDSTRINGS_JUCEHEADER__ -/********* End of inlined file: juce_LocalisedStrings.h *********/ +/*** End of inlined file: juce_LocalisedStrings.h ***/ + #endif #ifndef __JUCE_STRING_JUCEHEADER__ @@ -8242,7 +8347,7 @@ private: #endif #ifndef __JUCE_XMLDOCUMENT_JUCEHEADER__ -/********* Start of inlined file: juce_XmlDocument.h *********/ +/*** Start of inlined file: juce_XmlDocument.h ***/ #ifndef __JUCE_XMLDOCUMENT_JUCEHEADER__ #define __JUCE_XMLDOCUMENT_JUCEHEADER__ @@ -8296,7 +8401,8 @@ private: }; #endif // __JUCE_XMLDOCUMENT_JUCEHEADER__ -/********* End of inlined file: juce_XmlDocument.h *********/ +/*** End of inlined file: juce_XmlDocument.h ***/ + #endif #ifndef __JUCE_XMLELEMENT_JUCEHEADER__ @@ -8307,7 +8413,7 @@ private: #endif #ifndef __JUCE_INTERPROCESSLOCK_JUCEHEADER__ -/********* Start of inlined file: juce_InterProcessLock.h *********/ +/*** Start of inlined file: juce_InterProcessLock.h ***/ #ifndef __JUCE_INTERPROCESSLOCK_JUCEHEADER__ #define __JUCE_INTERPROCESSLOCK_JUCEHEADER__ @@ -8343,12 +8449,13 @@ private: }; #endif // __JUCE_INTERPROCESSLOCK_JUCEHEADER__ -/********* End of inlined file: juce_InterProcessLock.h *********/ +/*** End of inlined file: juce_InterProcessLock.h ***/ + #endif #ifndef __JUCE_PROCESS_JUCEHEADER__ -/********* Start of inlined file: juce_Process.h *********/ +/*** Start of inlined file: juce_Process.h ***/ #ifndef __JUCE_PROCESS_JUCEHEADER__ #define __JUCE_PROCESS_JUCEHEADER__ @@ -8378,16 +8485,18 @@ public: }; #endif // __JUCE_PROCESS_JUCEHEADER__ -/********* End of inlined file: juce_Process.h *********/ +/*** End of inlined file: juce_Process.h ***/ + #endif #ifndef __JUCE_READWRITELOCK_JUCEHEADER__ -/********* Start of inlined file: juce_ReadWriteLock.h *********/ +/*** Start of inlined file: juce_ReadWriteLock.h ***/ #ifndef __JUCE_READWRITELOCK_JUCEHEADER__ #define __JUCE_READWRITELOCK_JUCEHEADER__ -/********* Start of inlined file: juce_WaitableEvent.h *********/ + +/*** Start of inlined file: juce_WaitableEvent.h ***/ #ifndef __JUCE_WAITABLEEVENT_JUCEHEADER__ #define __JUCE_WAITABLEEVENT_JUCEHEADER__ @@ -8415,9 +8524,10 @@ private: }; #endif // __JUCE_WAITABLEEVENT_JUCEHEADER__ -/********* End of inlined file: juce_WaitableEvent.h *********/ +/*** End of inlined file: juce_WaitableEvent.h ***/ -/********* Start of inlined file: juce_Thread.h *********/ + +/*** Start of inlined file: juce_Thread.h ***/ #ifndef __JUCE_THREAD_JUCEHEADER__ #define __JUCE_THREAD_JUCEHEADER__ @@ -8499,7 +8609,7 @@ private: }; #endif // __JUCE_THREAD_JUCEHEADER__ -/********* End of inlined file: juce_Thread.h *********/ +/*** End of inlined file: juce_Thread.h ***/ class JUCE_API ReadWriteLock { @@ -8534,7 +8644,8 @@ private: }; #endif // __JUCE_READWRITELOCK_JUCEHEADER__ -/********* End of inlined file: juce_ReadWriteLock.h *********/ +/*** End of inlined file: juce_ReadWriteLock.h ***/ + #endif #ifndef __JUCE_SCOPEDLOCK_JUCEHEADER__ @@ -8542,7 +8653,7 @@ private: #endif #ifndef __JUCE_SCOPEDREADLOCK_JUCEHEADER__ -/********* Start of inlined file: juce_ScopedReadLock.h *********/ +/*** Start of inlined file: juce_ScopedReadLock.h ***/ #ifndef __JUCE_SCOPEDREADLOCK_JUCEHEADER__ #define __JUCE_SCOPEDREADLOCK_JUCEHEADER__ @@ -8563,12 +8674,13 @@ private: }; #endif // __JUCE_SCOPEDREADLOCK_JUCEHEADER__ -/********* End of inlined file: juce_ScopedReadLock.h *********/ +/*** End of inlined file: juce_ScopedReadLock.h ***/ + #endif #ifndef __JUCE_SCOPEDTRYLOCK_JUCEHEADER__ -/********* Start of inlined file: juce_ScopedTryLock.h *********/ +/*** Start of inlined file: juce_ScopedTryLock.h ***/ #ifndef __JUCE_SCOPEDTRYLOCK_JUCEHEADER__ #define __JUCE_SCOPEDTRYLOCK_JUCEHEADER__ @@ -8592,12 +8704,13 @@ private: }; #endif // __JUCE_SCOPEDTRYLOCK_JUCEHEADER__ -/********* End of inlined file: juce_ScopedTryLock.h *********/ +/*** End of inlined file: juce_ScopedTryLock.h ***/ + #endif #ifndef __JUCE_SCOPEDWRITELOCK_JUCEHEADER__ -/********* Start of inlined file: juce_ScopedWriteLock.h *********/ +/*** Start of inlined file: juce_ScopedWriteLock.h ***/ #ifndef __JUCE_SCOPEDWRITELOCK_JUCEHEADER__ #define __JUCE_SCOPEDWRITELOCK_JUCEHEADER__ @@ -8618,7 +8731,8 @@ private: }; #endif // __JUCE_SCOPEDWRITELOCK_JUCEHEADER__ -/********* End of inlined file: juce_ScopedWriteLock.h *********/ +/*** End of inlined file: juce_ScopedWriteLock.h ***/ + #endif #ifndef __JUCE_THREAD_JUCEHEADER__ @@ -8626,7 +8740,7 @@ private: #endif #ifndef __JUCE_THREADPOOL_JUCEHEADER__ -/********* Start of inlined file: juce_ThreadPool.h *********/ +/*** Start of inlined file: juce_ThreadPool.h ***/ #ifndef __JUCE_THREADPOOL_JUCEHEADER__ #define __JUCE_THREADPOOL_JUCEHEADER__ @@ -8743,12 +8857,13 @@ private: }; #endif // __JUCE_THREADPOOL_JUCEHEADER__ -/********* End of inlined file: juce_ThreadPool.h *********/ +/*** End of inlined file: juce_ThreadPool.h ***/ + #endif #ifndef __JUCE_TIMESLICETHREAD_JUCEHEADER__ -/********* Start of inlined file: juce_TimeSliceThread.h *********/ +/*** Start of inlined file: juce_TimeSliceThread.h ***/ #ifndef __JUCE_TIMESLICETHREAD_JUCEHEADER__ #define __JUCE_TIMESLICETHREAD_JUCEHEADER__ @@ -8792,7 +8907,8 @@ private: }; #endif // __JUCE_TIMESLICETHREAD_JUCEHEADER__ -/********* End of inlined file: juce_TimeSliceThread.h *********/ +/*** End of inlined file: juce_TimeSliceThread.h ***/ + #endif #ifndef __JUCE_WAITABLEEVENT_JUCEHEADER__ @@ -8800,31 +8916,35 @@ private: #endif #endif -/********* End of inlined file: juce_core_includes.h *********/ +/*** End of inlined file: juce_core_includes.h ***/ + // if you're compiling a command-line app, you might want to just include the core headers, // so you can set this macro before including juce.h #if ! JUCE_ONLY_BUILD_CORE_LIBRARY -/********* Start of inlined file: juce_app_includes.h *********/ +/*** Start of inlined file: juce_app_includes.h ***/ #ifndef __JUCE_JUCE_APP_INCLUDES_INCLUDEFILES__ #define __JUCE_JUCE_APP_INCLUDES_INCLUDEFILES__ #ifndef __JUCE_APPLICATION_JUCEHEADER__ -/********* Start of inlined file: juce_Application.h *********/ +/*** Start of inlined file: juce_Application.h ***/ #ifndef __JUCE_APPLICATION_JUCEHEADER__ #define __JUCE_APPLICATION_JUCEHEADER__ -/********* Start of inlined file: juce_ApplicationCommandTarget.h *********/ + +/*** Start of inlined file: juce_ApplicationCommandTarget.h ***/ #ifndef __JUCE_APPLICATIONCOMMANDTARGET_JUCEHEADER__ #define __JUCE_APPLICATIONCOMMANDTARGET_JUCEHEADER__ -/********* Start of inlined file: juce_Component.h *********/ + +/*** Start of inlined file: juce_Component.h ***/ #ifndef __JUCE_COMPONENT_JUCEHEADER__ #define __JUCE_COMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_MouseCursor.h *********/ + +/*** Start of inlined file: juce_MouseCursor.h ***/ #ifndef __JUCE_MOUSECURSOR_JUCEHEADER__ #define __JUCE_MOUSECURSOR_JUCEHEADER__ @@ -8899,19 +9019,21 @@ private: }; #endif // __JUCE_MOUSECURSOR_JUCEHEADER__ -/********* End of inlined file: juce_MouseCursor.h *********/ +/*** End of inlined file: juce_MouseCursor.h ***/ -/********* Start of inlined file: juce_MouseListener.h *********/ + +/*** Start of inlined file: juce_MouseListener.h ***/ #ifndef __JUCE_MOUSELISTENER_JUCEHEADER__ #define __JUCE_MOUSELISTENER_JUCEHEADER__ -/********* Start of inlined file: juce_MouseEvent.h *********/ + +/*** Start of inlined file: juce_MouseEvent.h ***/ #ifndef __JUCE_MOUSEEVENT_JUCEHEADER__ #define __JUCE_MOUSEEVENT_JUCEHEADER__ class Component; -/********* Start of inlined file: juce_ModifierKeys.h *********/ +/*** Start of inlined file: juce_ModifierKeys.h ***/ #ifndef __JUCE_MODIFIERKEYS_JUCEHEADER__ #define __JUCE_MODIFIERKEYS_JUCEHEADER__ @@ -8995,7 +9117,8 @@ private: }; #endif // __JUCE_MODIFIERKEYS_JUCEHEADER__ -/********* End of inlined file: juce_ModifierKeys.h *********/ +/*** End of inlined file: juce_ModifierKeys.h ***/ + class JUCE_API MouseEvent { @@ -9065,7 +9188,7 @@ private: }; #endif // __JUCE_MOUSEEVENT_JUCEHEADER__ -/********* End of inlined file: juce_MouseEvent.h *********/ +/*** End of inlined file: juce_MouseEvent.h ***/ class JUCE_API MouseListener { @@ -9092,9 +9215,10 @@ public: }; #endif // __JUCE_MOUSELISTENER_JUCEHEADER__ -/********* End of inlined file: juce_MouseListener.h *********/ +/*** End of inlined file: juce_MouseListener.h ***/ -/********* Start of inlined file: juce_ComponentListener.h *********/ + +/*** Start of inlined file: juce_ComponentListener.h ***/ #ifndef __JUCE_COMPONENTLISTENER_JUCEHEADER__ #define __JUCE_COMPONENTLISTENER_JUCEHEADER__ @@ -9121,13 +9245,15 @@ public: }; #endif // __JUCE_COMPONENTLISTENER_JUCEHEADER__ -/********* End of inlined file: juce_ComponentListener.h *********/ +/*** End of inlined file: juce_ComponentListener.h ***/ -/********* Start of inlined file: juce_KeyListener.h *********/ + +/*** Start of inlined file: juce_KeyListener.h ***/ #ifndef __JUCE_KEYLISTENER_JUCEHEADER__ #define __JUCE_KEYLISTENER_JUCEHEADER__ -/********* Start of inlined file: juce_KeyPress.h *********/ + +/*** Start of inlined file: juce_KeyPress.h ***/ #ifndef __JUCE_KEYPRESS_JUCEHEADER__ #define __JUCE_KEYPRESS_JUCEHEADER__ @@ -9246,7 +9372,7 @@ private: }; #endif // __JUCE_KEYPRESS_JUCEHEADER__ -/********* End of inlined file: juce_KeyPress.h *********/ +/*** End of inlined file: juce_KeyPress.h ***/ class Component; @@ -9262,9 +9388,10 @@ public: }; #endif // __JUCE_KEYLISTENER_JUCEHEADER__ -/********* End of inlined file: juce_KeyListener.h *********/ +/*** End of inlined file: juce_KeyListener.h ***/ -/********* Start of inlined file: juce_KeyboardFocusTraverser.h *********/ + +/*** Start of inlined file: juce_KeyboardFocusTraverser.h ***/ #ifndef __JUCE_KEYBOARDFOCUSTRAVERSER_JUCEHEADER__ #define __JUCE_KEYBOARDFOCUSTRAVERSER_JUCEHEADER__ @@ -9285,29 +9412,35 @@ public: }; #endif // __JUCE_KEYBOARDFOCUSTRAVERSER_JUCEHEADER__ -/********* End of inlined file: juce_KeyboardFocusTraverser.h *********/ +/*** End of inlined file: juce_KeyboardFocusTraverser.h ***/ -/********* Start of inlined file: juce_ImageEffectFilter.h *********/ + +/*** Start of inlined file: juce_ImageEffectFilter.h ***/ #ifndef __JUCE_IMAGEEFFECTFILTER_JUCEHEADER__ #define __JUCE_IMAGEEFFECTFILTER_JUCEHEADER__ -/********* Start of inlined file: juce_Graphics.h *********/ + +/*** Start of inlined file: juce_Graphics.h ***/ #ifndef __JUCE_GRAPHICS_JUCEHEADER__ #define __JUCE_GRAPHICS_JUCEHEADER__ -/********* Start of inlined file: juce_Font.h *********/ + +/*** Start of inlined file: juce_Font.h ***/ #ifndef __JUCE_FONT_JUCEHEADER__ #define __JUCE_FONT_JUCEHEADER__ -/********* Start of inlined file: juce_Typeface.h *********/ + +/*** Start of inlined file: juce_Typeface.h ***/ #ifndef __JUCE_TYPEFACE_JUCEHEADER__ #define __JUCE_TYPEFACE_JUCEHEADER__ -/********* Start of inlined file: juce_Path.h *********/ + +/*** Start of inlined file: juce_Path.h ***/ #ifndef __JUCE_PATH_JUCEHEADER__ #define __JUCE_PATH_JUCEHEADER__ -/********* Start of inlined file: juce_AffineTransform.h *********/ + +/*** Start of inlined file: juce_AffineTransform.h ***/ #ifndef __JUCE_AFFINETRANSFORM_JUCEHEADER__ #define __JUCE_AFFINETRANSFORM_JUCEHEADER__ @@ -9389,9 +9522,10 @@ private: }; #endif // __JUCE_AFFINETRANSFORM_JUCEHEADER__ -/********* End of inlined file: juce_AffineTransform.h *********/ +/*** End of inlined file: juce_AffineTransform.h ***/ -/********* Start of inlined file: juce_Point.h *********/ + +/*** Start of inlined file: juce_Point.h ***/ #ifndef __JUCE_POINT_JUCEHEADER__ #define __JUCE_POINT_JUCEHEADER__ @@ -9435,9 +9569,10 @@ private: }; #endif // __JUCE_POINT_JUCEHEADER__ -/********* End of inlined file: juce_Point.h *********/ +/*** End of inlined file: juce_Point.h ***/ -/********* Start of inlined file: juce_Rectangle.h *********/ + +/*** Start of inlined file: juce_Rectangle.h ***/ #ifndef __JUCE_RECTANGLE_JUCEHEADER__ #define __JUCE_RECTANGLE_JUCEHEADER__ @@ -9777,9 +9912,10 @@ private: }; #endif // __JUCE_RECTANGLE_JUCEHEADER__ -/********* End of inlined file: juce_Rectangle.h *********/ +/*** End of inlined file: juce_Rectangle.h ***/ -/********* Start of inlined file: juce_Justification.h *********/ + +/*** Start of inlined file: juce_Justification.h ***/ #ifndef __JUCE_JUSTIFICATION_JUCEHEADER__ #define __JUCE_JUSTIFICATION_JUCEHEADER__ @@ -9848,9 +9984,10 @@ private: }; #endif // __JUCE_JUSTIFICATION_JUCEHEADER__ -/********* End of inlined file: juce_Justification.h *********/ +/*** End of inlined file: juce_Justification.h ***/ -/********* Start of inlined file: juce_EdgeTable.h *********/ + +/*** Start of inlined file: juce_EdgeTable.h ***/ #ifndef __JUCE_EDGETABLE_JUCEHEADER__ #define __JUCE_EDGETABLE_JUCEHEADER__ @@ -9986,7 +10123,7 @@ private: }; #endif // __JUCE_EDGETABLE_JUCEHEADER__ -/********* End of inlined file: juce_EdgeTable.h *********/ +/*** End of inlined file: juce_EdgeTable.h ***/ class Image; @@ -10194,7 +10331,7 @@ private: }; #endif // __JUCE_PATH_JUCEHEADER__ -/********* End of inlined file: juce_Path.h *********/ +/*** End of inlined file: juce_Path.h ***/ class Font; @@ -10288,7 +10425,7 @@ private: }; #endif // __JUCE_TYPEFACE_JUCEHEADER__ -/********* End of inlined file: juce_Typeface.h *********/ +/*** End of inlined file: juce_Typeface.h ***/ class LowLevelGraphicsContext; @@ -10414,9 +10551,10 @@ private: }; #endif // __JUCE_FONT_JUCEHEADER__ -/********* End of inlined file: juce_Font.h *********/ +/*** End of inlined file: juce_Font.h ***/ -/********* Start of inlined file: juce_PathStrokeType.h *********/ + +/*** Start of inlined file: juce_PathStrokeType.h ***/ #ifndef __JUCE_PATHSTROKETYPE_JUCEHEADER__ #define __JUCE_PATHSTROKETYPE_JUCEHEADER__ @@ -10486,9 +10624,10 @@ private: }; #endif // __JUCE_PATHSTROKETYPE_JUCEHEADER__ -/********* End of inlined file: juce_PathStrokeType.h *********/ +/*** End of inlined file: juce_PathStrokeType.h ***/ -/********* Start of inlined file: juce_Line.h *********/ + +/*** Start of inlined file: juce_Line.h ***/ #ifndef __JUCE_LINE_JUCEHEADER__ #define __JUCE_LINE_JUCEHEADER__ @@ -10581,17 +10720,20 @@ private: }; #endif // __JUCE_LINE_JUCEHEADER__ -/********* End of inlined file: juce_Line.h *********/ +/*** End of inlined file: juce_Line.h ***/ -/********* Start of inlined file: juce_Colours.h *********/ + +/*** Start of inlined file: juce_Colours.h ***/ #ifndef __JUCE_COLOURS_JUCEHEADER__ #define __JUCE_COLOURS_JUCEHEADER__ -/********* Start of inlined file: juce_Colour.h *********/ + +/*** Start of inlined file: juce_Colour.h ***/ #ifndef __JUCE_COLOUR_JUCEHEADER__ #define __JUCE_COLOUR_JUCEHEADER__ -/********* Start of inlined file: juce_PixelFormats.h *********/ + +/*** Start of inlined file: juce_PixelFormats.h ***/ #ifndef __JUCE_PIXELFORMATS_JUCEHEADER__ #define __JUCE_PIXELFORMATS_JUCEHEADER__ @@ -11019,7 +11161,7 @@ forcedinline void PixelARGB::blend (const PixelAlpha& src) throw() #undef PACKED #endif // __JUCE_PIXELFORMATS_JUCEHEADER__ -/********* End of inlined file: juce_PixelFormats.h *********/ +/*** End of inlined file: juce_PixelFormats.h ***/ class JUCE_API Colour { @@ -11159,7 +11301,7 @@ private: }; #endif // __JUCE_COLOUR_JUCEHEADER__ -/********* End of inlined file: juce_Colour.h *********/ +/*** End of inlined file: juce_Colour.h ***/ class Colours { @@ -11222,13 +11364,15 @@ private: }; #endif // __JUCE_COLOURS_JUCEHEADER__ -/********* End of inlined file: juce_Colours.h *********/ +/*** End of inlined file: juce_Colours.h ***/ -/********* Start of inlined file: juce_FillType.h *********/ + +/*** Start of inlined file: juce_FillType.h ***/ #ifndef __JUCE_FILLTYPE_JUCEHEADER__ #define __JUCE_FILLTYPE_JUCEHEADER__ -/********* Start of inlined file: juce_ColourGradient.h *********/ + +/*** Start of inlined file: juce_ColourGradient.h ***/ #ifndef __JUCE_COLOURGRADIENT_JUCEHEADER__ #define __JUCE_COLOURGRADIENT_JUCEHEADER__ @@ -11284,7 +11428,7 @@ private: }; #endif // __JUCE_COLOURGRADIENT_JUCEHEADER__ -/********* End of inlined file: juce_ColourGradient.h *********/ +/*** End of inlined file: juce_ColourGradient.h ***/ class Image; @@ -11333,9 +11477,10 @@ public: }; #endif // __JUCE_FILLTYPE_JUCEHEADER__ -/********* End of inlined file: juce_FillType.h *********/ +/*** End of inlined file: juce_FillType.h ***/ -/********* Start of inlined file: juce_RectanglePlacement.h *********/ + +/*** Start of inlined file: juce_RectanglePlacement.h ***/ #ifndef __JUCE_RECTANGLEPLACEMENT_JUCEHEADER__ #define __JUCE_RECTANGLEPLACEMENT_JUCEHEADER__ @@ -11405,7 +11550,7 @@ private: }; #endif // __JUCE_RECTANGLEPLACEMENT_JUCEHEADER__ -/********* End of inlined file: juce_RectanglePlacement.h *********/ +/*** End of inlined file: juce_RectanglePlacement.h ***/ class LowLevelGraphicsContext; class Image; @@ -11677,7 +11822,7 @@ private: }; #endif // __JUCE_GRAPHICS_JUCEHEADER__ -/********* End of inlined file: juce_Graphics.h *********/ +/*** End of inlined file: juce_Graphics.h ***/ class JUCE_API ImageEffectFilter { @@ -11691,9 +11836,10 @@ public: }; #endif // __JUCE_IMAGEEFFECTFILTER_JUCEHEADER__ -/********* End of inlined file: juce_ImageEffectFilter.h *********/ +/*** End of inlined file: juce_ImageEffectFilter.h ***/ -/********* Start of inlined file: juce_RectangleList.h *********/ + +/*** Start of inlined file: juce_RectangleList.h ***/ #ifndef __JUCE_RECTANGLELIST_JUCEHEADER__ #define __JUCE_RECTANGLELIST_JUCEHEADER__ @@ -11786,9 +11932,10 @@ private: }; #endif // __JUCE_RECTANGLELIST_JUCEHEADER__ -/********* End of inlined file: juce_RectangleList.h *********/ +/*** End of inlined file: juce_RectangleList.h ***/ -/********* Start of inlined file: juce_BorderSize.h *********/ + +/*** Start of inlined file: juce_BorderSize.h ***/ #ifndef __JUCE_BORDERSIZE_JUCEHEADER__ #define __JUCE_BORDERSIZE_JUCEHEADER__ @@ -11847,9 +11994,10 @@ private: }; #endif // __JUCE_BORDERSIZE_JUCEHEADER__ -/********* End of inlined file: juce_BorderSize.h *********/ +/*** End of inlined file: juce_BorderSize.h ***/ -/********* Start of inlined file: juce_ComponentPeer.h *********/ + +/*** Start of inlined file: juce_ComponentPeer.h ***/ #ifndef __JUCE_COMPONENTPEER_JUCEHEADER__ #define __JUCE_COMPONENTPEER_JUCEHEADER__ @@ -12045,7 +12193,7 @@ private: }; #endif // __JUCE_COMPONENTPEER_JUCEHEADER__ -/********* End of inlined file: juce_ComponentPeer.h *********/ +/*** End of inlined file: juce_ComponentPeer.h ***/ class LookAndFeel; @@ -12544,13 +12692,15 @@ protected: }; #endif // __JUCE_COMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_Component.h *********/ +/*** End of inlined file: juce_Component.h ***/ -/********* Start of inlined file: juce_ApplicationCommandInfo.h *********/ + +/*** Start of inlined file: juce_ApplicationCommandInfo.h ***/ #ifndef __JUCE_APPLICATIONCOMMANDINFO_JUCEHEADER__ #define __JUCE_APPLICATIONCOMMANDINFO_JUCEHEADER__ -/********* Start of inlined file: juce_ApplicationCommandID.h *********/ + +/*** Start of inlined file: juce_ApplicationCommandID.h ***/ #ifndef __JUCE_APPLICATIONCOMMANDID_JUCEHEADER__ #define __JUCE_APPLICATIONCOMMANDID_JUCEHEADER__ @@ -12574,7 +12724,7 @@ namespace StandardApplicationCommandIDs } #endif // __JUCE_APPLICATIONCOMMANDID_JUCEHEADER__ -/********* End of inlined file: juce_ApplicationCommandID.h *********/ +/*** End of inlined file: juce_ApplicationCommandID.h ***/ struct JUCE_API ApplicationCommandInfo { @@ -12622,7 +12772,7 @@ struct JUCE_API ApplicationCommandInfo }; #endif // __JUCE_APPLICATIONCOMMANDINFO_JUCEHEADER__ -/********* End of inlined file: juce_ApplicationCommandInfo.h *********/ +/*** End of inlined file: juce_ApplicationCommandInfo.h ***/ class JUCE_API ApplicationCommandTarget { @@ -12710,9 +12860,10 @@ private: }; #endif // __JUCE_APPLICATIONCOMMANDTARGET_JUCEHEADER__ -/********* End of inlined file: juce_ApplicationCommandTarget.h *********/ +/*** End of inlined file: juce_ApplicationCommandTarget.h ***/ -/********* Start of inlined file: juce_ActionListener.h *********/ + +/*** Start of inlined file: juce_ActionListener.h ***/ #ifndef __JUCE_ACTIONLISTENER_JUCEHEADER__ #define __JUCE_ACTIONLISTENER_JUCEHEADER__ @@ -12725,7 +12876,7 @@ public: }; #endif // __JUCE_ACTIONLISTENER_JUCEHEADER__ -/********* End of inlined file: juce_ActionListener.h *********/ +/*** End of inlined file: juce_ActionListener.h ***/ class JUCE_API JUCEApplication : public ApplicationCommandTarget, private ActionListener @@ -12798,7 +12949,8 @@ public: }; #endif // __JUCE_APPLICATION_JUCEHEADER__ -/********* End of inlined file: juce_Application.h *********/ +/*** End of inlined file: juce_Application.h ***/ + #endif #ifndef __JUCE_APPLICATIONCOMMANDID_JUCEHEADER__ @@ -12809,15 +12961,17 @@ public: #endif #ifndef __JUCE_APPLICATIONCOMMANDMANAGER_JUCEHEADER__ -/********* Start of inlined file: juce_ApplicationCommandManager.h *********/ +/*** Start of inlined file: juce_ApplicationCommandManager.h ***/ #ifndef __JUCE_APPLICATIONCOMMANDMANAGER_JUCEHEADER__ #define __JUCE_APPLICATIONCOMMANDMANAGER_JUCEHEADER__ -/********* Start of inlined file: juce_Desktop.h *********/ + +/*** Start of inlined file: juce_Desktop.h ***/ #ifndef __JUCE_DESKTOP_JUCEHEADER__ #define __JUCE_DESKTOP_JUCEHEADER__ -/********* Start of inlined file: juce_DeletedAtShutdown.h *********/ + +/*** Start of inlined file: juce_DeletedAtShutdown.h ***/ #ifndef __JUCE_DELETEDATSHUTDOWN_JUCEHEADER__ #define __JUCE_DELETEDATSHUTDOWN_JUCEHEADER__ @@ -12837,9 +12991,10 @@ private: }; #endif // __JUCE_DELETEDATSHUTDOWN_JUCEHEADER__ -/********* End of inlined file: juce_DeletedAtShutdown.h *********/ +/*** End of inlined file: juce_DeletedAtShutdown.h ***/ -/********* Start of inlined file: juce_Timer.h *********/ + +/*** Start of inlined file: juce_Timer.h ***/ #ifndef __JUCE_TIMER_JUCEHEADER__ #define __JUCE_TIMER_JUCEHEADER__ @@ -12877,7 +13032,7 @@ private: }; #endif // __JUCE_TIMER_JUCEHEADER__ -/********* End of inlined file: juce_Timer.h *********/ +/*** End of inlined file: juce_Timer.h ***/ class JUCE_API FocusChangeListener { @@ -12995,7 +13150,7 @@ private: }; #endif // __JUCE_DESKTOP_JUCEHEADER__ -/********* End of inlined file: juce_Desktop.h *********/ +/*** End of inlined file: juce_Desktop.h ***/ class KeyPressMappingSet; class ApplicationCommandManagerListener; @@ -13086,7 +13241,8 @@ public: }; #endif // __JUCE_APPLICATIONCOMMANDMANAGER_JUCEHEADER__ -/********* End of inlined file: juce_ApplicationCommandManager.h *********/ +/*** End of inlined file: juce_ApplicationCommandManager.h ***/ + #endif #ifndef __JUCE_APPLICATIONCOMMANDTARGET_JUCEHEADER__ @@ -13094,11 +13250,12 @@ public: #endif #ifndef __JUCE_APPLICATIONPROPERTIES_JUCEHEADER__ -/********* Start of inlined file: juce_ApplicationProperties.h *********/ +/*** Start of inlined file: juce_ApplicationProperties.h ***/ #ifndef __JUCE_APPLICATIONPROPERTIES_JUCEHEADER__ #define __JUCE_APPLICATIONPROPERTIES_JUCEHEADER__ -/********* Start of inlined file: juce_PropertiesFile.h *********/ + +/*** Start of inlined file: juce_PropertiesFile.h ***/ #ifndef __JUCE_PROPERTIESFILE_JUCEHEADER__ #define __JUCE_PROPERTIESFILE_JUCEHEADER__ @@ -13161,7 +13318,7 @@ private: }; #endif // __JUCE_PROPERTIESFILE_JUCEHEADER__ -/********* End of inlined file: juce_PropertiesFile.h *********/ +/*** End of inlined file: juce_PropertiesFile.h ***/ class JUCE_API ApplicationProperties : public DeletedAtShutdown { @@ -13208,20 +13365,23 @@ private: }; #endif // __JUCE_APPLICATIONPROPERTIES_JUCEHEADER__ -/********* End of inlined file: juce_ApplicationProperties.h *********/ +/*** End of inlined file: juce_ApplicationProperties.h ***/ + #endif #ifndef __JUCE_AIFFAUDIOFORMAT_JUCEHEADER__ -/********* Start of inlined file: juce_AiffAudioFormat.h *********/ +/*** Start of inlined file: juce_AiffAudioFormat.h ***/ #ifndef __JUCE_AIFFAUDIOFORMAT_JUCEHEADER__ #define __JUCE_AIFFAUDIOFORMAT_JUCEHEADER__ -/********* Start of inlined file: juce_AudioFormat.h *********/ + +/*** Start of inlined file: juce_AudioFormat.h ***/ #ifndef __JUCE_AUDIOFORMAT_JUCEHEADER__ #define __JUCE_AUDIOFORMAT_JUCEHEADER__ -/********* Start of inlined file: juce_AudioFormatReader.h *********/ + +/*** Start of inlined file: juce_AudioFormatReader.h ***/ #ifndef __JUCE_AUDIOFORMATREADER_JUCEHEADER__ #define __JUCE_AUDIOFORMATREADER_JUCEHEADER__ @@ -13288,17 +13448,20 @@ private: }; #endif // __JUCE_AUDIOFORMATREADER_JUCEHEADER__ -/********* End of inlined file: juce_AudioFormatReader.h *********/ +/*** End of inlined file: juce_AudioFormatReader.h ***/ -/********* Start of inlined file: juce_AudioFormatWriter.h *********/ + +/*** Start of inlined file: juce_AudioFormatWriter.h ***/ #ifndef __JUCE_AUDIOFORMATWRITER_JUCEHEADER__ #define __JUCE_AUDIOFORMATWRITER_JUCEHEADER__ -/********* Start of inlined file: juce_AudioSource.h *********/ + +/*** Start of inlined file: juce_AudioSource.h ***/ #ifndef __JUCE_AUDIOSOURCE_JUCEHEADER__ #define __JUCE_AUDIOSOURCE_JUCEHEADER__ -/********* Start of inlined file: juce_AudioSampleBuffer.h *********/ + +/*** Start of inlined file: juce_AudioSampleBuffer.h ***/ #ifndef __JUCE_AUDIOSAMPLEBUFFER_JUCEHEADER__ #define __JUCE_AUDIOSAMPLEBUFFER_JUCEHEADER__ @@ -13464,7 +13627,7 @@ private: }; #endif // __JUCE_AUDIOSAMPLEBUFFER_JUCEHEADER__ -/********* End of inlined file: juce_AudioSampleBuffer.h *********/ +/*** End of inlined file: juce_AudioSampleBuffer.h ***/ struct JUCE_API AudioSourceChannelInfo { @@ -13499,7 +13662,7 @@ public: }; #endif // __JUCE_AUDIOSOURCE_JUCEHEADER__ -/********* End of inlined file: juce_AudioSource.h *********/ +/*** End of inlined file: juce_AudioSource.h ***/ class JUCE_API AudioFormatWriter { @@ -13553,7 +13716,7 @@ private: }; #endif // __JUCE_AUDIOFORMATWRITER_JUCEHEADER__ -/********* End of inlined file: juce_AudioFormatWriter.h *********/ +/*** End of inlined file: juce_AudioFormatWriter.h ***/ class JUCE_API AudioFormat { @@ -13600,7 +13763,7 @@ private: }; #endif // __JUCE_AUDIOFORMAT_JUCEHEADER__ -/********* End of inlined file: juce_AudioFormat.h *********/ +/*** End of inlined file: juce_AudioFormat.h ***/ class JUCE_API AiffAudioFormat : public AudioFormat { @@ -13632,12 +13795,13 @@ public: }; #endif // __JUCE_AIFFAUDIOFORMAT_JUCEHEADER__ -/********* End of inlined file: juce_AiffAudioFormat.h *********/ +/*** End of inlined file: juce_AiffAudioFormat.h ***/ + #endif #ifndef __JUCE_AUDIOCDBURNER_JUCEHEADER__ -/********* Start of inlined file: juce_AudioCDBurner.h *********/ +/*** Start of inlined file: juce_AudioCDBurner.h ***/ #ifndef __JUCE_AUDIOCDBURNER_JUCEHEADER__ #define __JUCE_AUDIOCDBURNER_JUCEHEADER__ @@ -13682,12 +13846,13 @@ private: #endif #endif // __JUCE_AUDIOCDBURNER_JUCEHEADER__ -/********* End of inlined file: juce_AudioCDBurner.h *********/ +/*** End of inlined file: juce_AudioCDBurner.h ***/ + #endif #ifndef __JUCE_AUDIOCDREADER_JUCEHEADER__ -/********* Start of inlined file: juce_AudioCDReader.h *********/ +/*** Start of inlined file: juce_AudioCDReader.h ***/ #ifndef __JUCE_AUDIOCDREADER_JUCEHEADER__ #define __JUCE_AUDIOCDREADER_JUCEHEADER__ @@ -13766,7 +13931,8 @@ private: #endif #endif // __JUCE_AUDIOCDREADER_JUCEHEADER__ -/********* End of inlined file: juce_AudioCDReader.h *********/ +/*** End of inlined file: juce_AudioCDReader.h ***/ + #endif #ifndef __JUCE_AUDIOFORMAT_JUCEHEADER__ @@ -13774,7 +13940,7 @@ private: #endif #ifndef __JUCE_AUDIOFORMATMANAGER_JUCEHEADER__ -/********* Start of inlined file: juce_AudioFormatManager.h *********/ +/*** Start of inlined file: juce_AudioFormatManager.h ***/ #ifndef __JUCE_AUDIOFORMATMANAGER_JUCEHEADER__ #define __JUCE_AUDIOFORMATMANAGER_JUCEHEADER__ @@ -13817,7 +13983,8 @@ private: }; #endif // __JUCE_AUDIOFORMATMANAGER_JUCEHEADER__ -/********* End of inlined file: juce_AudioFormatManager.h *********/ +/*** End of inlined file: juce_AudioFormatManager.h ***/ + #endif #ifndef __JUCE_AUDIOFORMATREADER_JUCEHEADER__ @@ -13828,7 +13995,7 @@ private: #endif #ifndef __JUCE_AUDIOSUBSECTIONREADER_JUCEHEADER__ -/********* Start of inlined file: juce_AudioSubsectionReader.h *********/ +/*** Start of inlined file: juce_AudioSubsectionReader.h ***/ #ifndef __JUCE_AUDIOSUBSECTIONREADER_JUCEHEADER__ #define __JUCE_AUDIOSUBSECTIONREADER_JUCEHEADER__ @@ -13865,12 +14032,13 @@ private: }; #endif // __JUCE_AUDIOSUBSECTIONREADER_JUCEHEADER__ -/********* End of inlined file: juce_AudioSubsectionReader.h *********/ +/*** End of inlined file: juce_AudioSubsectionReader.h ***/ + #endif #ifndef __JUCE_AUDIOTHUMBNAIL_JUCEHEADER__ -/********* Start of inlined file: juce_AudioThumbnail.h *********/ +/*** Start of inlined file: juce_AudioThumbnail.h ***/ #ifndef __JUCE_AUDIOTHUMBNAIL_JUCEHEADER__ #define __JUCE_AUDIOTHUMBNAIL_JUCEHEADER__ @@ -13951,12 +14119,13 @@ private: }; #endif // __JUCE_AUDIOTHUMBNAIL_JUCEHEADER__ -/********* End of inlined file: juce_AudioThumbnail.h *********/ +/*** End of inlined file: juce_AudioThumbnail.h ***/ + #endif #ifndef __JUCE_AUDIOTHUMBNAILCACHE_JUCEHEADER__ -/********* Start of inlined file: juce_AudioThumbnailCache.h *********/ +/*** Start of inlined file: juce_AudioThumbnailCache.h ***/ #ifndef __JUCE_AUDIOTHUMBNAILCACHE_JUCEHEADER__ #define __JUCE_AUDIOTHUMBNAILCACHE_JUCEHEADER__ @@ -13989,12 +14158,13 @@ private: }; #endif // __JUCE_AUDIOTHUMBNAILCACHE_JUCEHEADER__ -/********* End of inlined file: juce_AudioThumbnailCache.h *********/ +/*** End of inlined file: juce_AudioThumbnailCache.h ***/ + #endif #ifndef __JUCE_FLACAUDIOFORMAT_JUCEHEADER__ -/********* Start of inlined file: juce_FlacAudioFormat.h *********/ +/*** Start of inlined file: juce_FlacAudioFormat.h ***/ #ifndef __JUCE_FLACAUDIOFORMAT_JUCEHEADER__ #define __JUCE_FLACAUDIOFORMAT_JUCEHEADER__ @@ -14028,12 +14198,13 @@ public: #endif #endif // __JUCE_FLACAUDIOFORMAT_JUCEHEADER__ -/********* End of inlined file: juce_FlacAudioFormat.h *********/ +/*** End of inlined file: juce_FlacAudioFormat.h ***/ + #endif #ifndef __JUCE_OGGVORBISAUDIOFORMAT_JUCEHEADER__ -/********* Start of inlined file: juce_OggVorbisAudioFormat.h *********/ +/*** Start of inlined file: juce_OggVorbisAudioFormat.h ***/ #ifndef __JUCE_OGGVORBISAUDIOFORMAT_JUCEHEADER__ #define __JUCE_OGGVORBISAUDIOFORMAT_JUCEHEADER__ @@ -14070,12 +14241,13 @@ public: #endif #endif // __JUCE_OGGVORBISAUDIOFORMAT_JUCEHEADER__ -/********* End of inlined file: juce_OggVorbisAudioFormat.h *********/ +/*** End of inlined file: juce_OggVorbisAudioFormat.h ***/ + #endif #ifndef __JUCE_QUICKTIMEAUDIOFORMAT_JUCEHEADER__ -/********* Start of inlined file: juce_QuickTimeAudioFormat.h *********/ +/*** Start of inlined file: juce_QuickTimeAudioFormat.h ***/ #ifndef __JUCE_QUICKTIMEAUDIOFORMAT_JUCEHEADER__ #define __JUCE_QUICKTIMEAUDIOFORMAT_JUCEHEADER__ @@ -14109,12 +14281,13 @@ public: #endif #endif // __JUCE_QUICKTIMEAUDIOFORMAT_JUCEHEADER__ -/********* End of inlined file: juce_QuickTimeAudioFormat.h *********/ +/*** End of inlined file: juce_QuickTimeAudioFormat.h ***/ + #endif #ifndef __JUCE_WAVAUDIOFORMAT_JUCEHEADER__ -/********* Start of inlined file: juce_WavAudioFormat.h *********/ +/*** Start of inlined file: juce_WavAudioFormat.h ***/ #ifndef __JUCE_WAVAUDIOFORMAT_JUCEHEADER__ #define __JUCE_WAVAUDIOFORMAT_JUCEHEADER__ @@ -14168,16 +14341,18 @@ public: }; #endif // __JUCE_WAVAUDIOFORMAT_JUCEHEADER__ -/********* End of inlined file: juce_WavAudioFormat.h *********/ +/*** End of inlined file: juce_WavAudioFormat.h ***/ + #endif #ifndef __JUCE_AUDIOFORMATREADERSOURCE_JUCEHEADER__ -/********* Start of inlined file: juce_AudioFormatReaderSource.h *********/ +/*** Start of inlined file: juce_AudioFormatReaderSource.h ***/ #ifndef __JUCE_AUDIOFORMATREADERSOURCE_JUCEHEADER__ #define __JUCE_AUDIOFORMATREADERSOURCE_JUCEHEADER__ -/********* Start of inlined file: juce_PositionableAudioSource.h *********/ + +/*** Start of inlined file: juce_PositionableAudioSource.h ***/ #ifndef __JUCE_POSITIONABLEAUDIOSOURCE_JUCEHEADER__ #define __JUCE_POSITIONABLEAUDIOSOURCE_JUCEHEADER__ @@ -14200,7 +14375,7 @@ public: }; #endif // __JUCE_POSITIONABLEAUDIOSOURCE_JUCEHEADER__ -/********* End of inlined file: juce_PositionableAudioSource.h *********/ +/*** End of inlined file: juce_PositionableAudioSource.h ***/ class JUCE_API AudioFormatReaderSource : public PositionableAudioSource { @@ -14245,7 +14420,8 @@ private: }; #endif // __JUCE_AUDIOFORMATREADERSOURCE_JUCEHEADER__ -/********* End of inlined file: juce_AudioFormatReaderSource.h *********/ +/*** End of inlined file: juce_AudioFormatReaderSource.h ***/ + #endif #ifndef __JUCE_AUDIOSOURCE_JUCEHEADER__ @@ -14253,11 +14429,12 @@ private: #endif #ifndef __JUCE_AUDIOSOURCEPLAYER_JUCEHEADER__ -/********* Start of inlined file: juce_AudioSourcePlayer.h *********/ +/*** Start of inlined file: juce_AudioSourcePlayer.h ***/ #ifndef __JUCE_AUDIOSOURCEPLAYER_JUCEHEADER__ #define __JUCE_AUDIOSOURCEPLAYER_JUCEHEADER__ -/********* Start of inlined file: juce_AudioIODevice.h *********/ + +/*** Start of inlined file: juce_AudioIODevice.h ***/ #ifndef __JUCE_AUDIOIODEVICE_JUCEHEADER__ #define __JUCE_AUDIOIODEVICE_JUCEHEADER__ @@ -14345,7 +14522,7 @@ protected: }; #endif // __JUCE_AUDIOIODEVICE_JUCEHEADER__ -/********* End of inlined file: juce_AudioIODevice.h *********/ +/*** End of inlined file: juce_AudioIODevice.h ***/ class JUCE_API AudioSourcePlayer : public AudioIODeviceCallback { @@ -14390,16 +14567,18 @@ private: }; #endif // __JUCE_AUDIOSOURCEPLAYER_JUCEHEADER__ -/********* End of inlined file: juce_AudioSourcePlayer.h *********/ +/*** End of inlined file: juce_AudioSourcePlayer.h ***/ + #endif #ifndef __JUCE_AUDIOTRANSPORTSOURCE_JUCEHEADER__ -/********* Start of inlined file: juce_AudioTransportSource.h *********/ +/*** Start of inlined file: juce_AudioTransportSource.h ***/ #ifndef __JUCE_AUDIOTRANSPORTSOURCE_JUCEHEADER__ #define __JUCE_AUDIOTRANSPORTSOURCE_JUCEHEADER__ -/********* Start of inlined file: juce_BufferingAudioSource.h *********/ + +/*** Start of inlined file: juce_BufferingAudioSource.h ***/ #ifndef __JUCE_BUFFERINGAUDIOSOURCE_JUCEHEADER__ #define __JUCE_BUFFERINGAUDIOSOURCE_JUCEHEADER__ @@ -14449,9 +14628,10 @@ private: }; #endif // __JUCE_BUFFERINGAUDIOSOURCE_JUCEHEADER__ -/********* End of inlined file: juce_BufferingAudioSource.h *********/ +/*** End of inlined file: juce_BufferingAudioSource.h ***/ -/********* Start of inlined file: juce_ResamplingAudioSource.h *********/ + +/*** Start of inlined file: juce_ResamplingAudioSource.h ***/ #ifndef __JUCE_RESAMPLINGAUDIOSOURCE_JUCEHEADER__ #define __JUCE_RESAMPLINGAUDIOSOURCE_JUCEHEADER__ @@ -14502,7 +14682,7 @@ private: }; #endif // __JUCE_RESAMPLINGAUDIOSOURCE_JUCEHEADER__ -/********* End of inlined file: juce_ResamplingAudioSource.h *********/ +/*** End of inlined file: juce_ResamplingAudioSource.h ***/ class JUCE_API AudioTransportSource : public PositionableAudioSource, public ChangeBroadcaster @@ -14568,7 +14748,8 @@ private: }; #endif // __JUCE_AUDIOTRANSPORTSOURCE_JUCEHEADER__ -/********* End of inlined file: juce_AudioTransportSource.h *********/ +/*** End of inlined file: juce_AudioTransportSource.h ***/ + #endif #ifndef __JUCE_BUFFERINGAUDIOSOURCE_JUCEHEADER__ @@ -14576,7 +14757,7 @@ private: #endif #ifndef __JUCE_CHANNELREMAPPINGAUDIOSOURCE_JUCEHEADER__ -/********* Start of inlined file: juce_ChannelRemappingAudioSource.h *********/ +/*** Start of inlined file: juce_ChannelRemappingAudioSource.h ***/ #ifndef __JUCE_CHANNELREMAPPINGAUDIOSOURCE_JUCEHEADER__ #define __JUCE_CHANNELREMAPPINGAUDIOSOURCE_JUCEHEADER__ @@ -14630,16 +14811,18 @@ private: }; #endif // __JUCE_CHANNELREMAPPINGAUDIOSOURCE_JUCEHEADER__ -/********* End of inlined file: juce_ChannelRemappingAudioSource.h *********/ +/*** End of inlined file: juce_ChannelRemappingAudioSource.h ***/ + #endif #ifndef __JUCE_IIRFILTERAUDIOSOURCE_JUCEHEADER__ -/********* Start of inlined file: juce_IIRFilterAudioSource.h *********/ +/*** Start of inlined file: juce_IIRFilterAudioSource.h ***/ #ifndef __JUCE_IIRFILTERAUDIOSOURCE_JUCEHEADER__ #define __JUCE_IIRFILTERAUDIOSOURCE_JUCEHEADER__ -/********* Start of inlined file: juce_IIRFilter.h *********/ + +/*** Start of inlined file: juce_IIRFilter.h ***/ #ifndef __JUCE_IIRFILTER_JUCEHEADER__ #define __JUCE_IIRFILTER_JUCEHEADER__ @@ -14702,7 +14885,7 @@ protected: }; #endif // __JUCE_IIRFILTER_JUCEHEADER__ -/********* End of inlined file: juce_IIRFilter.h *********/ +/*** End of inlined file: juce_IIRFilter.h ***/ class JUCE_API IIRFilterAudioSource : public AudioSource { @@ -14732,12 +14915,13 @@ private: }; #endif // __JUCE_IIRFILTERAUDIOSOURCE_JUCEHEADER__ -/********* End of inlined file: juce_IIRFilterAudioSource.h *********/ +/*** End of inlined file: juce_IIRFilterAudioSource.h ***/ + #endif #ifndef __JUCE_MIXERAUDIOSOURCE_JUCEHEADER__ -/********* Start of inlined file: juce_MixerAudioSource.h *********/ +/*** Start of inlined file: juce_MixerAudioSource.h ***/ #ifndef __JUCE_MIXERAUDIOSOURCE_JUCEHEADER__ #define __JUCE_MIXERAUDIOSOURCE_JUCEHEADER__ @@ -14779,7 +14963,8 @@ private: }; #endif // __JUCE_MIXERAUDIOSOURCE_JUCEHEADER__ -/********* End of inlined file: juce_MixerAudioSource.h *********/ +/*** End of inlined file: juce_MixerAudioSource.h ***/ + #endif #ifndef __JUCE_POSITIONABLEAUDIOSOURCE_JUCEHEADER__ @@ -14790,7 +14975,7 @@ private: #endif #ifndef __JUCE_TONEGENERATORAUDIOSOURCE_JUCEHEADER__ -/********* Start of inlined file: juce_ToneGeneratorAudioSource.h *********/ +/*** Start of inlined file: juce_ToneGeneratorAudioSource.h ***/ #ifndef __JUCE_TONEGENERATORAUDIOSOURCE_JUCEHEADER__ #define __JUCE_TONEGENERATORAUDIOSOURCE_JUCEHEADER__ @@ -14825,16 +15010,18 @@ private: }; #endif // __JUCE_TONEGENERATORAUDIOSOURCE_JUCEHEADER__ -/********* End of inlined file: juce_ToneGeneratorAudioSource.h *********/ +/*** End of inlined file: juce_ToneGeneratorAudioSource.h ***/ + #endif #ifndef __JUCE_AUDIODEVICEMANAGER_JUCEHEADER__ -/********* Start of inlined file: juce_AudioDeviceManager.h *********/ +/*** Start of inlined file: juce_AudioDeviceManager.h ***/ #ifndef __JUCE_AUDIODEVICEMANAGER_JUCEHEADER__ #define __JUCE_AUDIODEVICEMANAGER_JUCEHEADER__ -/********* Start of inlined file: juce_AudioIODeviceType.h *********/ + +/*** Start of inlined file: juce_AudioIODeviceType.h ***/ #ifndef __JUCE_AUDIOIODEVICETYPE_JUCEHEADER__ #define __JUCE_AUDIOIODEVICETYPE_JUCEHEADER__ @@ -14881,13 +15068,15 @@ private: }; #endif // __JUCE_AUDIOIODEVICETYPE_JUCEHEADER__ -/********* End of inlined file: juce_AudioIODeviceType.h *********/ +/*** End of inlined file: juce_AudioIODeviceType.h ***/ -/********* Start of inlined file: juce_MidiInput.h *********/ + +/*** Start of inlined file: juce_MidiInput.h ***/ #ifndef __JUCE_MIDIINPUT_JUCEHEADER__ #define __JUCE_MIDIINPUT_JUCEHEADER__ -/********* Start of inlined file: juce_MidiMessage.h *********/ + +/*** Start of inlined file: juce_MidiMessage.h ***/ #ifndef __JUCE_MIDIMESSAGE_JUCEHEADER__ #define __JUCE_MIDIMESSAGE_JUCEHEADER__ @@ -15189,7 +15378,7 @@ private: }; #endif // __JUCE_MIDIMESSAGE_JUCEHEADER__ -/********* End of inlined file: juce_MidiMessage.h *********/ +/*** End of inlined file: juce_MidiMessage.h ***/ class MidiInput; @@ -15248,13 +15437,15 @@ protected: }; #endif // __JUCE_MIDIINPUT_JUCEHEADER__ -/********* End of inlined file: juce_MidiInput.h *********/ +/*** End of inlined file: juce_MidiInput.h ***/ -/********* Start of inlined file: juce_MidiOutput.h *********/ + +/*** Start of inlined file: juce_MidiOutput.h ***/ #ifndef __JUCE_MIDIOUTPUT_JUCEHEADER__ #define __JUCE_MIDIOUTPUT_JUCEHEADER__ -/********* Start of inlined file: juce_MidiBuffer.h *********/ + +/*** Start of inlined file: juce_MidiBuffer.h ***/ #ifndef __JUCE_MIDIBUFFER_JUCEHEADER__ #define __JUCE_MIDIBUFFER_JUCEHEADER__ @@ -15337,7 +15528,7 @@ private: }; #endif // __JUCE_MIDIBUFFER_JUCEHEADER__ -/********* End of inlined file: juce_MidiBuffer.h *********/ +/*** End of inlined file: juce_MidiBuffer.h ***/ class JUCE_API MidiOutput : private Thread { @@ -15400,17 +15591,20 @@ protected: }; #endif // __JUCE_MIDIOUTPUT_JUCEHEADER__ -/********* End of inlined file: juce_MidiOutput.h *********/ +/*** End of inlined file: juce_MidiOutput.h ***/ -/********* Start of inlined file: juce_ComboBox.h *********/ + +/*** Start of inlined file: juce_ComboBox.h ***/ #ifndef __JUCE_COMBOBOX_JUCEHEADER__ #define __JUCE_COMBOBOX_JUCEHEADER__ -/********* Start of inlined file: juce_Label.h *********/ + +/*** Start of inlined file: juce_Label.h ***/ #ifndef __JUCE_LABEL_JUCEHEADER__ #define __JUCE_LABEL_JUCEHEADER__ -/********* Start of inlined file: juce_ComponentDeletionWatcher.h *********/ + +/*** Start of inlined file: juce_ComponentDeletionWatcher.h ***/ #ifndef __JUCE_COMPONENTDELETIONWATCHER_JUCEHEADER__ #define __JUCE_COMPONENTDELETIONWATCHER_JUCEHEADER__ @@ -15437,29 +15631,35 @@ private: }; #endif // __JUCE_COMPONENTDELETIONWATCHER_JUCEHEADER__ -/********* End of inlined file: juce_ComponentDeletionWatcher.h *********/ +/*** End of inlined file: juce_ComponentDeletionWatcher.h ***/ -/********* Start of inlined file: juce_TextEditor.h *********/ + +/*** Start of inlined file: juce_TextEditor.h ***/ #ifndef __JUCE_TEXTEDITOR_JUCEHEADER__ #define __JUCE_TEXTEDITOR_JUCEHEADER__ -/********* Start of inlined file: juce_Viewport.h *********/ + +/*** Start of inlined file: juce_Viewport.h ***/ #ifndef __JUCE_VIEWPORT_JUCEHEADER__ #define __JUCE_VIEWPORT_JUCEHEADER__ -/********* Start of inlined file: juce_ScrollBar.h *********/ + +/*** Start of inlined file: juce_ScrollBar.h ***/ #ifndef __JUCE_SCROLLBAR_JUCEHEADER__ #define __JUCE_SCROLLBAR_JUCEHEADER__ -/********* Start of inlined file: juce_Button.h *********/ + +/*** Start of inlined file: juce_Button.h ***/ #ifndef __JUCE_BUTTON_JUCEHEADER__ #define __JUCE_BUTTON_JUCEHEADER__ -/********* Start of inlined file: juce_TooltipWindow.h *********/ + +/*** Start of inlined file: juce_TooltipWindow.h ***/ #ifndef __JUCE_TOOLTIPWINDOW_JUCEHEADER__ #define __JUCE_TOOLTIPWINDOW_JUCEHEADER__ -/********* Start of inlined file: juce_TooltipClient.h *********/ + +/*** Start of inlined file: juce_TooltipClient.h ***/ #ifndef __JUCE_TOOLTIPCLIENT_JUCEHEADER__ #define __JUCE_TOOLTIPCLIENT_JUCEHEADER__ @@ -15488,7 +15688,7 @@ protected: }; #endif // __JUCE_TOOLTIPCLIENT_JUCEHEADER__ -/********* End of inlined file: juce_TooltipClient.h *********/ +/*** End of inlined file: juce_TooltipClient.h ***/ class JUCE_API TooltipWindow : public Component, private Timer @@ -15533,7 +15733,7 @@ private: }; #endif // __JUCE_TOOLTIPWINDOW_JUCEHEADER__ -/********* End of inlined file: juce_TooltipWindow.h *********/ +/*** End of inlined file: juce_TooltipWindow.h ***/ class Button; @@ -15719,7 +15919,7 @@ private: }; #endif // __JUCE_BUTTON_JUCEHEADER__ -/********* End of inlined file: juce_Button.h *********/ +/*** End of inlined file: juce_Button.h ***/ class ScrollBar; @@ -15825,7 +16025,7 @@ private: }; #endif // __JUCE_SCROLLBAR_JUCEHEADER__ -/********* End of inlined file: juce_ScrollBar.h *********/ +/*** End of inlined file: juce_ScrollBar.h ***/ class JUCE_API Viewport : public Component, private ComponentListener, @@ -15908,9 +16108,10 @@ private: }; #endif // __JUCE_VIEWPORT_JUCEHEADER__ -/********* End of inlined file: juce_Viewport.h *********/ +/*** End of inlined file: juce_Viewport.h ***/ -/********* Start of inlined file: juce_PopupMenu.h *********/ + +/*** Start of inlined file: juce_PopupMenu.h ***/ #ifndef __JUCE_POPUPMENU_JUCEHEADER__ #define __JUCE_POPUPMENU_JUCEHEADER__ @@ -16079,7 +16280,7 @@ private: }; #endif // __JUCE_POPUPMENU_JUCEHEADER__ -/********* End of inlined file: juce_PopupMenu.h *********/ +/*** End of inlined file: juce_PopupMenu.h ***/ class TextEditor; class TextHolderComponent; @@ -16386,7 +16587,7 @@ private: }; #endif // __JUCE_TEXTEDITOR_JUCEHEADER__ -/********* End of inlined file: juce_TextEditor.h *********/ +/*** End of inlined file: juce_TextEditor.h ***/ class Label; @@ -16528,7 +16729,7 @@ private: }; #endif // __JUCE_LABEL_JUCEHEADER__ -/********* End of inlined file: juce_Label.h *********/ +/*** End of inlined file: juce_Label.h ***/ class ComboBox; @@ -16673,7 +16874,7 @@ private: }; #endif // __JUCE_COMBOBOX_JUCEHEADER__ -/********* End of inlined file: juce_ComboBox.h *********/ +/*** End of inlined file: juce_ComboBox.h ***/ class JUCE_API AudioDeviceManager : public ChangeBroadcaster { @@ -16848,7 +17049,8 @@ private: }; #endif // __JUCE_AUDIODEVICEMANAGER_JUCEHEADER__ -/********* End of inlined file: juce_AudioDeviceManager.h *********/ +/*** End of inlined file: juce_AudioDeviceManager.h ***/ + #endif #ifndef __JUCE_AUDIOIODEVICE_JUCEHEADER__ @@ -16865,7 +17067,7 @@ private: #endif #ifndef __JUCE_AUDIODATACONVERTERS_JUCEHEADER__ -/********* Start of inlined file: juce_AudioDataConverters.h *********/ +/*** Start of inlined file: juce_AudioDataConverters.h ***/ #ifndef __JUCE_AUDIODATACONVERTERS_JUCEHEADER__ #define __JUCE_AUDIODATACONVERTERS_JUCEHEADER__ @@ -16923,7 +17125,8 @@ public: }; #endif // __JUCE_AUDIODATACONVERTERS_JUCEHEADER__ -/********* End of inlined file: juce_AudioDataConverters.h *********/ +/*** End of inlined file: juce_AudioDataConverters.h ***/ + #endif #ifndef __JUCE_AUDIOSAMPLEBUFFER_JUCEHEADER__ @@ -16937,11 +17140,12 @@ public: #endif #ifndef __JUCE_MIDIFILE_JUCEHEADER__ -/********* Start of inlined file: juce_MidiFile.h *********/ +/*** Start of inlined file: juce_MidiFile.h ***/ #ifndef __JUCE_MIDIFILE_JUCEHEADER__ #define __JUCE_MIDIFILE_JUCEHEADER__ -/********* Start of inlined file: juce_MidiMessageSequence.h *********/ + +/*** Start of inlined file: juce_MidiMessageSequence.h ***/ #ifndef __JUCE_MIDIMESSAGESEQUENCE_JUCEHEADER__ #define __JUCE_MIDIMESSAGESEQUENCE_JUCEHEADER__ @@ -17039,7 +17243,7 @@ private: }; #endif // __JUCE_MIDIMESSAGESEQUENCE_JUCEHEADER__ -/********* End of inlined file: juce_MidiMessageSequence.h *********/ +/*** End of inlined file: juce_MidiMessageSequence.h ***/ class JUCE_API MidiFile { @@ -17093,12 +17297,13 @@ private: }; #endif // __JUCE_MIDIFILE_JUCEHEADER__ -/********* End of inlined file: juce_MidiFile.h *********/ +/*** End of inlined file: juce_MidiFile.h ***/ + #endif #ifndef __JUCE_MIDIKEYBOARDSTATE_JUCEHEADER__ -/********* Start of inlined file: juce_MidiKeyboardState.h *********/ +/*** Start of inlined file: juce_MidiKeyboardState.h ***/ #ifndef __JUCE_MIDIKEYBOARDSTATE_JUCEHEADER__ #define __JUCE_MIDIKEYBOARDSTATE_JUCEHEADER__ @@ -17164,7 +17369,8 @@ private: }; #endif // __JUCE_MIDIKEYBOARDSTATE_JUCEHEADER__ -/********* End of inlined file: juce_MidiKeyboardState.h *********/ +/*** End of inlined file: juce_MidiKeyboardState.h ***/ + #endif #ifndef __JUCE_MIDIMESSAGE_JUCEHEADER__ @@ -17172,7 +17378,7 @@ private: #endif #ifndef __JUCE_MIDIMESSAGECOLLECTOR_JUCEHEADER__ -/********* Start of inlined file: juce_MidiMessageCollector.h *********/ +/*** Start of inlined file: juce_MidiMessageCollector.h ***/ #ifndef __JUCE_MIDIMESSAGECOLLECTOR_JUCEHEADER__ #define __JUCE_MIDIMESSAGECOLLECTOR_JUCEHEADER__ @@ -17209,7 +17415,8 @@ private: }; #endif // __JUCE_MIDIMESSAGECOLLECTOR_JUCEHEADER__ -/********* End of inlined file: juce_MidiMessageCollector.h *********/ +/*** End of inlined file: juce_MidiMessageCollector.h ***/ + #endif #ifndef __JUCE_MIDIMESSAGESEQUENCE_JUCEHEADER__ @@ -17217,23 +17424,27 @@ private: #endif #ifndef __JUCE_AUDIOUNITPLUGINFORMAT_JUCEHEADER__ -/********* Start of inlined file: juce_AudioUnitPluginFormat.h *********/ +/*** Start of inlined file: juce_AudioUnitPluginFormat.h ***/ #ifndef __JUCE_AUDIOUNITPLUGINFORMAT_JUCEHEADER__ #define __JUCE_AUDIOUNITPLUGINFORMAT_JUCEHEADER__ -/********* Start of inlined file: juce_AudioPluginFormat.h *********/ + +/*** Start of inlined file: juce_AudioPluginFormat.h ***/ #ifndef __JUCE_AUDIOPLUGINFORMAT_JUCEHEADER__ #define __JUCE_AUDIOPLUGINFORMAT_JUCEHEADER__ -/********* Start of inlined file: juce_AudioPluginInstance.h *********/ + +/*** Start of inlined file: juce_AudioPluginInstance.h ***/ #ifndef __JUCE_AUDIOPLUGININSTANCE_JUCEHEADER__ #define __JUCE_AUDIOPLUGININSTANCE_JUCEHEADER__ -/********* Start of inlined file: juce_AudioProcessor.h *********/ + +/*** Start of inlined file: juce_AudioProcessor.h ***/ #ifndef __JUCE_AUDIOPROCESSOR_JUCEHEADER__ #define __JUCE_AUDIOPROCESSOR_JUCEHEADER__ -/********* Start of inlined file: juce_AudioProcessorEditor.h *********/ + +/*** Start of inlined file: juce_AudioProcessorEditor.h ***/ #ifndef __JUCE_AUDIOPROCESSOREDITOR_JUCEHEADER__ #define __JUCE_AUDIOPROCESSOREDITOR_JUCEHEADER__ @@ -17256,9 +17467,10 @@ private: }; #endif // __JUCE_AUDIOPROCESSOREDITOR_JUCEHEADER__ -/********* End of inlined file: juce_AudioProcessorEditor.h *********/ +/*** End of inlined file: juce_AudioProcessorEditor.h ***/ -/********* Start of inlined file: juce_AudioProcessorListener.h *********/ + +/*** Start of inlined file: juce_AudioProcessorListener.h ***/ #ifndef __JUCE_AUDIOPROCESSORLISTENER_JUCEHEADER__ #define __JUCE_AUDIOPROCESSORLISTENER_JUCEHEADER__ @@ -17284,9 +17496,10 @@ public: }; #endif // __JUCE_AUDIOPROCESSORLISTENER_JUCEHEADER__ -/********* End of inlined file: juce_AudioProcessorListener.h *********/ +/*** End of inlined file: juce_AudioProcessorListener.h ***/ -/********* Start of inlined file: juce_AudioPlayHead.h *********/ + +/*** Start of inlined file: juce_AudioPlayHead.h ***/ #ifndef __JUCE_AUDIOPLAYHEAD_JUCEHEADER__ #define __JUCE_AUDIOPLAYHEAD_JUCEHEADER__ @@ -17336,7 +17549,7 @@ public: }; #endif // __JUCE_AUDIOPLAYHEAD_JUCEHEADER__ -/********* End of inlined file: juce_AudioPlayHead.h *********/ +/*** End of inlined file: juce_AudioPlayHead.h ***/ class JUCE_API AudioProcessor { @@ -17486,9 +17699,10 @@ private: }; #endif // __JUCE_AUDIOPROCESSOR_JUCEHEADER__ -/********* End of inlined file: juce_AudioProcessor.h *********/ +/*** End of inlined file: juce_AudioProcessor.h ***/ -/********* Start of inlined file: juce_PluginDescription.h *********/ + +/*** Start of inlined file: juce_PluginDescription.h ***/ #ifndef __JUCE_PLUGINDESCRIPTION_JUCEHEADER__ #define __JUCE_PLUGINDESCRIPTION_JUCEHEADER__ @@ -17535,7 +17749,7 @@ public: }; #endif // __JUCE_PLUGINDESCRIPTION_JUCEHEADER__ -/********* End of inlined file: juce_PluginDescription.h *********/ +/*** End of inlined file: juce_PluginDescription.h ***/ class JUCE_API AudioPluginInstance : public AudioProcessor { @@ -17555,7 +17769,7 @@ protected: }; #endif // __JUCE_AUDIOPLUGININSTANCE_JUCEHEADER__ -/********* End of inlined file: juce_AudioPluginInstance.h *********/ +/*** End of inlined file: juce_AudioPluginInstance.h ***/ class PluginDescription; @@ -17593,7 +17807,7 @@ protected: }; #endif // __JUCE_AUDIOPLUGINFORMAT_JUCEHEADER__ -/********* End of inlined file: juce_AudioPluginFormat.h *********/ +/*** End of inlined file: juce_AudioPluginFormat.h ***/ #if JUCE_PLUGINHOST_AU && JUCE_MAC @@ -17623,12 +17837,13 @@ private: #endif #endif // __JUCE_AUDIOUNITPLUGINFORMAT_JUCEHEADER__ -/********* End of inlined file: juce_AudioUnitPluginFormat.h *********/ +/*** End of inlined file: juce_AudioUnitPluginFormat.h ***/ + #endif #ifndef __JUCE_DIRECTXPLUGINFORMAT_JUCEHEADER__ -/********* Start of inlined file: juce_DirectXPluginFormat.h *********/ +/*** Start of inlined file: juce_DirectXPluginFormat.h ***/ #ifndef __JUCE_DIRECTXPLUGINFORMAT_JUCEHEADER__ #define __JUCE_DIRECTXPLUGINFORMAT_JUCEHEADER__ @@ -17660,12 +17875,13 @@ private: #endif #endif // __JUCE_DIRECTXPLUGINFORMAT_JUCEHEADER__ -/********* End of inlined file: juce_DirectXPluginFormat.h *********/ +/*** End of inlined file: juce_DirectXPluginFormat.h ***/ + #endif #ifndef __JUCE_LADSPAPLUGINFORMAT_JUCEHEADER__ -/********* Start of inlined file: juce_LADSPAPluginFormat.h *********/ +/*** Start of inlined file: juce_LADSPAPluginFormat.h ***/ #ifndef __JUCE_LADSPAPLUGINFORMAT_JUCEHEADER__ #define __JUCE_LADSPAPLUGINFORMAT_JUCEHEADER__ @@ -17697,12 +17913,13 @@ private: #endif #endif // __JUCE_LADSPAPLUGINFORMAT_JUCEHEADER__ -/********* End of inlined file: juce_LADSPAPluginFormat.h *********/ +/*** End of inlined file: juce_LADSPAPluginFormat.h ***/ + #endif #ifndef __JUCE_VSTMIDIEVENTLIST_JUCEHEADER__ -/********* Start of inlined file: juce_VSTMidiEventList.h *********/ +/*** Start of inlined file: juce_VSTMidiEventList.h ***/ #ifdef __aeffect__ #ifndef __JUCE_VSTMIDIEVENTLIST_JUCEHEADER__ @@ -17854,12 +18071,13 @@ private: #endif // __JUCE_VSTMIDIEVENTLIST_JUCEHEADER__ #endif // __JUCE_VSTMIDIEVENTLIST_JUCEHEADER__ -/********* End of inlined file: juce_VSTMidiEventList.h *********/ +/*** End of inlined file: juce_VSTMidiEventList.h ***/ + #endif #ifndef __JUCE_VSTPLUGINFORMAT_JUCEHEADER__ -/********* Start of inlined file: juce_VSTPluginFormat.h *********/ +/*** Start of inlined file: juce_VSTPluginFormat.h ***/ #ifndef __JUCE_VSTPLUGINFORMAT_JUCEHEADER__ #define __JUCE_VSTPLUGINFORMAT_JUCEHEADER__ @@ -17892,7 +18110,8 @@ private: #endif #endif // __JUCE_VSTPLUGINFORMAT_JUCEHEADER__ -/********* End of inlined file: juce_VSTPluginFormat.h *********/ +/*** End of inlined file: juce_VSTPluginFormat.h ***/ + #endif #ifndef __JUCE_AUDIOPLUGINFORMAT_JUCEHEADER__ @@ -17900,7 +18119,7 @@ private: #endif #ifndef __JUCE_AUDIOPLUGINFORMATMANAGER_JUCEHEADER__ -/********* Start of inlined file: juce_AudioPluginFormatManager.h *********/ +/*** Start of inlined file: juce_AudioPluginFormatManager.h ***/ #ifndef __JUCE_AUDIOPLUGINFORMATMANAGER_JUCEHEADER__ #define __JUCE_AUDIOPLUGINFORMATMANAGER_JUCEHEADER__ @@ -17937,7 +18156,8 @@ private: }; #endif // __JUCE_AUDIOPLUGINFORMATMANAGER_JUCEHEADER__ -/********* End of inlined file: juce_AudioPluginFormatManager.h *********/ +/*** End of inlined file: juce_AudioPluginFormatManager.h ***/ + #endif #ifndef __JUCE_AUDIOPLUGININSTANCE_JUCEHEADER__ @@ -17945,7 +18165,7 @@ private: #endif #ifndef __JUCE_KNOWNPLUGINLIST_JUCEHEADER__ -/********* Start of inlined file: juce_KnownPluginList.h *********/ +/*** Start of inlined file: juce_KnownPluginList.h ***/ #ifndef __JUCE_KNOWNPLUGINLIST_JUCEHEADER__ #define __JUCE_KNOWNPLUGINLIST_JUCEHEADER__ @@ -18011,7 +18231,8 @@ private: }; #endif // __JUCE_KNOWNPLUGINLIST_JUCEHEADER__ -/********* End of inlined file: juce_KnownPluginList.h *********/ +/*** End of inlined file: juce_KnownPluginList.h ***/ + #endif #ifndef __JUCE_PLUGINDESCRIPTION_JUCEHEADER__ @@ -18019,7 +18240,7 @@ private: #endif #ifndef __JUCE_PLUGINDIRECTORYSCANNER_JUCEHEADER__ -/********* Start of inlined file: juce_PluginDirectoryScanner.h *********/ +/*** Start of inlined file: juce_PluginDirectoryScanner.h ***/ #ifndef __JUCE_PLUGINDIRECTORYSCANNER_JUCEHEADER__ #define __JUCE_PLUGINDIRECTORYSCANNER_JUCEHEADER__ @@ -18062,16 +18283,18 @@ private: }; #endif // __JUCE_PLUGINDIRECTORYSCANNER_JUCEHEADER__ -/********* End of inlined file: juce_PluginDirectoryScanner.h *********/ +/*** End of inlined file: juce_PluginDirectoryScanner.h ***/ + #endif #ifndef __JUCE_PLUGINLISTCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_PluginListComponent.h *********/ +/*** Start of inlined file: juce_PluginListComponent.h ***/ #ifndef __JUCE_PLUGINLISTCOMPONENT_JUCEHEADER__ #define __JUCE_PLUGINLISTCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_ListBox.h *********/ + +/*** Start of inlined file: juce_ListBox.h ***/ #ifndef __JUCE_LISTBOX_JUCEHEADER__ #define __JUCE_LISTBOX_JUCEHEADER__ @@ -18253,9 +18476,10 @@ private: }; #endif // __JUCE_LISTBOX_JUCEHEADER__ -/********* End of inlined file: juce_ListBox.h *********/ +/*** End of inlined file: juce_ListBox.h ***/ -/********* Start of inlined file: juce_TextButton.h *********/ + +/*** Start of inlined file: juce_TextButton.h ***/ #ifndef __JUCE_TEXTBUTTON_JUCEHEADER__ #define __JUCE_TEXTBUTTON_JUCEHEADER__ @@ -18296,7 +18520,7 @@ private: }; #endif // __JUCE_TEXTBUTTON_JUCEHEADER__ -/********* End of inlined file: juce_TextButton.h *********/ +/*** End of inlined file: juce_TextButton.h ***/ class JUCE_API PluginListComponent : public Component, public ListBoxModel, @@ -18339,7 +18563,8 @@ private: }; #endif // __JUCE_PLUGINLISTCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_PluginListComponent.h *********/ +/*** End of inlined file: juce_PluginListComponent.h ***/ + #endif #ifndef __JUCE_AUDIOPLAYHEAD_JUCEHEADER__ @@ -18353,7 +18578,7 @@ private: #endif #ifndef __JUCE_AUDIOPROCESSORGRAPH_JUCEHEADER__ -/********* Start of inlined file: juce_AudioProcessorGraph.h *********/ +/*** Start of inlined file: juce_AudioProcessorGraph.h ***/ #ifndef __JUCE_AUDIOPROCESSORGRAPH_JUCEHEADER__ #define __JUCE_AUDIOPROCESSORGRAPH_JUCEHEADER__ @@ -18591,7 +18816,8 @@ private: }; #endif // __JUCE_AUDIOPROCESSORGRAPH_JUCEHEADER__ -/********* End of inlined file: juce_AudioProcessorGraph.h *********/ +/*** End of inlined file: juce_AudioProcessorGraph.h ***/ + #endif #ifndef __JUCE_AUDIOPROCESSORLISTENER_JUCEHEADER__ @@ -18599,7 +18825,7 @@ private: #endif #ifndef __JUCE_AUDIOPROCESSORPLAYER_JUCEHEADER__ -/********* Start of inlined file: juce_AudioProcessorPlayer.h *********/ +/*** Start of inlined file: juce_AudioProcessorPlayer.h ***/ #ifndef __JUCE_AUDIOPROCESSORPLAYER_JUCEHEADER__ #define __JUCE_AUDIOPROCESSORPLAYER_JUCEHEADER__ @@ -18648,20 +18874,23 @@ private: }; #endif // __JUCE_AUDIOPROCESSORPLAYER_JUCEHEADER__ -/********* End of inlined file: juce_AudioProcessorPlayer.h *********/ +/*** End of inlined file: juce_AudioProcessorPlayer.h ***/ + #endif #ifndef __JUCE_GENERICAUDIOPROCESSOREDITOR_JUCEHEADER__ -/********* Start of inlined file: juce_GenericAudioProcessorEditor.h *********/ +/*** Start of inlined file: juce_GenericAudioProcessorEditor.h ***/ #ifndef __JUCE_GENERICAUDIOPROCESSOREDITOR_JUCEHEADER__ #define __JUCE_GENERICAUDIOPROCESSOREDITOR_JUCEHEADER__ -/********* Start of inlined file: juce_PropertyPanel.h *********/ + +/*** Start of inlined file: juce_PropertyPanel.h ***/ #ifndef __JUCE_PROPERTYPANEL_JUCEHEADER__ #define __JUCE_PROPERTYPANEL_JUCEHEADER__ -/********* Start of inlined file: juce_PropertyComponent.h *********/ + +/*** Start of inlined file: juce_PropertyComponent.h ***/ #ifndef __JUCE_PROPERTYCOMPONENT_JUCEHEADER__ #define __JUCE_PROPERTYCOMPONENT_JUCEHEADER__ @@ -18696,7 +18925,7 @@ protected: }; #endif // __JUCE_PROPERTYCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_PropertyComponent.h *********/ +/*** End of inlined file: juce_PropertyComponent.h ***/ class JUCE_API PropertyPanel : public Component { @@ -18747,7 +18976,7 @@ private: }; #endif // __JUCE_PROPERTYPANEL_JUCEHEADER__ -/********* End of inlined file: juce_PropertyPanel.h *********/ +/*** End of inlined file: juce_PropertyPanel.h ***/ class JUCE_API GenericAudioProcessorEditor : public AudioProcessorEditor { @@ -18769,16 +18998,18 @@ private: }; #endif // __JUCE_GENERICAUDIOPROCESSOREDITOR_JUCEHEADER__ -/********* End of inlined file: juce_GenericAudioProcessorEditor.h *********/ +/*** End of inlined file: juce_GenericAudioProcessorEditor.h ***/ + #endif #ifndef __JUCE_SAMPLER_JUCEHEADER__ -/********* Start of inlined file: juce_Sampler.h *********/ +/*** Start of inlined file: juce_Sampler.h ***/ #ifndef __JUCE_SAMPLER_JUCEHEADER__ #define __JUCE_SAMPLER_JUCEHEADER__ -/********* Start of inlined file: juce_Synthesiser.h *********/ + +/*** Start of inlined file: juce_Synthesiser.h ***/ #ifndef __JUCE_SYNTHESISER_JUCEHEADER__ #define __JUCE_SYNTHESISER_JUCEHEADER__ @@ -18941,7 +19172,7 @@ private: }; #endif // __JUCE_SYNTHESISER_JUCEHEADER__ -/********* End of inlined file: juce_Synthesiser.h *********/ +/*** End of inlined file: juce_Synthesiser.h ***/ class JUCE_API SamplerSound : public SynthesiserSound { @@ -19010,7 +19241,8 @@ private: }; #endif // __JUCE_SAMPLER_JUCEHEADER__ -/********* End of inlined file: juce_Sampler.h *********/ +/*** End of inlined file: juce_Sampler.h ***/ + #endif #ifndef __JUCE_SYNTHESISER_JUCEHEADER__ @@ -19018,11 +19250,12 @@ private: #endif #ifndef __JUCE_ACTIONBROADCASTER_JUCEHEADER__ -/********* Start of inlined file: juce_ActionBroadcaster.h *********/ +/*** Start of inlined file: juce_ActionBroadcaster.h ***/ #ifndef __JUCE_ACTIONBROADCASTER_JUCEHEADER__ #define __JUCE_ACTIONBROADCASTER_JUCEHEADER__ -/********* Start of inlined file: juce_ActionListenerList.h *********/ + +/*** Start of inlined file: juce_ActionListenerList.h ***/ #ifndef __JUCE_ACTIONLISTENERLIST_JUCEHEADER__ #define __JUCE_ACTIONLISTENERLIST_JUCEHEADER__ @@ -19055,7 +19288,7 @@ private: }; #endif // __JUCE_ACTIONLISTENERLIST_JUCEHEADER__ -/********* End of inlined file: juce_ActionListenerList.h *********/ +/*** End of inlined file: juce_ActionListenerList.h ***/ class JUCE_API ActionBroadcaster { @@ -19082,7 +19315,8 @@ private: }; #endif // __JUCE_ACTIONBROADCASTER_JUCEHEADER__ -/********* End of inlined file: juce_ActionBroadcaster.h *********/ +/*** End of inlined file: juce_ActionBroadcaster.h ***/ + #endif #ifndef __JUCE_ACTIONLISTENER_JUCEHEADER__ @@ -19096,7 +19330,7 @@ private: #endif #ifndef __JUCE_CALLBACKMESSAGE_JUCEHEADER__ -/********* Start of inlined file: juce_CallbackMessage.h *********/ +/*** Start of inlined file: juce_CallbackMessage.h ***/ #ifndef __JUCE_CALLBACKMESSAGE_JUCEHEADER__ #define __JUCE_CALLBACKMESSAGE_JUCEHEADER__ @@ -19120,7 +19354,8 @@ private: }; #endif // __JUCE_CALLBACKMESSAGE_JUCEHEADER__ -/********* End of inlined file: juce_CallbackMessage.h *********/ +/*** End of inlined file: juce_CallbackMessage.h ***/ + #endif #ifndef __JUCE_CHANGEBROADCASTER_JUCEHEADER__ @@ -19134,7 +19369,7 @@ private: #endif #ifndef __JUCE_INTERPROCESSCONNECTION_JUCEHEADER__ -/********* Start of inlined file: juce_InterprocessConnection.h *********/ +/*** Start of inlined file: juce_InterprocessConnection.h ***/ #ifndef __JUCE_INTERPROCESSCONNECTION_JUCEHEADER__ #define __JUCE_INTERPROCESSCONNECTION_JUCEHEADER__ @@ -19208,12 +19443,13 @@ private: }; #endif // __JUCE_INTERPROCESSCONNECTION_JUCEHEADER__ -/********* End of inlined file: juce_InterprocessConnection.h *********/ +/*** End of inlined file: juce_InterprocessConnection.h ***/ + #endif #ifndef __JUCE_INTERPROCESSCONNECTIONSERVER_JUCEHEADER__ -/********* Start of inlined file: juce_InterprocessConnectionServer.h *********/ +/*** Start of inlined file: juce_InterprocessConnectionServer.h ***/ #ifndef __JUCE_INTERPROCESSCONNECTIONSERVER_JUCEHEADER__ #define __JUCE_INTERPROCESSCONNECTIONSERVER_JUCEHEADER__ @@ -19246,7 +19482,8 @@ private: }; #endif // __JUCE_INTERPROCESSCONNECTIONSERVER_JUCEHEADER__ -/********* End of inlined file: juce_InterprocessConnectionServer.h *********/ +/*** End of inlined file: juce_InterprocessConnectionServer.h ***/ + #endif #ifndef __JUCE_MESSAGE_JUCEHEADER__ @@ -19257,7 +19494,7 @@ private: #endif #ifndef __JUCE_MESSAGEMANAGER_JUCEHEADER__ -/********* Start of inlined file: juce_MessageManager.h *********/ +/*** Start of inlined file: juce_MessageManager.h ***/ #ifndef __JUCE_MESSAGEMANAGER_JUCEHEADER__ #define __JUCE_MESSAGEMANAGER_JUCEHEADER__ @@ -19359,12 +19596,13 @@ private: }; #endif // __JUCE_MESSAGEMANAGER_JUCEHEADER__ -/********* End of inlined file: juce_MessageManager.h *********/ +/*** End of inlined file: juce_MessageManager.h ***/ + #endif #ifndef __JUCE_MULTITIMER_JUCEHEADER__ -/********* Start of inlined file: juce_MultiTimer.h *********/ +/*** Start of inlined file: juce_MultiTimer.h ***/ #ifndef __JUCE_MULTITIMER_JUCEHEADER__ #define __JUCE_MULTITIMER_JUCEHEADER__ @@ -19399,7 +19637,8 @@ private: }; #endif // __JUCE_MULTITIMER_JUCEHEADER__ -/********* End of inlined file: juce_MultiTimer.h *********/ +/*** End of inlined file: juce_MultiTimer.h ***/ + #endif #ifndef __JUCE_TIMER_JUCEHEADER__ @@ -19407,11 +19646,12 @@ private: #endif #ifndef __JUCE_ARROWBUTTON_JUCEHEADER__ -/********* Start of inlined file: juce_ArrowButton.h *********/ +/*** Start of inlined file: juce_ArrowButton.h ***/ #ifndef __JUCE_ARROWBUTTON_JUCEHEADER__ #define __JUCE_ARROWBUTTON_JUCEHEADER__ -/********* Start of inlined file: juce_DropShadowEffect.h *********/ + +/*** Start of inlined file: juce_DropShadowEffect.h ***/ #ifndef __JUCE_DROPSHADOWEFFECT_JUCEHEADER__ #define __JUCE_DROPSHADOWEFFECT_JUCEHEADER__ @@ -19438,7 +19678,7 @@ private: }; #endif // __JUCE_DROPSHADOWEFFECT_JUCEHEADER__ -/********* End of inlined file: juce_DropShadowEffect.h *********/ +/*** End of inlined file: juce_DropShadowEffect.h ***/ class JUCE_API ArrowButton : public Button { @@ -19471,7 +19711,8 @@ private: }; #endif // __JUCE_ARROWBUTTON_JUCEHEADER__ -/********* End of inlined file: juce_ArrowButton.h *********/ +/*** End of inlined file: juce_ArrowButton.h ***/ + #endif #ifndef __JUCE_BUTTON_JUCEHEADER__ @@ -19479,11 +19720,12 @@ private: #endif #ifndef __JUCE_DRAWABLEBUTTON_JUCEHEADER__ -/********* Start of inlined file: juce_DrawableButton.h *********/ +/*** Start of inlined file: juce_DrawableButton.h ***/ #ifndef __JUCE_DRAWABLEBUTTON_JUCEHEADER__ #define __JUCE_DRAWABLEBUTTON_JUCEHEADER__ -/********* Start of inlined file: juce_Drawable.h *********/ + +/*** Start of inlined file: juce_Drawable.h ***/ #ifndef __JUCE_DRAWABLE_JUCEHEADER__ #define __JUCE_DRAWABLE_JUCEHEADER__ @@ -19559,7 +19801,7 @@ private: }; #endif // __JUCE_DRAWABLE_JUCEHEADER__ -/********* End of inlined file: juce_Drawable.h *********/ +/*** End of inlined file: juce_Drawable.h ***/ class JUCE_API DrawableButton : public Button { @@ -19623,12 +19865,13 @@ private: }; #endif // __JUCE_DRAWABLEBUTTON_JUCEHEADER__ -/********* End of inlined file: juce_DrawableButton.h *********/ +/*** End of inlined file: juce_DrawableButton.h ***/ + #endif #ifndef __JUCE_HYPERLINKBUTTON_JUCEHEADER__ -/********* Start of inlined file: juce_HyperlinkButton.h *********/ +/*** Start of inlined file: juce_HyperlinkButton.h ***/ #ifndef __JUCE_HYPERLINKBUTTON_JUCEHEADER__ #define __JUCE_HYPERLINKBUTTON_JUCEHEADER__ @@ -19678,12 +19921,13 @@ private: }; #endif // __JUCE_HYPERLINKBUTTON_JUCEHEADER__ -/********* End of inlined file: juce_HyperlinkButton.h *********/ +/*** End of inlined file: juce_HyperlinkButton.h ***/ + #endif #ifndef __JUCE_IMAGEBUTTON_JUCEHEADER__ -/********* Start of inlined file: juce_ImageButton.h *********/ +/*** Start of inlined file: juce_ImageButton.h ***/ #ifndef __JUCE_IMAGEBUTTON_JUCEHEADER__ #define __JUCE_IMAGEBUTTON_JUCEHEADER__ @@ -19742,12 +19986,13 @@ private: }; #endif // __JUCE_IMAGEBUTTON_JUCEHEADER__ -/********* End of inlined file: juce_ImageButton.h *********/ +/*** End of inlined file: juce_ImageButton.h ***/ + #endif #ifndef __JUCE_SHAPEBUTTON_JUCEHEADER__ -/********* Start of inlined file: juce_ShapeButton.h *********/ +/*** Start of inlined file: juce_ShapeButton.h ***/ #ifndef __JUCE_SHAPEBUTTON_JUCEHEADER__ #define __JUCE_SHAPEBUTTON_JUCEHEADER__ @@ -19793,7 +20038,8 @@ private: }; #endif // __JUCE_SHAPEBUTTON_JUCEHEADER__ -/********* End of inlined file: juce_ShapeButton.h *********/ +/*** End of inlined file: juce_ShapeButton.h ***/ + #endif #ifndef __JUCE_TEXTBUTTON_JUCEHEADER__ @@ -19801,7 +20047,7 @@ private: #endif #ifndef __JUCE_TOGGLEBUTTON_JUCEHEADER__ -/********* Start of inlined file: juce_ToggleButton.h *********/ +/*** Start of inlined file: juce_ToggleButton.h ***/ #ifndef __JUCE_TOGGLEBUTTON_JUCEHEADER__ #define __JUCE_TOGGLEBUTTON_JUCEHEADER__ @@ -19836,28 +20082,33 @@ private: }; #endif // __JUCE_TOGGLEBUTTON_JUCEHEADER__ -/********* End of inlined file: juce_ToggleButton.h *********/ +/*** End of inlined file: juce_ToggleButton.h ***/ + #endif #ifndef __JUCE_TOOLBARBUTTON_JUCEHEADER__ -/********* Start of inlined file: juce_ToolbarButton.h *********/ +/*** Start of inlined file: juce_ToolbarButton.h ***/ #ifndef __JUCE_TOOLBARBUTTON_JUCEHEADER__ #define __JUCE_TOOLBARBUTTON_JUCEHEADER__ -/********* Start of inlined file: juce_ToolbarItemComponent.h *********/ + +/*** Start of inlined file: juce_ToolbarItemComponent.h ***/ #ifndef __JUCE_TOOLBARITEMCOMPONENT_JUCEHEADER__ #define __JUCE_TOOLBARITEMCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_Toolbar.h *********/ + +/*** Start of inlined file: juce_Toolbar.h ***/ #ifndef __JUCE_TOOLBAR_JUCEHEADER__ #define __JUCE_TOOLBAR_JUCEHEADER__ -/********* Start of inlined file: juce_DragAndDropContainer.h *********/ + +/*** Start of inlined file: juce_DragAndDropContainer.h ***/ #ifndef __JUCE_DRAGANDDROPCONTAINER_JUCEHEADER__ #define __JUCE_DRAGANDDROPCONTAINER_JUCEHEADER__ -/********* Start of inlined file: juce_DragAndDropTarget.h *********/ + +/*** Start of inlined file: juce_DragAndDropTarget.h ***/ #ifndef __JUCE_DRAGANDDROPTARGET_JUCEHEADER__ #define __JUCE_DRAGANDDROPTARGET_JUCEHEADER__ @@ -19891,7 +20142,7 @@ public: }; #endif // __JUCE_DRAGANDDROPTARGET_JUCEHEADER__ -/********* End of inlined file: juce_DragAndDropTarget.h *********/ +/*** End of inlined file: juce_DragAndDropTarget.h ***/ class JUCE_API DragAndDropContainer { @@ -19932,9 +20183,10 @@ private: }; #endif // __JUCE_DRAGANDDROPCONTAINER_JUCEHEADER__ -/********* End of inlined file: juce_DragAndDropContainer.h *********/ +/*** End of inlined file: juce_DragAndDropContainer.h ***/ -/********* Start of inlined file: juce_ComponentAnimator.h *********/ + +/*** Start of inlined file: juce_ComponentAnimator.h ***/ #ifndef __JUCE_COMPONENTANIMATOR_JUCEHEADER__ #define __JUCE_COMPONENTANIMATOR_JUCEHEADER__ @@ -19973,7 +20225,7 @@ private: }; #endif // __JUCE_COMPONENTANIMATOR_JUCEHEADER__ -/********* End of inlined file: juce_ComponentAnimator.h *********/ +/*** End of inlined file: juce_ComponentAnimator.h ***/ class ToolbarItemComponent; class ToolbarItemFactory; @@ -20100,7 +20352,7 @@ private: }; #endif // __JUCE_TOOLBAR_JUCEHEADER__ -/********* End of inlined file: juce_Toolbar.h *********/ +/*** End of inlined file: juce_Toolbar.h ***/ class ItemDragAndDropOverlayComponent; @@ -20172,7 +20424,7 @@ private: }; #endif // __JUCE_TOOLBARITEMCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_ToolbarItemComponent.h *********/ +/*** End of inlined file: juce_ToolbarItemComponent.h ***/ class JUCE_API ToolbarButton : public ToolbarItemComponent { @@ -20200,12 +20452,13 @@ private: }; #endif // __JUCE_TOOLBARBUTTON_JUCEHEADER__ -/********* End of inlined file: juce_ToolbarButton.h *********/ +/*** End of inlined file: juce_ToolbarButton.h ***/ + #endif #ifndef __JUCE_CODEDOCUMENT_JUCEHEADER__ -/********* Start of inlined file: juce_CodeDocument.h *********/ +/*** Start of inlined file: juce_CodeDocument.h ***/ #ifndef __JUCE_CODEDOCUMENT_JUCEHEADER__ #define __JUCE_CODEDOCUMENT_JUCEHEADER__ @@ -20380,16 +20633,18 @@ private: }; #endif // __JUCE_CODEDOCUMENT_JUCEHEADER__ -/********* End of inlined file: juce_CodeDocument.h *********/ +/*** End of inlined file: juce_CodeDocument.h ***/ + #endif #ifndef __JUCE_CODEEDITORCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_CodeEditorComponent.h *********/ +/*** Start of inlined file: juce_CodeEditorComponent.h ***/ #ifndef __JUCE_CODEEDITORCOMPONENT_JUCEHEADER__ #define __JUCE_CODEEDITORCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_CodeTokeniser.h *********/ + +/*** Start of inlined file: juce_CodeTokeniser.h ***/ #ifndef __JUCE_CODETOKENISER_JUCEHEADER__ #define __JUCE_CODETOKENISER_JUCEHEADER__ @@ -20409,7 +20664,7 @@ public: }; #endif // __JUCE_CODETOKENISER_JUCEHEADER__ -/********* End of inlined file: juce_CodeTokeniser.h *********/ +/*** End of inlined file: juce_CodeTokeniser.h ***/ class JUCE_API CodeEditorComponent : public Component, public Timer, @@ -20574,7 +20829,8 @@ private: }; #endif // __JUCE_CODEEDITORCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_CodeEditorComponent.h *********/ +/*** End of inlined file: juce_CodeEditorComponent.h ***/ + #endif #ifndef __JUCE_CODETOKENISER_JUCEHEADER__ @@ -20582,7 +20838,7 @@ private: #endif #ifndef __JUCE_CPLUSPLUSCODETOKENISER_JUCEHEADER__ -/********* Start of inlined file: juce_CPlusPlusCodeTokeniser.h *********/ +/*** Start of inlined file: juce_CPlusPlusCodeTokeniser.h ***/ #ifndef __JUCE_CPLUSPLUSCODETOKENISER_JUCEHEADER__ #define __JUCE_CPLUSPLUSCODETOKENISER_JUCEHEADER__ @@ -20616,7 +20872,8 @@ public: }; #endif // __JUCE_CPLUSPLUSCODETOKENISER_JUCEHEADER__ -/********* End of inlined file: juce_CPlusPlusCodeTokeniser.h *********/ +/*** End of inlined file: juce_CPlusPlusCodeTokeniser.h ***/ + #endif #ifndef __JUCE_COMBOBOX_JUCEHEADER__ @@ -20630,7 +20887,7 @@ public: #endif #ifndef __JUCE_PROGRESSBAR_JUCEHEADER__ -/********* Start of inlined file: juce_ProgressBar.h *********/ +/*** Start of inlined file: juce_ProgressBar.h ***/ #ifndef __JUCE_PROGRESSBAR_JUCEHEADER__ #define __JUCE_PROGRESSBAR_JUCEHEADER__ @@ -20677,16 +20934,18 @@ private: }; #endif // __JUCE_PROGRESSBAR_JUCEHEADER__ -/********* End of inlined file: juce_ProgressBar.h *********/ +/*** End of inlined file: juce_ProgressBar.h ***/ + #endif #ifndef __JUCE_SLIDER_JUCEHEADER__ -/********* Start of inlined file: juce_Slider.h *********/ +/*** Start of inlined file: juce_Slider.h ***/ #ifndef __JUCE_SLIDER_JUCEHEADER__ #define __JUCE_SLIDER_JUCEHEADER__ -/********* Start of inlined file: juce_SliderListener.h *********/ + +/*** Start of inlined file: juce_SliderListener.h ***/ #ifndef __JUCE_SLIDERLISTENER_JUCEHEADER__ #define __JUCE_SLIDERLISTENER_JUCEHEADER__ @@ -20706,7 +20965,7 @@ public: }; #endif // __JUCE_SLIDERLISTENER_JUCEHEADER__ -/********* End of inlined file: juce_SliderListener.h *********/ +/*** End of inlined file: juce_SliderListener.h ***/ class JUCE_API Slider : public Component, public SettableTooltipClient, @@ -20991,7 +21250,8 @@ private: }; #endif // __JUCE_SLIDER_JUCEHEADER__ -/********* End of inlined file: juce_Slider.h *********/ +/*** End of inlined file: juce_Slider.h ***/ + #endif #ifndef __JUCE_SLIDERLISTENER_JUCEHEADER__ @@ -20999,7 +21259,7 @@ private: #endif #ifndef __JUCE_TABLEHEADERCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_TableHeaderComponent.h *********/ +/*** Start of inlined file: juce_TableHeaderComponent.h ***/ #ifndef __JUCE_TABLEHEADERCOMPONENT_JUCEHEADER__ #define __JUCE_TABLEHEADERCOMPONENT_JUCEHEADER__ @@ -21168,12 +21428,13 @@ private: }; #endif // __JUCE_TABLEHEADERCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_TableHeaderComponent.h *********/ +/*** End of inlined file: juce_TableHeaderComponent.h ***/ + #endif #ifndef __JUCE_TABLELISTBOX_JUCEHEADER__ -/********* Start of inlined file: juce_TableListBox.h *********/ +/*** Start of inlined file: juce_TableListBox.h ***/ #ifndef __JUCE_TABLELISTBOX_JUCEHEADER__ #define __JUCE_TABLELISTBOX_JUCEHEADER__ @@ -21288,7 +21549,8 @@ private: }; #endif // __JUCE_TABLELISTBOX_JUCEHEADER__ -/********* End of inlined file: juce_TableListBox.h *********/ +/*** End of inlined file: juce_TableListBox.h ***/ + #endif #ifndef __JUCE_TEXTEDITOR_JUCEHEADER__ @@ -21302,7 +21564,7 @@ private: #endif #ifndef __JUCE_TOOLBARITEMFACTORY_JUCEHEADER__ -/********* Start of inlined file: juce_ToolbarItemFactory.h *********/ +/*** Start of inlined file: juce_ToolbarItemFactory.h ***/ #ifndef __JUCE_TOOLBARITEMFACTORY_JUCEHEADER__ #define __JUCE_TOOLBARITEMFACTORY_JUCEHEADER__ @@ -21332,12 +21594,13 @@ public: }; #endif // __JUCE_TOOLBARITEMFACTORY_JUCEHEADER__ -/********* End of inlined file: juce_ToolbarItemFactory.h *********/ +/*** End of inlined file: juce_ToolbarItemFactory.h ***/ + #endif #ifndef __JUCE_TOOLBARITEMPALETTE_JUCEHEADER__ -/********* Start of inlined file: juce_ToolbarItemPalette.h *********/ +/*** Start of inlined file: juce_ToolbarItemPalette.h ***/ #ifndef __JUCE_TOOLBARITEMPALETTE_JUCEHEADER__ #define __JUCE_TOOLBARITEMPALETTE_JUCEHEADER__ @@ -21368,16 +21631,18 @@ private: }; #endif // __JUCE_TOOLBARITEMPALETTE_JUCEHEADER__ -/********* End of inlined file: juce_ToolbarItemPalette.h *********/ +/*** End of inlined file: juce_ToolbarItemPalette.h ***/ + #endif #ifndef __JUCE_TREEVIEW_JUCEHEADER__ -/********* Start of inlined file: juce_TreeView.h *********/ +/*** Start of inlined file: juce_TreeView.h ***/ #ifndef __JUCE_TREEVIEW_JUCEHEADER__ #define __JUCE_TREEVIEW_JUCEHEADER__ -/********* Start of inlined file: juce_FileDragAndDropTarget.h *********/ + +/*** Start of inlined file: juce_FileDragAndDropTarget.h ***/ #ifndef __JUCE_FILEDRAGANDDROPTARGET_JUCEHEADER__ #define __JUCE_FILEDRAGANDDROPTARGET_JUCEHEADER__ @@ -21398,7 +21663,7 @@ public: }; #endif // __JUCE_FILEDRAGANDDROPTARGET_JUCEHEADER__ -/********* End of inlined file: juce_FileDragAndDropTarget.h *********/ +/*** End of inlined file: juce_FileDragAndDropTarget.h ***/ class TreeView; @@ -21648,20 +21913,23 @@ private: }; #endif // __JUCE_TREEVIEW_JUCEHEADER__ -/********* End of inlined file: juce_TreeView.h *********/ +/*** End of inlined file: juce_TreeView.h ***/ + #endif #ifndef __JUCE_DIRECTORYCONTENTSDISPLAYCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_DirectoryContentsDisplayComponent.h *********/ +/*** Start of inlined file: juce_DirectoryContentsDisplayComponent.h ***/ #ifndef __JUCE_DIRECTORYCONTENTSDISPLAYCOMPONENT_JUCEHEADER__ #define __JUCE_DIRECTORYCONTENTSDISPLAYCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_DirectoryContentsList.h *********/ + +/*** Start of inlined file: juce_DirectoryContentsList.h ***/ #ifndef __JUCE_DIRECTORYCONTENTSLIST_JUCEHEADER__ #define __JUCE_DIRECTORYCONTENTSLIST_JUCEHEADER__ -/********* Start of inlined file: juce_FileFilter.h *********/ + +/*** Start of inlined file: juce_FileFilter.h ***/ #ifndef __JUCE_FILEFILTER_JUCEHEADER__ #define __JUCE_FILEFILTER_JUCEHEADER__ @@ -21685,9 +21953,10 @@ protected: }; #endif // __JUCE_FILEFILTER_JUCEHEADER__ -/********* End of inlined file: juce_FileFilter.h *********/ +/*** End of inlined file: juce_FileFilter.h ***/ -/********* Start of inlined file: juce_Image.h *********/ + +/*** Start of inlined file: juce_Image.h ***/ #ifndef __JUCE_IMAGE_JUCEHEADER__ #define __JUCE_IMAGE_JUCEHEADER__ @@ -21801,7 +22070,7 @@ private: }; #endif // __JUCE_IMAGE_JUCEHEADER__ -/********* End of inlined file: juce_Image.h *********/ +/*** End of inlined file: juce_Image.h ***/ class JUCE_API DirectoryContentsList : public ChangeBroadcaster, public TimeSliceClient @@ -21884,9 +22153,10 @@ private: }; #endif // __JUCE_DIRECTORYCONTENTSLIST_JUCEHEADER__ -/********* End of inlined file: juce_DirectoryContentsList.h *********/ +/*** End of inlined file: juce_DirectoryContentsList.h ***/ -/********* Start of inlined file: juce_FileBrowserListener.h *********/ + +/*** Start of inlined file: juce_FileBrowserListener.h ***/ #ifndef __JUCE_FILEBROWSERLISTENER_JUCEHEADER__ #define __JUCE_FILEBROWSERLISTENER_JUCEHEADER__ @@ -21904,7 +22174,7 @@ public: }; #endif // __JUCE_FILEBROWSERLISTENER_JUCEHEADER__ -/********* End of inlined file: juce_FileBrowserListener.h *********/ +/*** End of inlined file: juce_FileBrowserListener.h ***/ class JUCE_API DirectoryContentsDisplayComponent { @@ -21945,7 +22215,8 @@ protected: }; #endif // __JUCE_DIRECTORYCONTENTSDISPLAYCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_DirectoryContentsDisplayComponent.h *********/ +/*** End of inlined file: juce_DirectoryContentsDisplayComponent.h ***/ + #endif #ifndef __JUCE_DIRECTORYCONTENTSLIST_JUCEHEADER__ @@ -21953,11 +22224,12 @@ protected: #endif #ifndef __JUCE_FILEBROWSERCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_FileBrowserComponent.h *********/ +/*** Start of inlined file: juce_FileBrowserComponent.h ***/ #ifndef __JUCE_FILEBROWSERCOMPONENT_JUCEHEADER__ #define __JUCE_FILEBROWSERCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_FilePreviewComponent.h *********/ + +/*** Start of inlined file: juce_FilePreviewComponent.h ***/ #ifndef __JUCE_FILEPREVIEWCOMPONENT_JUCEHEADER__ #define __JUCE_FILEPREVIEWCOMPONENT_JUCEHEADER__ @@ -21979,7 +22251,7 @@ private: }; #endif // __JUCE_FILEPREVIEWCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_FilePreviewComponent.h *********/ +/*** End of inlined file: juce_FilePreviewComponent.h ***/ class JUCE_API FileBrowserComponent : public Component, public ChangeBroadcaster, @@ -22084,7 +22356,8 @@ private: }; #endif // __JUCE_FILEBROWSERCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_FileBrowserComponent.h *********/ +/*** End of inlined file: juce_FileBrowserComponent.h ***/ + #endif #ifndef __JUCE_FILEBROWSERLISTENER_JUCEHEADER__ @@ -22092,7 +22365,7 @@ private: #endif #ifndef __JUCE_FILECHOOSER_JUCEHEADER__ -/********* Start of inlined file: juce_FileChooser.h *********/ +/*** Start of inlined file: juce_FileChooser.h ***/ #ifndef __JUCE_FILECHOOSER_JUCEHEADER__ #define __JUCE_FILECHOOSER_JUCEHEADER__ @@ -22149,24 +22422,28 @@ private: }; #endif // __JUCE_FILECHOOSER_JUCEHEADER__ -/********* End of inlined file: juce_FileChooser.h *********/ +/*** End of inlined file: juce_FileChooser.h ***/ + #endif #ifndef __JUCE_FILECHOOSERDIALOGBOX_JUCEHEADER__ -/********* Start of inlined file: juce_FileChooserDialogBox.h *********/ +/*** Start of inlined file: juce_FileChooserDialogBox.h ***/ #ifndef __JUCE_FILECHOOSERDIALOGBOX_JUCEHEADER__ #define __JUCE_FILECHOOSERDIALOGBOX_JUCEHEADER__ -/********* Start of inlined file: juce_ResizableWindow.h *********/ + +/*** Start of inlined file: juce_ResizableWindow.h ***/ #ifndef __JUCE_RESIZABLEWINDOW_JUCEHEADER__ #define __JUCE_RESIZABLEWINDOW_JUCEHEADER__ -/********* Start of inlined file: juce_TopLevelWindow.h *********/ + +/*** Start of inlined file: juce_TopLevelWindow.h ***/ #ifndef __JUCE_TOPLEVELWINDOW_JUCEHEADER__ #define __JUCE_TOPLEVELWINDOW_JUCEHEADER__ -/********* Start of inlined file: juce_DropShadower.h *********/ + +/*** Start of inlined file: juce_DropShadower.h ***/ #ifndef __JUCE_DROPSHADOWER_JUCEHEADER__ #define __JUCE_DROPSHADOWER_JUCEHEADER__ @@ -22215,7 +22492,7 @@ private: }; #endif // __JUCE_DROPSHADOWER_JUCEHEADER__ -/********* End of inlined file: juce_DropShadower.h *********/ +/*** End of inlined file: juce_DropShadower.h ***/ class JUCE_API TopLevelWindow : public Component { @@ -22269,13 +22546,15 @@ private: }; #endif // __JUCE_TOPLEVELWINDOW_JUCEHEADER__ -/********* End of inlined file: juce_TopLevelWindow.h *********/ +/*** End of inlined file: juce_TopLevelWindow.h ***/ -/********* Start of inlined file: juce_ComponentDragger.h *********/ + +/*** Start of inlined file: juce_ComponentDragger.h ***/ #ifndef __JUCE_COMPONENTDRAGGER_JUCEHEADER__ #define __JUCE_COMPONENTDRAGGER_JUCEHEADER__ -/********* Start of inlined file: juce_ComponentBoundsConstrainer.h *********/ + +/*** Start of inlined file: juce_ComponentBoundsConstrainer.h ***/ #ifndef __JUCE_COMPONENTBOUNDSCONSTRAINER_JUCEHEADER__ #define __JUCE_COMPONENTBOUNDSCONSTRAINER_JUCEHEADER__ @@ -22359,7 +22638,7 @@ private: }; #endif // __JUCE_COMPONENTBOUNDSCONSTRAINER_JUCEHEADER__ -/********* End of inlined file: juce_ComponentBoundsConstrainer.h *********/ +/*** End of inlined file: juce_ComponentBoundsConstrainer.h ***/ class JUCE_API ComponentDragger { @@ -22383,9 +22662,10 @@ private: }; #endif // __JUCE_COMPONENTDRAGGER_JUCEHEADER__ -/********* End of inlined file: juce_ComponentDragger.h *********/ +/*** End of inlined file: juce_ComponentDragger.h ***/ -/********* Start of inlined file: juce_ResizableBorderComponent.h *********/ + +/*** Start of inlined file: juce_ResizableBorderComponent.h ***/ #ifndef __JUCE_RESIZABLEBORDERCOMPONENT_JUCEHEADER__ #define __JUCE_RESIZABLEBORDERCOMPONENT_JUCEHEADER__ @@ -22427,9 +22707,10 @@ private: }; #endif // __JUCE_RESIZABLEBORDERCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_ResizableBorderComponent.h *********/ +/*** End of inlined file: juce_ResizableBorderComponent.h ***/ -/********* Start of inlined file: juce_ResizableCornerComponent.h *********/ + +/*** Start of inlined file: juce_ResizableCornerComponent.h ***/ #ifndef __JUCE_RESIZABLECORNERCOMPONENT_JUCEHEADER__ #define __JUCE_RESIZABLECORNERCOMPONENT_JUCEHEADER__ @@ -22462,7 +22743,7 @@ private: }; #endif // __JUCE_RESIZABLECORNERCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_ResizableCornerComponent.h *********/ +/*** End of inlined file: juce_ResizableCornerComponent.h ***/ class JUCE_API ResizableWindow : public TopLevelWindow { @@ -22574,9 +22855,10 @@ private: }; #endif // __JUCE_RESIZABLEWINDOW_JUCEHEADER__ -/********* End of inlined file: juce_ResizableWindow.h *********/ +/*** End of inlined file: juce_ResizableWindow.h ***/ -/********* Start of inlined file: juce_GlyphArrangement.h *********/ + +/*** Start of inlined file: juce_GlyphArrangement.h ***/ #ifndef __JUCE_GLYPHARRANGEMENT_JUCEHEADER__ #define __JUCE_GLYPHARRANGEMENT_JUCEHEADER__ @@ -22707,7 +22989,7 @@ private: }; #endif // __JUCE_GLYPHARRANGEMENT_JUCEHEADER__ -/********* End of inlined file: juce_GlyphArrangement.h *********/ +/*** End of inlined file: juce_GlyphArrangement.h ***/ class JUCE_API FileChooserDialogBox : public ResizableWindow, public ButtonListener, @@ -22765,7 +23047,8 @@ private: }; #endif // __JUCE_FILECHOOSERDIALOGBOX_JUCEHEADER__ -/********* End of inlined file: juce_FileChooserDialogBox.h *********/ +/*** End of inlined file: juce_FileChooserDialogBox.h ***/ + #endif #ifndef __JUCE_FILEFILTER_JUCEHEADER__ @@ -22773,7 +23056,7 @@ private: #endif #ifndef __JUCE_FILELISTCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_FileListComponent.h *********/ +/*** Start of inlined file: juce_FileListComponent.h ***/ #ifndef __JUCE_FILELISTCOMPONENT_JUCEHEADER__ #define __JUCE_FILELISTCOMPONENT_JUCEHEADER__ @@ -22812,12 +23095,13 @@ private: }; #endif // __JUCE_FILELISTCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_FileListComponent.h *********/ +/*** End of inlined file: juce_FileListComponent.h ***/ + #endif #ifndef __JUCE_FILENAMECOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_FilenameComponent.h *********/ +/*** Start of inlined file: juce_FilenameComponent.h ***/ #ifndef __JUCE_FILENAMECOMPONENT_JUCEHEADER__ #define __JUCE_FILENAMECOMPONENT_JUCEHEADER__ @@ -22907,7 +23191,8 @@ private: }; #endif // __JUCE_FILENAMECOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_FilenameComponent.h *********/ +/*** End of inlined file: juce_FilenameComponent.h ***/ + #endif #ifndef __JUCE_FILEPREVIEWCOMPONENT_JUCEHEADER__ @@ -22915,7 +23200,7 @@ private: #endif #ifndef __JUCE_FILESEARCHPATHLISTCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_FileSearchPathListComponent.h *********/ +/*** Start of inlined file: juce_FileSearchPathListComponent.h ***/ #ifndef __JUCE_FILESEARCHPATHLISTCOMPONENT_JUCEHEADER__ #define __JUCE_FILESEARCHPATHLISTCOMPONENT_JUCEHEADER__ @@ -22977,12 +23262,13 @@ private: }; #endif // __JUCE_FILESEARCHPATHLISTCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_FileSearchPathListComponent.h *********/ +/*** End of inlined file: juce_FileSearchPathListComponent.h ***/ + #endif #ifndef __JUCE_FILETREECOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_FileTreeComponent.h *********/ +/*** Start of inlined file: juce_FileTreeComponent.h ***/ #ifndef __JUCE_FILETREECOMPONENT_JUCEHEADER__ #define __JUCE_FILETREECOMPONENT_JUCEHEADER__ @@ -23015,12 +23301,13 @@ private: }; #endif // __JUCE_FILETREECOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_FileTreeComponent.h *********/ +/*** End of inlined file: juce_FileTreeComponent.h ***/ + #endif #ifndef __JUCE_IMAGEPREVIEWCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_ImagePreviewComponent.h *********/ +/*** Start of inlined file: juce_ImagePreviewComponent.h ***/ #ifndef __JUCE_IMAGEPREVIEWCOMPONENT_JUCEHEADER__ #define __JUCE_IMAGEPREVIEWCOMPONENT_JUCEHEADER__ @@ -23051,12 +23338,13 @@ private: }; #endif // __JUCE_IMAGEPREVIEWCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_ImagePreviewComponent.h *********/ +/*** End of inlined file: juce_ImagePreviewComponent.h ***/ + #endif #ifndef __JUCE_WILDCARDFILEFILTER_JUCEHEADER__ -/********* Start of inlined file: juce_WildcardFileFilter.h *********/ +/*** Start of inlined file: juce_WildcardFileFilter.h ***/ #ifndef __JUCE_WILDCARDFILEFILTER_JUCEHEADER__ #define __JUCE_WILDCARDFILEFILTER_JUCEHEADER__ @@ -23084,7 +23372,8 @@ private: }; #endif // __JUCE_WILDCARDFILEFILTER_JUCEHEADER__ -/********* End of inlined file: juce_WildcardFileFilter.h *********/ +/*** End of inlined file: juce_WildcardFileFilter.h ***/ + #endif #ifndef __JUCE_COMPONENT_JUCEHEADER__ @@ -23107,11 +23396,12 @@ private: #endif #ifndef __JUCE_KEYMAPPINGEDITORCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_KeyMappingEditorComponent.h *********/ +/*** Start of inlined file: juce_KeyMappingEditorComponent.h ***/ #ifndef __JUCE_KEYMAPPINGEDITORCOMPONENT_JUCEHEADER__ #define __JUCE_KEYMAPPINGEDITORCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_KeyPressMappingSet.h *********/ + +/*** Start of inlined file: juce_KeyPressMappingSet.h ***/ #ifndef __JUCE_KEYPRESSMAPPINGSET_JUCEHEADER__ #define __JUCE_KEYPRESSMAPPINGSET_JUCEHEADER__ @@ -23196,7 +23486,7 @@ private: }; #endif // __JUCE_KEYPRESSMAPPINGSET_JUCEHEADER__ -/********* End of inlined file: juce_KeyPressMappingSet.h *********/ +/*** End of inlined file: juce_KeyPressMappingSet.h ***/ class JUCE_API KeyMappingEditorComponent : public Component, public TreeViewItem, @@ -23253,7 +23543,8 @@ private: }; #endif // __JUCE_KEYMAPPINGEDITORCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_KeyMappingEditorComponent.h *********/ +/*** End of inlined file: juce_KeyMappingEditorComponent.h ***/ + #endif #ifndef __JUCE_KEYPRESS_JUCEHEADER__ @@ -23273,7 +23564,7 @@ private: #endif #ifndef __JUCE_COMPONENTMOVEMENTWATCHER_JUCEHEADER__ -/********* Start of inlined file: juce_ComponentMovementWatcher.h *********/ +/*** Start of inlined file: juce_ComponentMovementWatcher.h ***/ #ifndef __JUCE_COMPONENTMOVEMENTWATCHER_JUCEHEADER__ #define __JUCE_COMPONENTMOVEMENTWATCHER_JUCEHEADER__ @@ -23313,12 +23604,13 @@ private: }; #endif // __JUCE_COMPONENTMOVEMENTWATCHER_JUCEHEADER__ -/********* End of inlined file: juce_ComponentMovementWatcher.h *********/ +/*** End of inlined file: juce_ComponentMovementWatcher.h ***/ + #endif #ifndef __JUCE_GROUPCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_GroupComponent.h *********/ +/*** Start of inlined file: juce_GroupComponent.h ***/ #ifndef __JUCE_GROUPCOMPONENT_JUCEHEADER__ #define __JUCE_GROUPCOMPONENT_JUCEHEADER__ @@ -23358,20 +23650,23 @@ private: }; #endif // __JUCE_GROUPCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_GroupComponent.h *********/ +/*** End of inlined file: juce_GroupComponent.h ***/ + #endif #ifndef __JUCE_MULTIDOCUMENTPANEL_JUCEHEADER__ -/********* Start of inlined file: juce_MultiDocumentPanel.h *********/ +/*** Start of inlined file: juce_MultiDocumentPanel.h ***/ #ifndef __JUCE_MULTIDOCUMENTPANEL_JUCEHEADER__ #define __JUCE_MULTIDOCUMENTPANEL_JUCEHEADER__ -/********* Start of inlined file: juce_TabbedComponent.h *********/ + +/*** Start of inlined file: juce_TabbedComponent.h ***/ #ifndef __JUCE_TABBEDCOMPONENT_JUCEHEADER__ #define __JUCE_TABBEDCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_TabbedButtonBar.h *********/ + +/*** Start of inlined file: juce_TabbedButtonBar.h ***/ #ifndef __JUCE_TABBEDBUTTONBAR_JUCEHEADER__ #define __JUCE_TABBEDBUTTONBAR_JUCEHEADER__ @@ -23502,7 +23797,7 @@ private: }; #endif // __JUCE_TABBEDBUTTONBAR_JUCEHEADER__ -/********* End of inlined file: juce_TabbedButtonBar.h *********/ +/*** End of inlined file: juce_TabbedButtonBar.h ***/ class JUCE_API TabbedComponent : public Component { @@ -23598,17 +23893,20 @@ private: }; #endif // __JUCE_TABBEDCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_TabbedComponent.h *********/ +/*** End of inlined file: juce_TabbedComponent.h ***/ -/********* Start of inlined file: juce_DocumentWindow.h *********/ + +/*** Start of inlined file: juce_DocumentWindow.h ***/ #ifndef __JUCE_DOCUMENTWINDOW_JUCEHEADER__ #define __JUCE_DOCUMENTWINDOW_JUCEHEADER__ -/********* Start of inlined file: juce_MenuBarComponent.h *********/ + +/*** Start of inlined file: juce_MenuBarComponent.h ***/ #ifndef __JUCE_MENUBARCOMPONENT_JUCEHEADER__ #define __JUCE_MENUBARCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_MenuBarModel.h *********/ + +/*** Start of inlined file: juce_MenuBarModel.h ***/ #ifndef __JUCE_MENUBARMODEL_JUCEHEADER__ #define __JUCE_MENUBARMODEL_JUCEHEADER__ @@ -23673,7 +23971,7 @@ private: }; #endif // __JUCE_MENUBARMODEL_JUCEHEADER__ -/********* End of inlined file: juce_MenuBarModel.h *********/ +/*** End of inlined file: juce_MenuBarModel.h ***/ class JUCE_API MenuBarComponent : public Component, private MenuBarModelListener, @@ -23727,7 +24025,7 @@ private: }; #endif // __JUCE_MENUBARCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_MenuBarComponent.h *********/ +/*** End of inlined file: juce_MenuBarComponent.h ***/ class JUCE_API DocumentWindow : public ResizableWindow { @@ -23816,7 +24114,7 @@ private: }; #endif // __JUCE_DOCUMENTWINDOW_JUCEHEADER__ -/********* End of inlined file: juce_DocumentWindow.h *********/ +/*** End of inlined file: juce_DocumentWindow.h ***/ class MultiDocumentPanel; class MDITabbedComponentInternal; @@ -23916,7 +24214,8 @@ private: }; #endif // __JUCE_MULTIDOCUMENTPANEL_JUCEHEADER__ -/********* End of inlined file: juce_MultiDocumentPanel.h *********/ +/*** End of inlined file: juce_MultiDocumentPanel.h ***/ + #endif #ifndef __JUCE_RESIZABLEBORDERCOMPONENT_JUCEHEADER__ @@ -23930,7 +24229,7 @@ private: #endif #ifndef __JUCE_STRETCHABLELAYOUTMANAGER_JUCEHEADER__ -/********* Start of inlined file: juce_StretchableLayoutManager.h *********/ +/*** Start of inlined file: juce_StretchableLayoutManager.h ***/ #ifndef __JUCE_STRETCHABLELAYOUTMANAGER_JUCEHEADER__ #define __JUCE_STRETCHABLELAYOUTMANAGER_JUCEHEADER__ @@ -24003,12 +24302,13 @@ private: }; #endif // __JUCE_STRETCHABLELAYOUTMANAGER_JUCEHEADER__ -/********* End of inlined file: juce_StretchableLayoutManager.h *********/ +/*** End of inlined file: juce_StretchableLayoutManager.h ***/ + #endif #ifndef __JUCE_STRETCHABLELAYOUTRESIZERBAR_JUCEHEADER__ -/********* Start of inlined file: juce_StretchableLayoutResizerBar.h *********/ +/*** Start of inlined file: juce_StretchableLayoutResizerBar.h ***/ #ifndef __JUCE_STRETCHABLELAYOUTRESIZERBAR_JUCEHEADER__ #define __JUCE_STRETCHABLELAYOUTRESIZERBAR_JUCEHEADER__ @@ -24040,12 +24340,13 @@ private: }; #endif // __JUCE_STRETCHABLELAYOUTRESIZERBAR_JUCEHEADER__ -/********* End of inlined file: juce_StretchableLayoutResizerBar.h *********/ +/*** End of inlined file: juce_StretchableLayoutResizerBar.h ***/ + #endif #ifndef __JUCE_STRETCHABLEOBJECTRESIZER_JUCEHEADER__ -/********* Start of inlined file: juce_StretchableObjectResizer.h *********/ +/*** Start of inlined file: juce_StretchableObjectResizer.h ***/ #ifndef __JUCE_STRETCHABLEOBJECTRESIZER_JUCEHEADER__ #define __JUCE_STRETCHABLEOBJECTRESIZER_JUCEHEADER__ @@ -24086,7 +24387,8 @@ private: }; #endif // __JUCE_STRETCHABLEOBJECTRESIZER_JUCEHEADER__ -/********* End of inlined file: juce_StretchableObjectResizer.h *********/ +/*** End of inlined file: juce_StretchableObjectResizer.h ***/ + #endif #ifndef __JUCE_TABBEDBUTTONBAR_JUCEHEADER__ @@ -24100,15 +24402,17 @@ private: #endif #ifndef __JUCE_LOOKANDFEEL_JUCEHEADER__ -/********* Start of inlined file: juce_LookAndFeel.h *********/ +/*** Start of inlined file: juce_LookAndFeel.h ***/ #ifndef __JUCE_LOOKANDFEEL_JUCEHEADER__ #define __JUCE_LOOKANDFEEL_JUCEHEADER__ -/********* Start of inlined file: juce_AlertWindow.h *********/ + +/*** Start of inlined file: juce_AlertWindow.h ***/ #ifndef __JUCE_ALERTWINDOW_JUCEHEADER__ #define __JUCE_ALERTWINDOW_JUCEHEADER__ -/********* Start of inlined file: juce_TextLayout.h *********/ + +/*** Start of inlined file: juce_TextLayout.h ***/ #ifndef __JUCE_TEXTLAYOUT_JUCEHEADER__ #define __JUCE_TEXTLAYOUT_JUCEHEADER__ @@ -24166,7 +24470,7 @@ private: }; #endif // __JUCE_TEXTLAYOUT_JUCEHEADER__ -/********* End of inlined file: juce_TextLayout.h *********/ +/*** End of inlined file: juce_TextLayout.h ***/ class JUCE_API AlertWindow : public TopLevelWindow, private ButtonListener @@ -24297,7 +24601,7 @@ private: }; #endif // __JUCE_ALERTWINDOW_JUCEHEADER__ -/********* End of inlined file: juce_AlertWindow.h *********/ +/*** End of inlined file: juce_AlertWindow.h ***/ class ToggleButton; class TextButton; @@ -24776,12 +25080,13 @@ private: }; #endif // __JUCE_LOOKANDFEEL_JUCEHEADER__ -/********* End of inlined file: juce_LookAndFeel.h *********/ +/*** End of inlined file: juce_LookAndFeel.h ***/ + #endif #ifndef __JUCE_OLDSCHOOLLOOKANDFEEL_JUCEHEADER__ -/********* Start of inlined file: juce_OldSchoolLookAndFeel.h *********/ +/*** Start of inlined file: juce_OldSchoolLookAndFeel.h ***/ #ifndef __JUCE_OLDSCHOOLLOOKANDFEEL_JUCEHEADER__ #define __JUCE_OLDSCHOOLLOOKANDFEEL_JUCEHEADER__ @@ -24894,7 +25199,8 @@ private: }; #endif // __JUCE_OLDSCHOOLLOOKANDFEEL_JUCEHEADER__ -/********* End of inlined file: juce_OldSchoolLookAndFeel.h *********/ +/*** End of inlined file: juce_OldSchoolLookAndFeel.h ***/ + #endif #ifndef __JUCE_MENUBARCOMPONENT_JUCEHEADER__ @@ -24908,7 +25214,7 @@ private: #endif #ifndef __JUCE_POPUPMENUCUSTOMCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_PopupMenuCustomComponent.h *********/ +/*** Start of inlined file: juce_PopupMenuCustomComponent.h ***/ #ifndef __JUCE_POPUPMENUCUSTOMCOMPONENT_JUCEHEADER__ #define __JUCE_POPUPMENUCUSTOMCOMPONENT_JUCEHEADER__ @@ -24939,7 +25245,8 @@ private: }; #endif // __JUCE_POPUPMENUCUSTOMCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_PopupMenuCustomComponent.h *********/ +/*** End of inlined file: juce_PopupMenuCustomComponent.h ***/ + #endif #ifndef __JUCE_COMPONENTDRAGGER_JUCEHEADER__ @@ -24956,11 +25263,12 @@ private: #endif #ifndef __JUCE_LASSOCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_LassoComponent.h *********/ +/*** Start of inlined file: juce_LassoComponent.h ***/ #ifndef __JUCE_LASSOCOMPONENT_JUCEHEADER__ #define __JUCE_LASSOCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_SelectedItemSet.h *********/ + +/*** Start of inlined file: juce_SelectedItemSet.h ***/ #ifndef __JUCE_SELECTEDITEMSET_JUCEHEADER__ #define __JUCE_SELECTEDITEMSET_JUCEHEADER__ @@ -25136,7 +25444,7 @@ private: }; #endif // __JUCE_SELECTEDITEMSET_JUCEHEADER__ -/********* End of inlined file: juce_SelectedItemSet.h *********/ +/*** End of inlined file: juce_SelectedItemSet.h ***/ template class LassoSource @@ -25248,7 +25556,8 @@ private: }; #endif // __JUCE_LASSOCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_LassoComponent.h *********/ +/*** End of inlined file: juce_LassoComponent.h ***/ + #endif #ifndef __JUCE_MOUSECURSOR_JUCEHEADER__ @@ -25259,7 +25568,7 @@ private: #endif #ifndef __JUCE_MOUSEHOVERDETECTOR_JUCEHEADER__ -/********* Start of inlined file: juce_MouseHoverDetector.h *********/ +/*** Start of inlined file: juce_MouseHoverDetector.h ***/ #ifndef __JUCE_MOUSEHOVERDETECTOR_JUCEHEADER__ #define __JUCE_MOUSEHOVERDETECTOR_JUCEHEADER__ @@ -25315,7 +25624,8 @@ private: }; #endif // __JUCE_MOUSEHOVERDETECTOR_JUCEHEADER__ -/********* End of inlined file: juce_MouseHoverDetector.h *********/ +/*** End of inlined file: juce_MouseHoverDetector.h ***/ + #endif #ifndef __JUCE_MOUSELISTENER_JUCEHEADER__ @@ -25326,7 +25636,7 @@ private: #endif #ifndef __JUCE_BOOLEANPROPERTYCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_BooleanPropertyComponent.h *********/ +/*** Start of inlined file: juce_BooleanPropertyComponent.h ***/ #ifndef __JUCE_BOOLEANPROPERTYCOMPONENT_JUCEHEADER__ #define __JUCE_BOOLEANPROPERTYCOMPONENT_JUCEHEADER__ @@ -25367,12 +25677,13 @@ private: }; #endif // __JUCE_BOOLEANPROPERTYCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_BooleanPropertyComponent.h *********/ +/*** End of inlined file: juce_BooleanPropertyComponent.h ***/ + #endif #ifndef __JUCE_BUTTONPROPERTYCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_ButtonPropertyComponent.h *********/ +/*** Start of inlined file: juce_ButtonPropertyComponent.h ***/ #ifndef __JUCE_BUTTONPROPERTYCOMPONENT_JUCEHEADER__ #define __JUCE_BUTTONPROPERTYCOMPONENT_JUCEHEADER__ @@ -25403,12 +25714,13 @@ private: }; #endif // __JUCE_BUTTONPROPERTYCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_ButtonPropertyComponent.h *********/ +/*** End of inlined file: juce_ButtonPropertyComponent.h ***/ + #endif #ifndef __JUCE_CHOICEPROPERTYCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_ChoicePropertyComponent.h *********/ +/*** Start of inlined file: juce_ChoicePropertyComponent.h ***/ #ifndef __JUCE_CHOICEPROPERTYCOMPONENT_JUCEHEADER__ #define __JUCE_CHOICEPROPERTYCOMPONENT_JUCEHEADER__ @@ -25450,7 +25762,8 @@ private: }; #endif // __JUCE_CHOICEPROPERTYCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_ChoicePropertyComponent.h *********/ +/*** End of inlined file: juce_ChoicePropertyComponent.h ***/ + #endif #ifndef __JUCE_PROPERTYCOMPONENT_JUCEHEADER__ @@ -25461,7 +25774,7 @@ private: #endif #ifndef __JUCE_SLIDERPROPERTYCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_SliderPropertyComponent.h *********/ +/*** Start of inlined file: juce_SliderPropertyComponent.h ***/ #ifndef __JUCE_SLIDERPROPERTYCOMPONENT_JUCEHEADER__ #define __JUCE_SLIDERPROPERTYCOMPONENT_JUCEHEADER__ @@ -25506,12 +25819,13 @@ protected: }; #endif // __JUCE_SLIDERPROPERTYCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_SliderPropertyComponent.h *********/ +/*** End of inlined file: juce_SliderPropertyComponent.h ***/ + #endif #ifndef __JUCE_TEXTPROPERTYCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_TextPropertyComponent.h *********/ +/*** Start of inlined file: juce_TextPropertyComponent.h ***/ #ifndef __JUCE_TEXTPROPERTYCOMPONENT_JUCEHEADER__ #define __JUCE_TEXTPROPERTYCOMPONENT_JUCEHEADER__ @@ -25550,12 +25864,13 @@ private: }; #endif // __JUCE_TEXTPROPERTYCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_TextPropertyComponent.h *********/ +/*** End of inlined file: juce_TextPropertyComponent.h ***/ + #endif #ifndef __JUCE_ACTIVEXCONTROLCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_ActiveXControlComponent.h *********/ +/*** Start of inlined file: juce_ActiveXControlComponent.h ***/ #ifndef __JUCE_ACTIVEXCONTROLCOMPONENT_JUCEHEADER__ #define __JUCE_ACTIVEXCONTROLCOMPONENT_JUCEHEADER__ @@ -25601,12 +25916,13 @@ private: #endif #endif // __JUCE_ACTIVEXCONTROLCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_ActiveXControlComponent.h *********/ +/*** End of inlined file: juce_ActiveXControlComponent.h ***/ + #endif #ifndef __JUCE_AUDIODEVICESELECTORCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_AudioDeviceSelectorComponent.h *********/ +/*** Start of inlined file: juce_AudioDeviceSelectorComponent.h ***/ #ifndef __JUCE_AUDIODEVICESELECTORCOMPONENT_JUCEHEADER__ #define __JUCE_AUDIODEVICESELECTORCOMPONENT_JUCEHEADER__ @@ -25659,12 +25975,13 @@ private: }; #endif // __JUCE_AUDIODEVICESELECTORCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_AudioDeviceSelectorComponent.h *********/ +/*** End of inlined file: juce_AudioDeviceSelectorComponent.h ***/ + #endif #ifndef __JUCE_BUBBLECOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_BubbleComponent.h *********/ +/*** Start of inlined file: juce_BubbleComponent.h ***/ #ifndef __JUCE_BUBBLECOMPONENT_JUCEHEADER__ #define __JUCE_BUBBLECOMPONENT_JUCEHEADER__ @@ -25717,12 +26034,13 @@ private: }; #endif // __JUCE_BUBBLECOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_BubbleComponent.h *********/ +/*** End of inlined file: juce_BubbleComponent.h ***/ + #endif #ifndef __JUCE_BUBBLEMESSAGECOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_BubbleMessageComponent.h *********/ +/*** Start of inlined file: juce_BubbleMessageComponent.h ***/ #ifndef __JUCE_BUBBLEMESSAGECOMPONENT_JUCEHEADER__ #define __JUCE_BUBBLEMESSAGECOMPONENT_JUCEHEADER__ @@ -25768,12 +26086,13 @@ private: }; #endif // __JUCE_BUBBLEMESSAGECOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_BubbleMessageComponent.h *********/ +/*** End of inlined file: juce_BubbleMessageComponent.h ***/ + #endif #ifndef __JUCE_COLOURSELECTOR_JUCEHEADER__ -/********* Start of inlined file: juce_ColourSelector.h *********/ +/*** Start of inlined file: juce_ColourSelector.h ***/ #ifndef __JUCE_COLOURSELECTOR_JUCEHEADER__ #define __JUCE_COLOURSELECTOR_JUCEHEADER__ @@ -25847,7 +26166,8 @@ private: }; #endif // __JUCE_COLOURSELECTOR_JUCEHEADER__ -/********* End of inlined file: juce_ColourSelector.h *********/ +/*** End of inlined file: juce_ColourSelector.h ***/ + #endif #ifndef __JUCE_DROPSHADOWER_JUCEHEADER__ @@ -25855,7 +26175,7 @@ private: #endif #ifndef __JUCE_MAGNIFIERCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_MagnifierComponent.h *********/ +/*** Start of inlined file: juce_MagnifierComponent.h ***/ #ifndef __JUCE_MAGNIFIERCOMPONENT_JUCEHEADER__ #define __JUCE_MAGNIFIERCOMPONENT_JUCEHEADER__ @@ -25904,12 +26224,13 @@ private: }; #endif // __JUCE_MAGNIFIERCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_MagnifierComponent.h *********/ +/*** End of inlined file: juce_MagnifierComponent.h ***/ + #endif #ifndef __JUCE_MIDIKEYBOARDCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_MidiKeyboardComponent.h *********/ +/*** Start of inlined file: juce_MidiKeyboardComponent.h ***/ #ifndef __JUCE_MIDIKEYBOARDCOMPONENT_JUCEHEADER__ #define __JUCE_MIDIKEYBOARDCOMPONENT_JUCEHEADER__ @@ -26076,12 +26397,13 @@ private: }; #endif // __JUCE_MIDIKEYBOARDCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_MidiKeyboardComponent.h *********/ +/*** End of inlined file: juce_MidiKeyboardComponent.h ***/ + #endif #ifndef __JUCE_NSVIEWCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_NSViewComponent.h *********/ +/*** Start of inlined file: juce_NSViewComponent.h ***/ #ifndef __JUCE_NSVIEWCOMPONENT_JUCEHEADER__ #define __JUCE_NSVIEWCOMPONENT_JUCEHEADER__ @@ -26118,12 +26440,13 @@ private: #endif #endif // __JUCE_NSVIEWCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_NSViewComponent.h *********/ +/*** End of inlined file: juce_NSViewComponent.h ***/ + #endif #ifndef __JUCE_OPENGLCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_OpenGLComponent.h *********/ +/*** Start of inlined file: juce_OpenGLComponent.h ***/ #ifndef __JUCE_OPENGLCOMPONENT_JUCEHEADER__ #define __JUCE_OPENGLCOMPONENT_JUCEHEADER__ @@ -26260,12 +26583,13 @@ private: #endif #endif // __JUCE_OPENGLCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_OpenGLComponent.h *********/ +/*** End of inlined file: juce_OpenGLComponent.h ***/ + #endif #ifndef __JUCE_PREFERENCESPANEL_JUCEHEADER__ -/********* Start of inlined file: juce_PreferencesPanel.h *********/ +/*** Start of inlined file: juce_PreferencesPanel.h ***/ #ifndef __JUCE_PREFERENCESPANEL_JUCEHEADER__ #define __JUCE_PREFERENCESPANEL_JUCEHEADER__ @@ -26313,12 +26637,13 @@ private: }; #endif // __JUCE_PREFERENCESPANEL_JUCEHEADER__ -/********* End of inlined file: juce_PreferencesPanel.h *********/ +/*** End of inlined file: juce_PreferencesPanel.h ***/ + #endif #ifndef __JUCE_QUICKTIMEMOVIECOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_QuickTimeMovieComponent.h *********/ +/*** Start of inlined file: juce_QuickTimeMovieComponent.h ***/ #ifndef __JUCE_QUICKTIMEMOVIECOMPONENT_JUCEHEADER__ #define __JUCE_QUICKTIMEMOVIECOMPONENT_JUCEHEADER__ @@ -26416,12 +26741,13 @@ private: #endif #endif // __JUCE_QUICKTIMEMOVIECOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_QuickTimeMovieComponent.h *********/ +/*** End of inlined file: juce_QuickTimeMovieComponent.h ***/ + #endif #ifndef __JUCE_SYSTEMTRAYICONCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_SystemTrayIconComponent.h *********/ +/*** Start of inlined file: juce_SystemTrayIconComponent.h ***/ #ifndef __JUCE_SYSTEMTRAYICONCOMPONENT_JUCEHEADER__ #define __JUCE_SYSTEMTRAYICONCOMPONENT_JUCEHEADER__ @@ -26453,12 +26779,13 @@ private: #endif #endif // __JUCE_SYSTEMTRAYICONCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_SystemTrayIconComponent.h *********/ +/*** End of inlined file: juce_SystemTrayIconComponent.h ***/ + #endif #ifndef __JUCE_WEBBROWSERCOMPONENT_JUCEHEADER__ -/********* Start of inlined file: juce_WebBrowserComponent.h *********/ +/*** Start of inlined file: juce_WebBrowserComponent.h ***/ #ifndef __JUCE_WEBBROWSERCOMPONENT_JUCEHEADER__ #define __JUCE_WEBBROWSERCOMPONENT_JUCEHEADER__ @@ -26513,7 +26840,8 @@ private: #endif #endif // __JUCE_WEBBROWSERCOMPONENT_JUCEHEADER__ -/********* End of inlined file: juce_WebBrowserComponent.h *********/ +/*** End of inlined file: juce_WebBrowserComponent.h ***/ + #endif #ifndef __JUCE_ALERTWINDOW_JUCEHEADER__ @@ -26524,7 +26852,7 @@ private: #endif #ifndef __JUCE_DIALOGWINDOW_JUCEHEADER__ -/********* Start of inlined file: juce_DialogWindow.h *********/ +/*** Start of inlined file: juce_DialogWindow.h ***/ #ifndef __JUCE_DIALOGWINDOW_JUCEHEADER__ #define __JUCE_DIALOGWINDOW_JUCEHEADER__ @@ -26560,7 +26888,8 @@ private: }; #endif // __JUCE_DIALOGWINDOW_JUCEHEADER__ -/********* End of inlined file: juce_DialogWindow.h *********/ +/*** End of inlined file: juce_DialogWindow.h ***/ + #endif #ifndef __JUCE_DOCUMENTWINDOW_JUCEHEADER__ @@ -26571,7 +26900,7 @@ private: #endif #ifndef __JUCE_SPLASHSCREEN_JUCEHEADER__ -/********* Start of inlined file: juce_SplashScreen.h *********/ +/*** Start of inlined file: juce_SplashScreen.h ***/ #ifndef __JUCE_SPLASHSCREEN_JUCEHEADER__ #define __JUCE_SPLASHSCREEN_JUCEHEADER__ @@ -26613,12 +26942,13 @@ private: }; #endif // __JUCE_SPLASHSCREEN_JUCEHEADER__ -/********* End of inlined file: juce_SplashScreen.h *********/ +/*** End of inlined file: juce_SplashScreen.h ***/ + #endif #ifndef __JUCE_THREADWITHPROGRESSWINDOW_JUCEHEADER__ -/********* Start of inlined file: juce_ThreadWithProgressWindow.h *********/ +/*** Start of inlined file: juce_ThreadWithProgressWindow.h ***/ #ifndef __JUCE_THREADWITHPROGRESSWINDOW_JUCEHEADER__ #define __JUCE_THREADWITHPROGRESSWINDOW_JUCEHEADER__ @@ -26659,7 +26989,8 @@ private: }; #endif // __JUCE_THREADWITHPROGRESSWINDOW_JUCEHEADER__ -/********* End of inlined file: juce_ThreadWithProgressWindow.h *********/ +/*** End of inlined file: juce_ThreadWithProgressWindow.h ***/ + #endif #ifndef __JUCE_TOOLTIPWINDOW_JUCEHEADER__ @@ -26694,7 +27025,7 @@ private: #endif #ifndef __JUCE_LOWLEVELGRAPHICSCONTEXT_JUCEHEADER__ -/********* Start of inlined file: juce_LowLevelGraphicsContext.h *********/ +/*** Start of inlined file: juce_LowLevelGraphicsContext.h ***/ #ifndef __JUCE_LOWLEVELGRAPHICSCONTEXT_JUCEHEADER__ #define __JUCE_LOWLEVELGRAPHICSCONTEXT_JUCEHEADER__ @@ -26744,12 +27075,13 @@ public: }; #endif // __JUCE_LOWLEVELGRAPHICSCONTEXT_JUCEHEADER__ -/********* End of inlined file: juce_LowLevelGraphicsContext.h *********/ +/*** End of inlined file: juce_LowLevelGraphicsContext.h ***/ + #endif #ifndef __JUCE_LOWLEVELGRAPHICSPOSTSCRIPTRENDERER_JUCEHEADER__ -/********* Start of inlined file: juce_LowLevelGraphicsPostScriptRenderer.h *********/ +/*** Start of inlined file: juce_LowLevelGraphicsPostScriptRenderer.h ***/ #ifndef __JUCE_LOWLEVELGRAPHICSPOSTSCRIPTRENDERER_JUCEHEADER__ #define __JUCE_LOWLEVELGRAPHICSPOSTSCRIPTRENDERER_JUCEHEADER__ @@ -26836,12 +27168,13 @@ protected: }; #endif // __JUCE_LOWLEVELGRAPHICSPOSTSCRIPTRENDERER_JUCEHEADER__ -/********* End of inlined file: juce_LowLevelGraphicsPostScriptRenderer.h *********/ +/*** End of inlined file: juce_LowLevelGraphicsPostScriptRenderer.h ***/ + #endif #ifndef __JUCE_LOWLEVELGRAPHICSSOFTWARERENDERER_JUCEHEADER__ -/********* Start of inlined file: juce_LowLevelGraphicsSoftwareRenderer.h *********/ +/*** Start of inlined file: juce_LowLevelGraphicsSoftwareRenderer.h ***/ #ifndef __JUCE_LOWLEVELGRAPHICSSOFTWARERENDERER_JUCEHEADER__ #define __JUCE_LOWLEVELGRAPHICSSOFTWARERENDERER_JUCEHEADER__ @@ -26905,7 +27238,8 @@ protected: }; #endif // __JUCE_LOWLEVELGRAPHICSSOFTWARERENDERER_JUCEHEADER__ -/********* End of inlined file: juce_LowLevelGraphicsSoftwareRenderer.h *********/ +/*** End of inlined file: juce_LowLevelGraphicsSoftwareRenderer.h ***/ + #endif #ifndef __JUCE_RECTANGLEPLACEMENT_JUCEHEADER__ @@ -26916,7 +27250,7 @@ protected: #endif #ifndef __JUCE_DRAWABLECOMPOSITE_JUCEHEADER__ -/********* Start of inlined file: juce_DrawableComposite.h *********/ +/*** Start of inlined file: juce_DrawableComposite.h ***/ #ifndef __JUCE_DRAWABLECOMPOSITE_JUCEHEADER__ #define __JUCE_DRAWABLECOMPOSITE_JUCEHEADER__ @@ -26964,12 +27298,13 @@ private: }; #endif // __JUCE_DRAWABLECOMPOSITE_JUCEHEADER__ -/********* End of inlined file: juce_DrawableComposite.h *********/ +/*** End of inlined file: juce_DrawableComposite.h ***/ + #endif #ifndef __JUCE_DRAWABLEIMAGE_JUCEHEADER__ -/********* Start of inlined file: juce_DrawableImage.h *********/ +/*** Start of inlined file: juce_DrawableImage.h ***/ #ifndef __JUCE_DRAWABLEIMAGE_JUCEHEADER__ #define __JUCE_DRAWABLEIMAGE_JUCEHEADER__ @@ -27018,12 +27353,13 @@ private: }; #endif // __JUCE_DRAWABLEIMAGE_JUCEHEADER__ -/********* End of inlined file: juce_DrawableImage.h *********/ +/*** End of inlined file: juce_DrawableImage.h ***/ + #endif #ifndef __JUCE_DRAWABLEPATH_JUCEHEADER__ -/********* Start of inlined file: juce_DrawablePath.h *********/ +/*** Start of inlined file: juce_DrawablePath.h ***/ #ifndef __JUCE_DRAWABLEPATH_JUCEHEADER__ #define __JUCE_DRAWABLEPATH_JUCEHEADER__ @@ -27074,12 +27410,13 @@ private: }; #endif // __JUCE_DRAWABLEPATH_JUCEHEADER__ -/********* End of inlined file: juce_DrawablePath.h *********/ +/*** End of inlined file: juce_DrawablePath.h ***/ + #endif #ifndef __JUCE_DRAWABLETEXT_JUCEHEADER__ -/********* Start of inlined file: juce_DrawableText.h *********/ +/*** Start of inlined file: juce_DrawableText.h ***/ #ifndef __JUCE_DRAWABLETEXT_JUCEHEADER__ #define __JUCE_DRAWABLETEXT_JUCEHEADER__ @@ -27119,7 +27456,8 @@ private: }; #endif // __JUCE_DRAWABLETEXT_JUCEHEADER__ -/********* End of inlined file: juce_DrawableText.h *********/ +/*** End of inlined file: juce_DrawableText.h ***/ + #endif #ifndef __JUCE_DROPSHADOWEFFECT_JUCEHEADER__ @@ -27127,7 +27465,7 @@ private: #endif #ifndef __JUCE_GLOWEFFECT_JUCEHEADER__ -/********* Start of inlined file: juce_GlowEffect.h *********/ +/*** Start of inlined file: juce_GlowEffect.h ***/ #ifndef __JUCE_GLOWEFFECT_JUCEHEADER__ #define __JUCE_GLOWEFFECT_JUCEHEADER__ @@ -27152,7 +27490,8 @@ private: }; #endif // __JUCE_GLOWEFFECT_JUCEHEADER__ -/********* End of inlined file: juce_GlowEffect.h *********/ +/*** End of inlined file: juce_GlowEffect.h ***/ + #endif #ifndef __JUCE_IMAGEEFFECTFILTER_JUCEHEADER__ @@ -27160,7 +27499,7 @@ private: #endif #ifndef __JUCE_REDUCEOPACITYEFFECT_JUCEHEADER__ -/********* Start of inlined file: juce_ReduceOpacityEffect.h *********/ +/*** Start of inlined file: juce_ReduceOpacityEffect.h ***/ #ifndef __JUCE_REDUCEOPACITYEFFECT_JUCEHEADER__ #define __JUCE_REDUCEOPACITYEFFECT_JUCEHEADER__ @@ -27183,7 +27522,8 @@ private: }; #endif // __JUCE_REDUCEOPACITYEFFECT_JUCEHEADER__ -/********* End of inlined file: juce_ReduceOpacityEffect.h *********/ +/*** End of inlined file: juce_ReduceOpacityEffect.h ***/ + #endif #ifndef __JUCE_FONT_JUCEHEADER__ @@ -27212,7 +27552,7 @@ private: #endif #ifndef __JUCE_PATHITERATOR_JUCEHEADER__ -/********* Start of inlined file: juce_PathIterator.h *********/ +/*** Start of inlined file: juce_PathIterator.h ***/ #ifndef __JUCE_PATHITERATOR_JUCEHEADER__ #define __JUCE_PATHITERATOR_JUCEHEADER__ @@ -27259,7 +27599,8 @@ private: }; #endif // __JUCE_PATHITERATOR_JUCEHEADER__ -/********* End of inlined file: juce_PathIterator.h *********/ +/*** End of inlined file: juce_PathIterator.h ***/ + #endif #ifndef __JUCE_PATHSTROKETYPE_JUCEHEADER__ @@ -27270,7 +27611,7 @@ private: #endif #ifndef __JUCE_POSITIONEDRECTANGLE_JUCEHEADER__ -/********* Start of inlined file: juce_PositionedRectangle.h *********/ +/*** Start of inlined file: juce_PositionedRectangle.h ***/ #ifndef __JUCE_POSITIONEDRECTANGLE_JUCEHEADER__ #define __JUCE_POSITIONEDRECTANGLE_JUCEHEADER__ @@ -27392,7 +27733,8 @@ private: }; #endif // __JUCE_POSITIONEDRECTANGLE_JUCEHEADER__ -/********* End of inlined file: juce_PositionedRectangle.h *********/ +/*** End of inlined file: juce_PositionedRectangle.h ***/ + #endif #ifndef __JUCE_RECTANGLE_JUCEHEADER__ @@ -27403,7 +27745,7 @@ private: #endif #ifndef __JUCE_CAMERADEVICE_JUCEHEADER__ -/********* Start of inlined file: juce_CameraDevice.h *********/ +/*** Start of inlined file: juce_CameraDevice.h ***/ #ifndef __JUCE_CAMERADEVICE_JUCEHEADER__ #define __JUCE_CAMERADEVICE_JUCEHEADER__ @@ -27461,7 +27803,8 @@ private: #endif #endif // __JUCE_CAMERADEVICE_JUCEHEADER__ -/********* End of inlined file: juce_CameraDevice.h *********/ +/*** End of inlined file: juce_CameraDevice.h ***/ + #endif #ifndef __JUCE_IMAGE_JUCEHEADER__ @@ -27469,7 +27812,7 @@ private: #endif #ifndef __JUCE_IMAGECACHE_JUCEHEADER__ -/********* Start of inlined file: juce_ImageCache.h *********/ +/*** Start of inlined file: juce_ImageCache.h ***/ #ifndef __JUCE_IMAGECACHE_JUCEHEADER__ #define __JUCE_IMAGECACHE_JUCEHEADER__ @@ -27516,12 +27859,13 @@ private: }; #endif // __JUCE_IMAGECACHE_JUCEHEADER__ -/********* End of inlined file: juce_ImageCache.h *********/ +/*** End of inlined file: juce_ImageCache.h ***/ + #endif #ifndef __JUCE_IMAGECONVOLUTIONKERNEL_JUCEHEADER__ -/********* Start of inlined file: juce_ImageConvolutionKernel.h *********/ +/*** Start of inlined file: juce_ImageConvolutionKernel.h ***/ #ifndef __JUCE_IMAGECONVOLUTIONKERNEL_JUCEHEADER__ #define __JUCE_IMAGECONVOLUTIONKERNEL_JUCEHEADER__ @@ -27568,12 +27912,13 @@ private: }; #endif // __JUCE_IMAGECONVOLUTIONKERNEL_JUCEHEADER__ -/********* End of inlined file: juce_ImageConvolutionKernel.h *********/ +/*** End of inlined file: juce_ImageConvolutionKernel.h ***/ + #endif #ifndef __JUCE_IMAGEFILEFORMAT_JUCEHEADER__ -/********* Start of inlined file: juce_ImageFileFormat.h *********/ +/*** Start of inlined file: juce_ImageFileFormat.h ***/ #ifndef __JUCE_IMAGEFILEFORMAT_JUCEHEADER__ #define __JUCE_IMAGEFILEFORMAT_JUCEHEADER__ @@ -27643,7 +27988,8 @@ private: }; #endif // __JUCE_IMAGEFILEFORMAT_JUCEHEADER__ -/********* End of inlined file: juce_ImageFileFormat.h *********/ +/*** End of inlined file: juce_ImageFileFormat.h ***/ + #endif #ifndef __JUCE_DELETEDATSHUTDOWN_JUCEHEADER__ @@ -27651,7 +27997,7 @@ private: #endif #ifndef __JUCE_FILEBASEDDOCUMENT_JUCEHEADER__ -/********* Start of inlined file: juce_FileBasedDocument.h *********/ +/*** Start of inlined file: juce_FileBasedDocument.h ***/ #ifndef __JUCE_FILEBASEDDOCUMENT_JUCEHEADER__ #define __JUCE_FILEBASEDDOCUMENT_JUCEHEADER__ @@ -27726,7 +28072,8 @@ private: }; #endif // __JUCE_FILEBASEDDOCUMENT_JUCEHEADER__ -/********* End of inlined file: juce_FileBasedDocument.h *********/ +/*** End of inlined file: juce_FileBasedDocument.h ***/ + #endif #ifndef __JUCE_PROPERTIESFILE_JUCEHEADER__ @@ -27734,7 +28081,7 @@ private: #endif #ifndef __JUCE_RECENTLYOPENEDFILESLIST_JUCEHEADER__ -/********* Start of inlined file: juce_RecentlyOpenedFilesList.h *********/ +/*** Start of inlined file: juce_RecentlyOpenedFilesList.h ***/ #ifndef __JUCE_RECENTLYOPENEDFILESLIST_JUCEHEADER__ #define __JUCE_RECENTLYOPENEDFILESLIST_JUCEHEADER__ @@ -27781,7 +28128,8 @@ private: }; #endif // __JUCE_RECENTLYOPENEDFILESLIST_JUCEHEADER__ -/********* End of inlined file: juce_RecentlyOpenedFilesList.h *********/ +/*** End of inlined file: juce_RecentlyOpenedFilesList.h ***/ + #endif #ifndef __JUCE_SELECTEDITEMSET_JUCEHEADER__ @@ -27789,7 +28137,7 @@ private: #endif #ifndef __JUCE_SYSTEMCLIPBOARD_JUCEHEADER__ -/********* Start of inlined file: juce_SystemClipboard.h *********/ +/*** Start of inlined file: juce_SystemClipboard.h ***/ #ifndef __JUCE_SYSTEMCLIPBOARD_JUCEHEADER__ #define __JUCE_SYSTEMCLIPBOARD_JUCEHEADER__ @@ -27802,7 +28150,8 @@ public: }; #endif // __JUCE_SYSTEMCLIPBOARD_JUCEHEADER__ -/********* End of inlined file: juce_SystemClipboard.h *********/ +/*** End of inlined file: juce_SystemClipboard.h ***/ + #endif #ifndef __JUCE_UNDOABLEACTION_JUCEHEADER__ @@ -27813,7 +28162,8 @@ public: #endif #endif -/********* End of inlined file: juce_app_includes.h *********/ +/*** End of inlined file: juce_app_includes.h ***/ + #endif @@ -27879,7 +28229,7 @@ END_JUCE_NAMESPACE // Auto-link the other win32 libs that are needed by library calls.. #if ! (defined (DONT_AUTOLINK_TO_WIN32_LIBRARIES) || defined (JUCE_DLL)) -/********* Start of inlined file: juce_win32_AutoLinkLibraries.h *********/ +/*** Start of inlined file: juce_win32_AutoLinkLibraries.h ***/ // Auto-links to various win32 libs that are needed by library calls.. #pragma comment(lib, "kernel32.lib") #pragma comment(lib, "user32.lib") @@ -27908,7 +28258,8 @@ END_JUCE_NAMESPACE #if JUCE_USE_CAMERA #pragma comment (lib, "Strmiids.lib") #endif -/********* End of inlined file: juce_win32_AutoLinkLibraries.h *********/ +/*** End of inlined file: juce_win32_AutoLinkLibraries.h ***/ + #endif @@ -27954,6 +28305,6 @@ END_JUCE_NAMESPACE #endif #endif // __JUCE_JUCEHEADER__ -/********* End of inlined file: juce.h *********/ +/*** End of inlined file: juce.h ***/ #endif // __JUCE_AMALGAMATED_TEMPLATE_JUCEHEADER__