1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

ARA Host: Add support for scanning and hosting ARA plugins

This commit is contained in:
attila 2021-07-28 09:27:58 +02:00
parent d99fbccb66
commit f36949c1b2
31 changed files with 3522 additions and 133 deletions

View file

@ -100,10 +100,10 @@ public:
void tryToQuitApplication();
void createPlugin (const PluginDescription&, Point<int> pos);
void createPlugin (const PluginDescriptionAndPreference&, Point<int> pos);
void addPluginsToMenu (PopupMenu&);
PluginDescription getChosenType (int menuID) const;
PluginDescriptionAndPreference getChosenType (int menuID) const;
std::unique_ptr<GraphDocumentComponent> graphHolder;
@ -117,6 +117,8 @@ private:
void showAudioSettings();
int getIndexChosenByMenu (int menuID) const;
//==============================================================================
AudioDeviceManager deviceManager;
AudioPluginFormatManager formatManager;
@ -124,7 +126,7 @@ private:
std::vector<PluginDescription> internalTypes;
KnownPluginList knownPluginList;
KnownPluginList::SortMethod pluginSortMethod;
Array<PluginDescription> pluginDescriptions;
Array<PluginDescriptionAndPreference> pluginDescriptionsAndPreference;
class PluginListWindow;
std::unique_ptr<PluginListWindow> pluginListWindow;