The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

100 lines
3.3KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library - "Jules' Utility Class Extensions"
  4. Copyright 2004-9 by Raw Material Software Ltd.
  5. ------------------------------------------------------------------------------
  6. JUCE can be redistributed and/or modified under the terms of the GNU General
  7. Public License (Version 2), as published by the Free Software Foundation.
  8. A copy of the license is included in the JUCE distribution, or can be found
  9. online at www.gnu.org/licenses.
  10. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  11. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  13. ------------------------------------------------------------------------------
  14. To release a closed-source product which uses JUCE, commercial licenses are
  15. available: visit www.rawmaterialsoftware.com/juce for more information.
  16. ==============================================================================
  17. */
  18. #include "../JuceLibraryCode/JuceHeader.h"
  19. #include "MainHostWindow.h"
  20. #include "InternalFilters.h"
  21. #if ! (JUCE_PLUGINHOST_VST || JUCE_PLUGINHOST_AU)
  22. #error "If you're building the audio plugin host, you probably want to enable VST and/or AU support in juce_Config.h"
  23. #endif
  24. ApplicationCommandManager* commandManager = 0;
  25. //==============================================================================
  26. class PluginHostApp : public JUCEApplication
  27. {
  28. public:
  29. //==============================================================================
  30. PluginHostApp()
  31. {
  32. }
  33. ~PluginHostApp()
  34. {
  35. }
  36. void initialise (const String& /*commandLine*/)
  37. {
  38. // initialise our settings file..
  39. ApplicationProperties::getInstance()
  40. ->setStorageParameters ("Juce Audio Plugin Host",
  41. "settings", String::empty, 1000,
  42. PropertiesFile::storeAsXML);
  43. commandManager = new ApplicationCommandManager();
  44. AudioPluginFormatManager::getInstance()->addDefaultFormats();
  45. AudioPluginFormatManager::getInstance()->addFormat (new InternalPluginFormat());
  46. mainWindow = new MainHostWindow();
  47. //mainWindow->setUsingNativeTitleBar (true);
  48. commandManager->registerAllCommandsForTarget (this);
  49. commandManager->registerAllCommandsForTarget (mainWindow);
  50. mainWindow->menuItemsChanged();
  51. }
  52. void shutdown()
  53. {
  54. mainWindow = 0;
  55. ApplicationProperties::getInstance()->closeFiles();
  56. deleteAndZero (commandManager);
  57. }
  58. void systemRequestedQuit()
  59. {
  60. if (mainWindow != 0)
  61. mainWindow->tryToQuitApplication();
  62. else
  63. JUCEApplication::quit();
  64. }
  65. const String getApplicationName() { return "Juce Plug-In Host"; }
  66. const String getApplicationVersion() { return ProjectInfo::versionString; }
  67. bool moreThanOneInstanceAllowed() { return true; }
  68. private:
  69. ScopedPointer <MainHostWindow> mainWindow;
  70. };
  71. // This kicks the whole thing off..
  72. START_JUCE_APPLICATION (PluginHostApp)