RouteDialog: Move built-in types into template list experiment
[ardour.git] / gtk2_ardour / windows_vst_plugin_ui.cc
index 72e9952dece2d368b1edce9bf9ea9f011442c47e..c38b545bf5a809fe7aa897259e64cfc8fde677f4 100644 (file)
 
 */
 
-#include <fst.h>
+#include <gtkmm.h>
 #include <gtk/gtk.h>
 #include <gtk/gtksocket.h>
+#include "gtkmm2ext/gui_thread.h"
+#include "fst.h"
 #include "ardour/plugin_insert.h"
 #include "ardour/windows_vst_plugin.h"
 
 #include "windows_vst_plugin_ui.h"
 
-#ifdef GDK_WINDOWING_X11
-#include <gdk/gdkx.h>
-#elif defined GDK_WINDOWING_WIN32
+#ifdef PLATFORM_WINDOWS
 #include <gdk/gdkwin32.h>
-#elif defined GDK_WINDOWING_QUARTZ
-/* not yet supported */
+#elif defined __APPLE__
+// TODO
+#else
+#include <gdk/gdkx.h>
 #endif
 
 using namespace Gtk;
 using namespace ARDOUR;
 using namespace PBD;
 
-WindowsVSTPluginUI::WindowsVSTPluginUI (boost::shared_ptr<PluginInsert> pi, boost::shared_ptr<VSTPlugin> vp)
+WindowsVSTPluginUI::WindowsVSTPluginUI (boost::shared_ptr<PluginInsert> pi, boost::shared_ptr<VSTPlugin> vp, GtkWidget *parent)
        : VSTPluginUI (pi, vp)
 {
 
 #ifdef GDK_WINDOWING_WIN32
-       GtkWindow* wobj = win->gobj();
-       gtk_widget_realize(GTK_WIDGET(wobj));
-       void* hWndHost = gdk_win32_drawable_get_handle(GTK_WIDGET(wobj)->window);
+       gtk_widget_realize(parent);
+       void* hWndHost = gdk_win32_drawable_get_handle(parent->window);
 
        fst_run_editor (_vst->state(), hWndHost);
+       // TODO pack a placeholder (compare to VSTPluginUI::VSTPluginUI X11 socket)
+       // have placeholder use VSTPluginUI::get_preferred_height(), width()
+       // TODO pack plugin_analysis_expander at the bottom.
 #else
        fst_run_editor (_vst->state(), NULL);
-#endif
-
-
        pack_start (plugin_analysis_expander, true, true);
+#endif
 }
 
 WindowsVSTPluginUI::~WindowsVSTPluginUI ()
 {
+       fst_destroy_editor (_vst->state());
+
        // plugin destructor destroys the custom GUI, via Windows fun-and-games,
        // and then our PluginUIWindow does the rest
 }
 
+void
+WindowsVSTPluginUI::top_box_allocated (Gtk::Allocation& a)
+{
+       int h = a.get_height() + 12; // 2 * 6px spacing
+       if (_vst->state()->voffset != h) {
+#ifndef NDEBUG
+               printf("WindowsVSTPluginUI:: update voffset to %d px\n", h);
+#endif
+               _vst->state()->voffset = h;
+               resize_callback ();
+       }
+}
+
+void
+WindowsVSTPluginUI::resize_callback ()
+{
+       void* gtk_parent_window = _vst->state()->gtk_window_parent;
+       if (gtk_parent_window) {
+               int width  = _vst->state()->width + _vst->state()->hoffset;
+               int height = _vst->state()->height + _vst->state()->voffset;
+#ifndef NDEBUG
+               printf ("WindowsVSTPluginUI::resize_callback %d x %d\n", width, height);
+#endif
+               set_size_request (width, height);
+               ((Gtk::Window*) gtk_parent_window)->set_size_request (width, height);
+               ((Gtk::Window*) gtk_parent_window)->resize (width, height);
+               fst_move_window_into_view (_vst->state ());
+       }
+}
+
 int
 WindowsVSTPluginUI::package (Gtk::Window& win)
 {
+#ifndef NDEBUG
+       printf ("WindowsVSTPluginUI::package\n");
+#endif
        VSTPluginUI::package (win);
+       _vst->state()->gtk_window_parent = (void*) (&win);
+
+       _vst->VSTSizeWindow.connect (_resize_connection, invalidator (*this), boost::bind (&WindowsVSTPluginUI::resize_callback, this), gui_context());
 
-       fst_move_window_into_view (_vst->state ());
+       resize_callback ();
 
        return 0;
 }
@@ -85,10 +125,10 @@ WindowsVSTPluginUI::forward_key_event (GdkEventKey* ev)
                /* buffer full */
                return;
        }
-       
+
        int special_windows_key = 0;
        int character_windows_key = 0;
-       
+
        switch (ev->keyval) {
        case GDK_Left:
                special_windows_key = 0x25;
@@ -110,11 +150,11 @@ WindowsVSTPluginUI::forward_key_event (GdkEventKey* ev)
                character_windows_key = ev->keyval;
                break;
        }
-       
+
        fst->pending_keys[fst->n_pending_keys].special = special_windows_key;
        fst->pending_keys[fst->n_pending_keys].character = character_windows_key;
        fst->n_pending_keys++;
-       
+
        pthread_mutex_unlock (&fst->lock);
 }