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.

CarlaPluginUI.hpp 2.4KB

10 years ago
10 years ago
10 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * Carla Plugin UI
  3. * Copyright (C) 2014-2018 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_PLUGIN_UI_HPP_INCLUDED
  18. #define CARLA_PLUGIN_UI_HPP_INCLUDED
  19. #include "CarlaUtils.hpp"
  20. // -----------------------------------------------------
  21. class CarlaPluginUI
  22. {
  23. public:
  24. class Callback {
  25. public:
  26. virtual ~Callback() {}
  27. virtual void handlePluginUIClosed() = 0;
  28. virtual void handlePluginUIResized(const uint width, const uint height) = 0;
  29. };
  30. virtual ~CarlaPluginUI() {}
  31. virtual void show() = 0;
  32. virtual void hide() = 0;
  33. virtual void focus() = 0;
  34. virtual void idle() = 0;
  35. virtual void setSize(const uint with, const uint height, const bool forceUpdate) = 0;
  36. virtual void setTitle(const char* const title) = 0;
  37. virtual void setChildWindow(void* const ptr) = 0;
  38. virtual void setTransientWinId(const uintptr_t winId) = 0;
  39. virtual void* getPtr() const noexcept = 0;
  40. #ifdef HAVE_X11
  41. virtual void* getDisplay() const noexcept = 0;
  42. #endif
  43. #ifndef BUILD_BRIDGE
  44. static bool tryTransientWinIdMatch(const uintptr_t pid, const char* const uiTitle, const uintptr_t winId, const bool centerUI);
  45. #endif
  46. #ifdef CARLA_OS_MAC
  47. static CarlaPluginUI* newCocoa(Callback*, uintptr_t, bool);
  48. #endif
  49. #ifdef CARLA_OS_WIN
  50. static CarlaPluginUI* newWindows(Callback*, uintptr_t, bool);
  51. #endif
  52. #ifdef HAVE_X11
  53. static CarlaPluginUI* newX11(Callback*, uintptr_t, bool);
  54. #endif
  55. protected:
  56. bool fIsIdling;
  57. bool fIsResizable;
  58. Callback* fCallback;
  59. CarlaPluginUI(Callback* const cb, const bool isResizable) noexcept
  60. : fIsIdling(false),
  61. fIsResizable(isResizable),
  62. fCallback(cb) {}
  63. CARLA_DECLARE_NON_COPY_CLASS(CarlaPluginUI)
  64. };
  65. // -----------------------------------------------------
  66. #endif // CARLA_PLUGIN_UI_HPP_INCLUDED