| @@ -24,6 +24,7 @@ | |||||
| */ | */ | ||||
| #include "../JuceLibraryCode/JuceHeader.h" | #include "../JuceLibraryCode/JuceHeader.h" | ||||
| #include "MainHostWindow.h" | |||||
| #include "FilterGraph.h" | #include "FilterGraph.h" | ||||
| #include "InternalFilters.h" | #include "InternalFilters.h" | ||||
| #include "GraphEditorPanel.h" | #include "GraphEditorPanel.h" | ||||
| @@ -265,7 +266,7 @@ const String FilterGraph::saveDocument (const File& file) | |||||
| const File FilterGraph::getLastDocumentOpened() | const File FilterGraph::getLastDocumentOpened() | ||||
| { | { | ||||
| RecentlyOpenedFilesList recentFiles; | RecentlyOpenedFilesList recentFiles; | ||||
| recentFiles.restoreFromString (ApplicationProperties::getInstance()->getUserSettings() | |||||
| recentFiles.restoreFromString (appProperties->getUserSettings() | |||||
| ->getValue ("recentFilterGraphFiles")); | ->getValue ("recentFilterGraphFiles")); | ||||
| return recentFiles.getFile (0); | return recentFiles.getFile (0); | ||||
| @@ -274,12 +275,12 @@ const File FilterGraph::getLastDocumentOpened() | |||||
| void FilterGraph::setLastDocumentOpened (const File& file) | void FilterGraph::setLastDocumentOpened (const File& file) | ||||
| { | { | ||||
| RecentlyOpenedFilesList recentFiles; | RecentlyOpenedFilesList recentFiles; | ||||
| recentFiles.restoreFromString (ApplicationProperties::getInstance()->getUserSettings() | |||||
| recentFiles.restoreFromString (appProperties->getUserSettings() | |||||
| ->getValue ("recentFilterGraphFiles")); | ->getValue ("recentFilterGraphFiles")); | ||||
| recentFiles.addFile (file); | recentFiles.addFile (file); | ||||
| ApplicationProperties::getInstance()->getUserSettings() | |||||
| appProperties->getUserSettings() | |||||
| ->setValue ("recentFilterGraphFiles", recentFiles.toString()); | ->setValue ("recentFilterGraphFiles", recentFiles.toString()); | ||||
| } | } | ||||
| @@ -32,7 +32,8 @@ | |||||
| #endif | #endif | ||||
| ApplicationCommandManager* commandManager = 0; | |||||
| ApplicationCommandManager* commandManager = nullptr; | |||||
| ApplicationProperties* appProperties = nullptr; | |||||
| //============================================================================== | //============================================================================== | ||||
| @@ -44,10 +45,6 @@ public: | |||||
| { | { | ||||
| } | } | ||||
| ~PluginHostApp() | |||||
| { | |||||
| } | |||||
| void initialise (const String& commandLine) | void initialise (const String& commandLine) | ||||
| { | { | ||||
| // initialise our settings file.. | // initialise our settings file.. | ||||
| @@ -57,7 +54,8 @@ public: | |||||
| options.filenameSuffix = "settings"; | options.filenameSuffix = "settings"; | ||||
| options.osxLibrarySubFolder = "Preferences"; | options.osxLibrarySubFolder = "Preferences"; | ||||
| ApplicationProperties::getInstance()->setStorageParameters (options); | |||||
| appProperties = new ApplicationProperties(); | |||||
| appProperties->setStorageParameters (options); | |||||
| commandManager = new ApplicationCommandManager(); | commandManager = new ApplicationCommandManager(); | ||||
| @@ -85,9 +83,10 @@ public: | |||||
| void shutdown() | void shutdown() | ||||
| { | { | ||||
| mainWindow = 0; | mainWindow = 0; | ||||
| ApplicationProperties::getInstance()->closeFiles(); | |||||
| appProperties->closeFiles(); | |||||
| deleteAndZero (commandManager); | deleteAndZero (commandManager); | ||||
| deleteAndZero (appProperties); | |||||
| } | } | ||||
| void systemRequestedQuit() | void systemRequestedQuit() | ||||
| @@ -38,24 +38,24 @@ public: | |||||
| { | { | ||||
| currentPluginListWindow = this; | currentPluginListWindow = this; | ||||
| const File deadMansPedalFile (ApplicationProperties::getInstance()->getUserSettings() | |||||
| const File deadMansPedalFile (appProperties->getUserSettings() | |||||
| ->getFile().getSiblingFile ("RecentlyCrashedPluginsList")); | ->getFile().getSiblingFile ("RecentlyCrashedPluginsList")); | ||||
| setContentOwned (new PluginListComponent (knownPluginList, | setContentOwned (new PluginListComponent (knownPluginList, | ||||
| deadMansPedalFile, | deadMansPedalFile, | ||||
| ApplicationProperties::getInstance()->getUserSettings()), true); | |||||
| appProperties->getUserSettings()), true); | |||||
| setResizable (true, false); | setResizable (true, false); | ||||
| setResizeLimits (300, 400, 800, 1500); | setResizeLimits (300, 400, 800, 1500); | ||||
| setTopLeftPosition (60, 60); | setTopLeftPosition (60, 60); | ||||
| restoreWindowStateFromString (ApplicationProperties::getInstance()->getUserSettings()->getValue ("listWindowPos")); | |||||
| restoreWindowStateFromString (appProperties->getUserSettings()->getValue ("listWindowPos")); | |||||
| setVisible (true); | setVisible (true); | ||||
| } | } | ||||
| ~PluginListWindow() | ~PluginListWindow() | ||||
| { | { | ||||
| ApplicationProperties::getInstance()->getUserSettings()->setValue ("listWindowPos", getWindowStateAsString()); | |||||
| appProperties->getUserSettings()->setValue ("listWindowPos", getWindowStateAsString()); | |||||
| clearContentComponent(); | clearContentComponent(); | ||||
| @@ -79,7 +79,7 @@ MainHostWindow::MainHostWindow() | |||||
| : DocumentWindow (JUCEApplication::getInstance()->getApplicationName(), Colours::lightgrey, | : DocumentWindow (JUCEApplication::getInstance()->getApplicationName(), Colours::lightgrey, | ||||
| DocumentWindow::allButtons) | DocumentWindow::allButtons) | ||||
| { | { | ||||
| XmlElement* const savedAudioState = ApplicationProperties::getInstance()->getUserSettings() | |||||
| XmlElement* const savedAudioState = appProperties->getUserSettings() | |||||
| ->getXmlValue ("audioDeviceState"); | ->getXmlValue ("audioDeviceState"); | ||||
| deviceManager.initialise (256, 256, savedAudioState, true); | deviceManager.initialise (256, 256, savedAudioState, true); | ||||
| @@ -92,24 +92,19 @@ MainHostWindow::MainHostWindow() | |||||
| setContentOwned (new GraphDocumentComponent (&deviceManager), false); | setContentOwned (new GraphDocumentComponent (&deviceManager), false); | ||||
| restoreWindowStateFromString (ApplicationProperties::getInstance()->getUserSettings()->getValue ("mainWindowPos")); | |||||
| restoreWindowStateFromString (appProperties->getUserSettings()->getValue ("mainWindowPos")); | |||||
| setVisible (true); | setVisible (true); | ||||
| InternalPluginFormat internalFormat; | InternalPluginFormat internalFormat; | ||||
| internalFormat.getAllTypes (internalTypes); | internalFormat.getAllTypes (internalTypes); | ||||
| XmlElement* const savedPluginList = ApplicationProperties::getInstance() | |||||
| ->getUserSettings() | |||||
| ->getXmlValue ("pluginList"); | |||||
| ScopedPointer<XmlElement> savedPluginList (appProperties->getUserSettings()->getXmlValue ("pluginList")); | |||||
| if (savedPluginList != 0) | |||||
| { | |||||
| if (savedPluginList != nullptr) | |||||
| knownPluginList.recreateFromXml (*savedPluginList); | knownPluginList.recreateFromXml (*savedPluginList); | ||||
| delete savedPluginList; | |||||
| } | |||||
| pluginSortMethod = (KnownPluginList::SortMethod) ApplicationProperties::getInstance()->getUserSettings() | |||||
| pluginSortMethod = (KnownPluginList::SortMethod) appProperties->getUserSettings() | |||||
| ->getIntValue ("pluginSortMethod", KnownPluginList::sortByManufacturer); | ->getIntValue ("pluginSortMethod", KnownPluginList::sortByManufacturer); | ||||
| knownPluginList.addChangeListener (this); | knownPluginList.addChangeListener (this); | ||||
| @@ -137,7 +132,7 @@ MainHostWindow::~MainHostWindow() | |||||
| knownPluginList.removeChangeListener (this); | knownPluginList.removeChangeListener (this); | ||||
| ApplicationProperties::getInstance()->getUserSettings()->setValue ("mainWindowPos", getWindowStateAsString()); | |||||
| appProperties->getUserSettings()->setValue ("mainWindowPos", getWindowStateAsString()); | |||||
| clearContentComponent(); | clearContentComponent(); | ||||
| } | } | ||||
| @@ -168,12 +163,11 @@ void MainHostWindow::changeListenerCallback (ChangeBroadcaster*) | |||||
| if (savedPluginList != 0) | if (savedPluginList != 0) | ||||
| { | { | ||||
| ApplicationProperties::getInstance()->getUserSettings() | |||||
| ->setValue ("pluginList", savedPluginList); | |||||
| appProperties->getUserSettings()->setValue ("pluginList", savedPluginList); | |||||
| delete savedPluginList; | delete savedPluginList; | ||||
| ApplicationProperties::getInstance()->saveIfNeeded(); | |||||
| appProperties->saveIfNeeded(); | |||||
| } | } | ||||
| } | } | ||||
| @@ -194,7 +188,7 @@ const PopupMenu MainHostWindow::getMenuForIndex (int topLevelMenuIndex, const St | |||||
| menu.addCommandItem (commandManager, CommandIDs::open); | menu.addCommandItem (commandManager, CommandIDs::open); | ||||
| RecentlyOpenedFilesList recentFiles; | RecentlyOpenedFilesList recentFiles; | ||||
| recentFiles.restoreFromString (ApplicationProperties::getInstance()->getUserSettings() | |||||
| recentFiles.restoreFromString (appProperties->getUserSettings() | |||||
| ->getValue ("recentFilterGraphFiles")); | ->getValue ("recentFilterGraphFiles")); | ||||
| PopupMenu recentFilesMenu; | PopupMenu recentFilesMenu; | ||||
| @@ -252,7 +246,7 @@ void MainHostWindow::menuItemSelected (int menuItemID, int /*topLevelMenuIndex*/ | |||||
| else if (menuItemID >= 100 && menuItemID < 200) | else if (menuItemID >= 100 && menuItemID < 200) | ||||
| { | { | ||||
| RecentlyOpenedFilesList recentFiles; | RecentlyOpenedFilesList recentFiles; | ||||
| recentFiles.restoreFromString (ApplicationProperties::getInstance()->getUserSettings() | |||||
| recentFiles.restoreFromString (appProperties->getUserSettings() | |||||
| ->getValue ("recentFilterGraphFiles")); | ->getValue ("recentFilterGraphFiles")); | ||||
| if (graphEditor != 0 && graphEditor->graph.saveIfNeededAndUserAgrees() == FileBasedDocument::savedOk) | if (graphEditor != 0 && graphEditor->graph.saveIfNeededAndUserAgrees() == FileBasedDocument::savedOk) | ||||
| @@ -271,8 +265,7 @@ void MainHostWindow::menuItemSelected (int menuItemID, int /*topLevelMenuIndex*/ | |||||
| else if (menuItemID == 204) | else if (menuItemID == 204) | ||||
| pluginSortMethod = KnownPluginList::sortByFileSystemLocation; | pluginSortMethod = KnownPluginList::sortByFileSystemLocation; | ||||
| ApplicationProperties::getInstance()->getUserSettings() | |||||
| ->setValue ("pluginSortMethod", (int) pluginSortMethod); | |||||
| appProperties->getUserSettings()->setValue ("pluginSortMethod", (int) pluginSortMethod); | |||||
| } | } | ||||
| else | else | ||||
| { | { | ||||
| @@ -447,12 +440,11 @@ void MainHostWindow::showAudioSettings() | |||||
| XmlElement* const audioState = deviceManager.createStateXml(); | XmlElement* const audioState = deviceManager.createStateXml(); | ||||
| ApplicationProperties::getInstance()->getUserSettings() | |||||
| ->setValue ("audioDeviceState", audioState); | |||||
| appProperties->getUserSettings()->setValue ("audioDeviceState", audioState); | |||||
| delete audioState; | delete audioState; | ||||
| ApplicationProperties::getInstance()->getUserSettings()->saveIfNeeded(); | |||||
| appProperties->getUserSettings()->saveIfNeeded(); | |||||
| GraphDocumentComponent* const graphEditor = getGraphEditor(); | GraphDocumentComponent* const graphEditor = getGraphEditor(); | ||||
| @@ -42,7 +42,7 @@ namespace CommandIDs | |||||
| } | } | ||||
| extern ApplicationCommandManager* commandManager; | extern ApplicationCommandManager* commandManager; | ||||
| extern ApplicationProperties* appProperties; | |||||
| //============================================================================== | //============================================================================== | ||||
| /** | /** | ||||
| @@ -19907,8 +19907,6 @@ END_JUCE_NAMESPACE | |||||
| /*** Start of inlined file: juce_ApplicationProperties.cpp ***/ | /*** Start of inlined file: juce_ApplicationProperties.cpp ***/ | ||||
| BEGIN_JUCE_NAMESPACE | BEGIN_JUCE_NAMESPACE | ||||
| juce_ImplementSingleton (ApplicationProperties) | |||||
| ApplicationProperties::ApplicationProperties() | ApplicationProperties::ApplicationProperties() | ||||
| : commonSettingsAreReadOnly (0) | : commonSettingsAreReadOnly (0) | ||||
| { | { | ||||
| @@ -19917,7 +19915,6 @@ ApplicationProperties::ApplicationProperties() | |||||
| ApplicationProperties::~ApplicationProperties() | ApplicationProperties::~ApplicationProperties() | ||||
| { | { | ||||
| closeFiles(); | closeFiles(); | ||||
| clearSingletonInstance(); | |||||
| } | } | ||||
| void ApplicationProperties::setStorageParameters (const PropertiesFile::Options& newOptions) | void ApplicationProperties::setStorageParameters (const PropertiesFile::Options& newOptions) | ||||
| @@ -34104,11 +34101,6 @@ END_JUCE_NAMESPACE | |||||
| #else | #else | ||||
| #include <Cocoa/Cocoa.h> | #include <Cocoa/Cocoa.h> | ||||
| #include <Carbon/Carbon.h> | #include <Carbon/Carbon.h> | ||||
| static bool makeFSRefFromPath (FSRef* destFSRef, const String& path) | |||||
| { | |||||
| return FSPathMakeRef (reinterpret_cast <const UInt8*> (path.toUTF8().getAddress()), destFSRef, 0) == noErr; | |||||
| } | |||||
| #endif | #endif | ||||
| #if ! (JUCE_MAC && JUCE_64BIT) | #if ! (JUCE_MAC && JUCE_64BIT) | ||||
| @@ -34119,6 +34111,13 @@ BEGIN_JUCE_NAMESPACE | |||||
| #endif | #endif | ||||
| #if JUCE_MAC | |||||
| static bool makeFSRefFromPath (FSRef* destFSRef, const String& path) | |||||
| { | |||||
| return FSPathMakeRef (reinterpret_cast <const UInt8*> (path.toUTF8().getAddress()), destFSRef, 0) == noErr; | |||||
| } | |||||
| #endif | |||||
| #undef PRAGMA_ALIGN_SUPPORTED | #undef PRAGMA_ALIGN_SUPPORTED | ||||
| #define VST_FORCE_DEPRECATED 0 | #define VST_FORCE_DEPRECATED 0 | ||||
| @@ -73,7 +73,7 @@ namespace JuceDummyNamespace {} | |||||
| */ | */ | ||||
| #define JUCE_MAJOR_VERSION 1 | #define JUCE_MAJOR_VERSION 1 | ||||
| #define JUCE_MINOR_VERSION 54 | #define JUCE_MINOR_VERSION 54 | ||||
| #define JUCE_BUILDNUMBER 20 | |||||
| #define JUCE_BUILDNUMBER 21 | |||||
| /** Current Juce version number. | /** Current Juce version number. | ||||
| @@ -35029,8 +35029,7 @@ private: | |||||
| /** | /** | ||||
| Manages a collection of properties. | Manages a collection of properties. | ||||
| This is a slightly higher-level wrapper for PropertiesFile, which can be used | |||||
| as a singleton. | |||||
| This is a slightly higher-level wrapper for managing PropertiesFile objects. | |||||
| It holds two different PropertiesFile objects internally, one for user-specific | It holds two different PropertiesFile objects internally, one for user-specific | ||||
| settings (stored in your user directory), and one for settings that are common to | settings (stored in your user directory), and one for settings that are common to | ||||
| @@ -35040,13 +35039,13 @@ private: | |||||
| getUserSettings() and getCommonSettings() methods. It also has a few handy | getUserSettings() and getCommonSettings() methods. It also has a few handy | ||||
| methods like testWriteAccess() to check that the files can be saved. | methods like testWriteAccess() to check that the files can be saved. | ||||
| If you're using one of these as a singleton, then your app's start-up code should | |||||
| first of all call setStorageParameters() to tell it the parameters to use to create | |||||
| the properties files. | |||||
| After creating an instance of an ApplicationProperties object, you should first | |||||
| of all call setStorageParameters() to tell it the parameters to use to create | |||||
| its files. | |||||
| @see PropertiesFile | @see PropertiesFile | ||||
| */ | */ | ||||
| class JUCE_API ApplicationProperties : public DeletedAtShutdown | |||||
| class JUCE_API ApplicationProperties | |||||
| { | { | ||||
| public: | public: | ||||
| @@ -35061,8 +35060,6 @@ public: | |||||
| /** Destructor. */ | /** Destructor. */ | ||||
| ~ApplicationProperties(); | ~ApplicationProperties(); | ||||
| juce_DeclareSingleton (ApplicationProperties, false); | |||||
| /** Gives the object the information it needs to create the appropriate properties files. | /** Gives the object the information it needs to create the appropriate properties files. | ||||
| See the PropertiesFile::Options class for details about what options you need to set. | See the PropertiesFile::Options class for details about what options you need to set. | ||||
| */ | */ | ||||
| @@ -37272,9 +37269,8 @@ private: | |||||
| A class for keeping a list of available audio formats, and for deciding which | A class for keeping a list of available audio formats, and for deciding which | ||||
| one to use to open a given file. | one to use to open a given file. | ||||
| You can either use this class as a singleton object, or create instances of it | |||||
| yourself. Once created, use its registerFormat() method to tell it which | |||||
| formats it should use. | |||||
| After creating an AudioFormatManager object, you should call registerFormat() | |||||
| or registerBasicFormats() to give it a list of format types that it can use. | |||||
| @see AudioFormat | @see AudioFormat | ||||
| */ | */ | ||||
| @@ -32,10 +32,6 @@ BEGIN_JUCE_NAMESPACE | |||||
| #include "../text/juce_LocalisedStrings.h" | #include "../text/juce_LocalisedStrings.h" | ||||
| //============================================================================== | |||||
| juce_ImplementSingleton (ApplicationProperties) | |||||
| //============================================================================== | //============================================================================== | ||||
| ApplicationProperties::ApplicationProperties() | ApplicationProperties::ApplicationProperties() | ||||
| : commonSettingsAreReadOnly (0) | : commonSettingsAreReadOnly (0) | ||||
| @@ -45,7 +41,6 @@ ApplicationProperties::ApplicationProperties() | |||||
| ApplicationProperties::~ApplicationProperties() | ApplicationProperties::~ApplicationProperties() | ||||
| { | { | ||||
| closeFiles(); | closeFiles(); | ||||
| clearSingletonInstance(); | |||||
| } | } | ||||
| //============================================================================== | //============================================================================== | ||||
| @@ -27,8 +27,6 @@ | |||||
| #define __JUCE_APPLICATIONPROPERTIES_JUCEHEADER__ | #define __JUCE_APPLICATIONPROPERTIES_JUCEHEADER__ | ||||
| #include "../utilities/juce_PropertiesFile.h" | #include "../utilities/juce_PropertiesFile.h" | ||||
| #include "../utilities/juce_DeletedAtShutdown.h" | |||||
| #include "../core/juce_Singleton.h" | |||||
| #include "../memory/juce_ScopedPointer.h" | #include "../memory/juce_ScopedPointer.h" | ||||
| @@ -36,8 +34,7 @@ | |||||
| /** | /** | ||||
| Manages a collection of properties. | Manages a collection of properties. | ||||
| This is a slightly higher-level wrapper for PropertiesFile, which can be used | |||||
| as a singleton. | |||||
| This is a slightly higher-level wrapper for managing PropertiesFile objects. | |||||
| It holds two different PropertiesFile objects internally, one for user-specific | It holds two different PropertiesFile objects internally, one for user-specific | ||||
| settings (stored in your user directory), and one for settings that are common to | settings (stored in your user directory), and one for settings that are common to | ||||
| @@ -47,13 +44,13 @@ | |||||
| getUserSettings() and getCommonSettings() methods. It also has a few handy | getUserSettings() and getCommonSettings() methods. It also has a few handy | ||||
| methods like testWriteAccess() to check that the files can be saved. | methods like testWriteAccess() to check that the files can be saved. | ||||
| If you're using one of these as a singleton, then your app's start-up code should | |||||
| first of all call setStorageParameters() to tell it the parameters to use to create | |||||
| the properties files. | |||||
| After creating an instance of an ApplicationProperties object, you should first | |||||
| of all call setStorageParameters() to tell it the parameters to use to create | |||||
| its files. | |||||
| @see PropertiesFile | @see PropertiesFile | ||||
| */ | */ | ||||
| class JUCE_API ApplicationProperties : public DeletedAtShutdown | |||||
| class JUCE_API ApplicationProperties | |||||
| { | { | ||||
| public: | public: | ||||
| //============================================================================== | //============================================================================== | ||||
| @@ -68,9 +65,6 @@ public: | |||||
| /** Destructor. */ | /** Destructor. */ | ||||
| ~ApplicationProperties(); | ~ApplicationProperties(); | ||||
| //============================================================================== | |||||
| juce_DeclareSingleton (ApplicationProperties, false); | |||||
| //============================================================================== | //============================================================================== | ||||
| /** Gives the object the information it needs to create the appropriate properties files. | /** Gives the object the information it needs to create the appropriate properties files. | ||||
| See the PropertiesFile::Options class for details about what options you need to set. | See the PropertiesFile::Options class for details about what options you need to set. | ||||
| @@ -27,7 +27,6 @@ | |||||
| #define __JUCE_AUDIOFORMATMANAGER_JUCEHEADER__ | #define __JUCE_AUDIOFORMATMANAGER_JUCEHEADER__ | ||||
| #include "juce_AudioFormat.h" | #include "juce_AudioFormat.h" | ||||
| #include "../../core/juce_Singleton.h" | |||||
| #include "../../containers/juce_OwnedArray.h" | #include "../../containers/juce_OwnedArray.h" | ||||
| @@ -36,9 +35,8 @@ | |||||
| A class for keeping a list of available audio formats, and for deciding which | A class for keeping a list of available audio formats, and for deciding which | ||||
| one to use to open a given file. | one to use to open a given file. | ||||
| You can either use this class as a singleton object, or create instances of it | |||||
| yourself. Once created, use its registerFormat() method to tell it which | |||||
| formats it should use. | |||||
| After creating an AudioFormatManager object, you should call registerFormat() | |||||
| or registerBasicFormats() to give it a list of format types that it can use. | |||||
| @see AudioFormat | @see AudioFormat | ||||
| */ | */ | ||||
| @@ -217,19 +217,6 @@ void StandaloneFilterWindow::loadState() | |||||
| } | } | ||||
| //============================================================================== | //============================================================================== | ||||
| PropertySet* StandaloneFilterWindow::getGlobalSettings() | |||||
| { | |||||
| /* If you want this class to store the plugin's settings, you can set up an | |||||
| ApplicationProperties object and use this method as it is, or override this | |||||
| method to return your own custom PropertySet. | |||||
| If using this method without changing it, you'll probably need to call | |||||
| ApplicationProperties::setStorageParameters() in your plugin's constructor to | |||||
| tell it where to save the file. | |||||
| */ | |||||
| return ApplicationProperties::getInstance()->getUserSettings(); | |||||
| } | |||||
| void StandaloneFilterWindow::showAudioSettingsDialog() | void StandaloneFilterWindow::showAudioSettingsDialog() | ||||
| { | { | ||||
| AudioDeviceSelectorComponent selectorComp (*deviceManager, | AudioDeviceSelectorComponent selectorComp (*deviceManager, | ||||
| @@ -60,11 +60,13 @@ public: | |||||
| /** Shows the audio properties dialog box modally. */ | /** Shows the audio properties dialog box modally. */ | ||||
| virtual void showAudioSettingsDialog(); | virtual void showAudioSettingsDialog(); | ||||
| /** Returns the property set to use for storing the app's last state. | |||||
| /** Implement this method to return the property set that should be used for storing | |||||
| the plugin's state. | |||||
| This will be used to store the audio set-up and the filter's last state. | |||||
| This will be used to store the audio set-up and the filter's last state. You may want | |||||
| to return an ApplicationProperties object. | |||||
| */ | */ | ||||
| virtual PropertySet* getGlobalSettings(); | |||||
| virtual PropertySet* getGlobalSettings() = 0; | |||||
| //============================================================================== | //============================================================================== | ||||
| /** @internal */ | /** @internal */ | ||||
| @@ -52,11 +52,6 @@ | |||||
| #else | #else | ||||
| #include <Cocoa/Cocoa.h> | #include <Cocoa/Cocoa.h> | ||||
| #include <Carbon/Carbon.h> | #include <Carbon/Carbon.h> | ||||
| static bool makeFSRefFromPath (FSRef* destFSRef, const String& path) | |||||
| { | |||||
| return FSPathMakeRef (reinterpret_cast <const UInt8*> (path.toUTF8().getAddress()), destFSRef, 0) == noErr; | |||||
| } | |||||
| #endif | #endif | ||||
| //============================================================================== | //============================================================================== | ||||
| @@ -80,7 +75,14 @@ BEGIN_JUCE_NAMESPACE | |||||
| #include "../../../application/juce_Application.h" | #include "../../../application/juce_Application.h" | ||||
| #if JUCE_MAC && JUCE_SUPPORT_CARBON | #if JUCE_MAC && JUCE_SUPPORT_CARBON | ||||
| #include "../../../native/mac/juce_mac_CarbonViewWrapperComponent.h" | |||||
| #include "../../../native/mac/juce_mac_CarbonViewWrapperComponent.h" | |||||
| #endif | |||||
| #if JUCE_MAC | |||||
| static bool makeFSRefFromPath (FSRef* destFSRef, const String& path) | |||||
| { | |||||
| return FSPathMakeRef (reinterpret_cast <const UInt8*> (path.toUTF8().getAddress()), destFSRef, 0) == noErr; | |||||
| } | |||||
| #endif | #endif | ||||
| //============================================================================== | //============================================================================== | ||||
| @@ -33,7 +33,7 @@ | |||||
| */ | */ | ||||
| #define JUCE_MAJOR_VERSION 1 | #define JUCE_MAJOR_VERSION 1 | ||||
| #define JUCE_MINOR_VERSION 54 | #define JUCE_MINOR_VERSION 54 | ||||
| #define JUCE_BUILDNUMBER 20 | |||||
| #define JUCE_BUILDNUMBER 21 | |||||
| /** Current Juce version number. | /** Current Juce version number. | ||||
| @@ -27,7 +27,6 @@ | |||||
| #define __JUCE_LOCALISEDSTRINGS_JUCEHEADER__ | #define __JUCE_LOCALISEDSTRINGS_JUCEHEADER__ | ||||
| #include "juce_StringPairArray.h" | #include "juce_StringPairArray.h" | ||||
| #include "../core/juce_Singleton.h" | |||||
| #include "../io/files/juce_File.h" | #include "../io/files/juce_File.h" | ||||