Audio plugin host https://kx.studio/carla
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.

63 lines
1.9KB

  1. /*
  2. * Carla Bridge UI
  3. * Copyright (C) 2011-2017 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * For a full copy of the GNU General Public License see the doc/GPL.txt file.
  16. */
  17. #ifndef CARLA_BRIDGE_TOOLKIT_HPP_INCLUDED
  18. #define CARLA_BRIDGE_TOOLKIT_HPP_INCLUDED
  19. #include "CarlaBridgeUI.hpp"
  20. #include "CarlaJuceUtils.hpp"
  21. CARLA_BRIDGE_UI_START_NAMESPACE
  22. // -----------------------------------------------------------------------
  23. class CarlaBridgeToolkit
  24. {
  25. public:
  26. virtual ~CarlaBridgeToolkit() {}
  27. virtual bool init(const int argc, const char* argv[]) = 0;
  28. virtual void exec(const bool showUI) = 0;
  29. virtual void quit() = 0;
  30. virtual void show() = 0;
  31. virtual void focus() = 0;
  32. virtual void hide() = 0;
  33. virtual void setSize(const uint width, const uint height) = 0;
  34. virtual void setTitle(const char* const title) = 0;
  35. virtual void* getContainerId() const { return nullptr; }
  36. virtual void* getContainerId2() const { return nullptr; }
  37. static CarlaBridgeToolkit* createNew(CarlaBridgeFormat* const format);
  38. protected:
  39. CarlaBridgeFormat* const fPlugin;
  40. CarlaBridgeToolkit(CarlaBridgeFormat* const format)
  41. : fPlugin(format) {}
  42. CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(CarlaBridgeToolkit)
  43. };
  44. // -----------------------------------------------------------------------
  45. CARLA_BRIDGE_UI_END_NAMESPACE
  46. #endif // CARLA_BRIDGE_TOOLKIT_HPP_INCLUDED