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.

CarlaBridgeToolkitGtk.cpp 8.0KB

11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
11 years ago
11 years ago
11 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
11 years ago
10 years ago
11 years ago
10 years ago
11 years ago
11 years ago
10 years ago
10 years ago
11 years ago
11 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
10 years ago
11 years ago
11 years ago
11 years ago
10 years ago
11 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  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. #include "CarlaBridgeFormat.hpp"
  18. #include "CarlaBridgeToolkit.hpp"
  19. #include <gtk/gtk.h>
  20. #ifdef HAVE_X11
  21. # include <gdk/gdkx.h>
  22. #endif
  23. CARLA_BRIDGE_UI_START_NAMESPACE
  24. // -------------------------------------------------------------------------
  25. static int gargc = 0;
  26. static char** gargv = nullptr;
  27. static const bool gHideShowTesting = std::getenv("CARLA_UI_TESTING") != nullptr;
  28. // -------------------------------------------------------------------------
  29. class CarlaBridgeToolkitGtk : public CarlaBridgeToolkit
  30. {
  31. public:
  32. CarlaBridgeToolkitGtk(CarlaBridgeFormat* const format)
  33. : CarlaBridgeToolkit(format),
  34. fNeedsShow(false),
  35. fWindow(nullptr),
  36. fLastX(0),
  37. fLastY(0),
  38. fLastWidth(0),
  39. fLastHeight(0)
  40. {
  41. carla_debug("CarlaBridgeToolkitGtk::CarlaBridgeToolkitGtk(%p)", format);
  42. }
  43. ~CarlaBridgeToolkitGtk() override
  44. {
  45. CARLA_SAFE_ASSERT(fWindow == nullptr);
  46. carla_debug("CarlaBridgeToolkitGtk::~CarlaBridgeToolkitGtk()");
  47. }
  48. bool init(const int /*argc*/, const char** /*argv[]*/) override
  49. {
  50. CARLA_SAFE_ASSERT_RETURN(fWindow == nullptr, false);
  51. carla_debug("CarlaBridgeToolkitGtk::init()");
  52. gtk_init(&gargc, &gargv);
  53. fWindow = gtk_window_new(GTK_WINDOW_TOPLEVEL);
  54. CARLA_SAFE_ASSERT_RETURN(fWindow != nullptr, false);
  55. gtk_window_resize(GTK_WINDOW(fWindow), 30, 30);
  56. gtk_widget_hide(fWindow);
  57. return true;
  58. }
  59. void exec(const bool showUI) override
  60. {
  61. CARLA_SAFE_ASSERT_RETURN(fPlugin != nullptr,);
  62. CARLA_SAFE_ASSERT_RETURN(fWindow != nullptr,);
  63. carla_debug("CarlaBridgeToolkitGtk::exec(%s)", bool2str(showUI));
  64. const CarlaBridgeFormat::Options& options(fPlugin->getOptions());
  65. GtkWindow* const gtkWindow(GTK_WINDOW(fWindow));
  66. CARLA_SAFE_ASSERT_RETURN(gtkWindow != nullptr,);
  67. GtkWidget* const widget((GtkWidget*)fPlugin->getWidget());
  68. gtk_container_add(GTK_CONTAINER(fWindow), widget);
  69. gtk_window_set_resizable(gtkWindow, options.isResizable);
  70. gtk_window_set_title(gtkWindow, options.windowTitle.buffer());
  71. if (showUI || fNeedsShow)
  72. {
  73. show();
  74. fNeedsShow = false;
  75. }
  76. g_timeout_add(30, gtk_ui_timeout, this);
  77. g_signal_connect(fWindow, "destroy", G_CALLBACK(gtk_ui_destroy), this);
  78. g_signal_connect(fWindow, "realize", G_CALLBACK(gtk_ui_realize), this);
  79. // First idle
  80. handleTimeout();
  81. // Main loop
  82. gtk_main();
  83. }
  84. void quit() override
  85. {
  86. carla_debug("CarlaBridgeToolkitGtk::quit()");
  87. if (fWindow != nullptr)
  88. {
  89. gtk_widget_destroy(fWindow);
  90. fWindow = nullptr;
  91. gtk_main_quit_if_needed();
  92. }
  93. }
  94. void show() override
  95. {
  96. carla_debug("CarlaBridgeToolkitGtk::show()");
  97. fNeedsShow = true;
  98. if (fWindow != nullptr)
  99. gtk_widget_show_all(fWindow);
  100. }
  101. void focus() override
  102. {
  103. carla_debug("CarlaBridgeToolkitGtk::focus()");
  104. }
  105. void hide() override
  106. {
  107. carla_debug("CarlaBridgeToolkitGtk::hide()");
  108. fNeedsShow = false;
  109. if (fWindow != nullptr)
  110. gtk_widget_hide(fWindow);
  111. }
  112. void setChildWindow(void* const) override {}
  113. void setSize(const uint width, const uint height) override
  114. {
  115. CARLA_SAFE_ASSERT_RETURN(fWindow != nullptr,);
  116. carla_debug("CarlaBridgeToolkitGtk::resize(%i, %i)", width, height);
  117. gtk_window_resize(GTK_WINDOW(fWindow), static_cast<gint>(width), static_cast<gint>(height));
  118. }
  119. void setTitle(const char* const title) override
  120. {
  121. CARLA_SAFE_ASSERT_RETURN(fWindow != nullptr,);
  122. carla_debug("CarlaBridgeToolkitGtk::setTitle(\"%s\")", title);
  123. gtk_window_set_title(GTK_WINDOW(fWindow), title);
  124. }
  125. // ---------------------------------------------------------------------
  126. protected:
  127. bool fNeedsShow;
  128. GtkWidget* fWindow;
  129. gint fLastX;
  130. gint fLastY;
  131. gint fLastWidth;
  132. gint fLastHeight;
  133. void handleDestroy()
  134. {
  135. carla_debug("CarlaBridgeToolkitGtk::handleDestroy()");
  136. fWindow = nullptr;
  137. }
  138. void handleRealize()
  139. {
  140. carla_debug("CarlaBridgeToolkitGtk::handleRealize()");
  141. const CarlaBridgeFormat::Options& options(fPlugin->getOptions());
  142. if (options.transientWindowId != 0)
  143. setTransient(options.transientWindowId);
  144. }
  145. gboolean handleTimeout()
  146. {
  147. if (fWindow != nullptr)
  148. {
  149. gtk_window_get_position(GTK_WINDOW(fWindow), &fLastX, &fLastY);
  150. gtk_window_get_size(GTK_WINDOW(fWindow), &fLastWidth, &fLastHeight);
  151. }
  152. if (fPlugin->isPipeRunning())
  153. fPlugin->idlePipe();
  154. fPlugin->idleUI();
  155. if (gHideShowTesting)
  156. {
  157. static int counter = 0;
  158. ++counter;
  159. if (counter == 100)
  160. {
  161. hide();
  162. }
  163. else if (counter == 200)
  164. {
  165. show();
  166. counter = 0;
  167. }
  168. }
  169. return true;
  170. }
  171. void setTransient(const uintptr_t winId)
  172. {
  173. CARLA_SAFE_ASSERT_RETURN(fWindow != nullptr,);
  174. carla_debug("CarlaBridgeToolkitGtk::setTransient(0x" P_UINTPTR ")", winId);
  175. #ifdef HAVE_X11
  176. GdkWindow* const gdkWindow(gtk_widget_get_window(fWindow));
  177. CARLA_SAFE_ASSERT_RETURN(gdkWindow != nullptr,);
  178. # ifdef BRIDGE_GTK3
  179. GdkDisplay* const gdkDisplay(gdk_window_get_display(gdkWindow));
  180. CARLA_SAFE_ASSERT_RETURN(gdkDisplay != nullptr,);
  181. ::Display* const display(gdk_x11_display_get_xdisplay(gdkDisplay));
  182. CARLA_SAFE_ASSERT_RETURN(display != nullptr,);
  183. const ::XID xid(gdk_x11_window_get_xid(gdkWindow));
  184. CARLA_SAFE_ASSERT_RETURN(xid != 0,);
  185. # else
  186. ::Display* const display(gdk_x11_drawable_get_xdisplay(gdkWindow));
  187. CARLA_SAFE_ASSERT_RETURN(display != nullptr,);
  188. const ::XID xid(gdk_x11_drawable_get_xid(gdkWindow));
  189. CARLA_SAFE_ASSERT_RETURN(xid != 0,);
  190. # endif
  191. XSetTransientForHint(display, xid, static_cast< ::Window>(winId));
  192. #endif
  193. }
  194. // ---------------------------------------------------------------------
  195. private:
  196. static void gtk_main_quit_if_needed()
  197. {
  198. if (gtk_main_level() != 0)
  199. gtk_main_quit();
  200. }
  201. static void gtk_ui_destroy(GtkWidget*, gpointer data)
  202. {
  203. CARLA_SAFE_ASSERT_RETURN(data != nullptr,);
  204. ((CarlaBridgeToolkitGtk*)data)->handleDestroy();
  205. gtk_main_quit_if_needed();
  206. }
  207. static void gtk_ui_realize(GtkWidget*, gpointer data)
  208. {
  209. CARLA_SAFE_ASSERT_RETURN(data != nullptr,);
  210. ((CarlaBridgeToolkitGtk*)data)->handleRealize();
  211. }
  212. static gboolean gtk_ui_timeout(gpointer data)
  213. {
  214. CARLA_SAFE_ASSERT_RETURN(data != nullptr, false);
  215. return ((CarlaBridgeToolkitGtk*)data)->handleTimeout();
  216. }
  217. CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(CarlaBridgeToolkitGtk)
  218. };
  219. // -------------------------------------------------------------------------
  220. CarlaBridgeToolkit* CarlaBridgeToolkit::createNew(CarlaBridgeFormat* const format)
  221. {
  222. return new CarlaBridgeToolkitGtk(format);
  223. }
  224. // -------------------------------------------------------------------------
  225. CARLA_BRIDGE_UI_END_NAMESPACE