fae211f424219748efa6086cbe40efec75000cf4
[ardour.git] / gtk2_ardour / vst_pluginui.cc
1 /*
2     Copyright (C) 2004 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #include <fst.h>
22
23 #include <ardour/insert.h>
24 #include <ardour/vst_plugin.h>
25
26 #include "plugin_ui.h"
27
28 #include <gdk/gdkx.h>
29
30 using namespace Gtk;
31 using namespace ARDOUR;
32 using namespace PBD;
33
34 VSTPluginUI::VSTPluginUI (PluginInsert& pi, VSTPlugin& vp)
35         : PlugUIBase (pi),
36           vst (vp)
37 {
38         fst_run_editor (vst.fst());
39
40         preset_box.pack_end (bypass_button, false, false, 10);
41         preset_box.pack_end (save_button, false, false);
42         preset_box.pack_end (combo, false, false);
43
44         bypass_button.set_active (!insert.active());
45         
46         pack_start (preset_box, false, false);
47         pack_start (socket, true, true);
48 }
49
50 VSTPluginUI::~VSTPluginUI ()
51 {
52         // nothing to do here - plugin destructor destroys the GUI
53 }
54
55 int
56 VSTPluginUI::get_preferred_height ()
57 {
58         return vst.fst()->height;
59 }
60
61 int
62 VSTPluginUI::package (Gtk::Window& win)
63 {
64         /* for GTK+2, remove this: you cannot add to a realized socket */
65
66         //socket.realize ();
67
68         /* forward configure events to plugin window */
69
70         win.signal_configure_event().connect (bind (mem_fun (*this, &VSTPluginUI::configure_handler), &socket));
71
72         /* XXX in GTK2, use add_id() instead of steal, although add_id()
73            assumes that the window's owner understands the XEmbed protocol.
74         */
75         
76         socket.add_id (fst_get_XID (vst.fst()));
77
78         return 0;
79 }
80
81 gboolean
82 VSTPluginUI::configure_handler (GdkEventConfigure* ev, Gtk::Socket *socket)
83 {
84         XEvent event;
85
86         gint x, y;
87
88         if (socket->gobj() == NULL) {
89                 return FALSE;
90         }
91
92         event.xconfigure.type = ConfigureNotify;
93         event.xconfigure.event = GDK_WINDOW_XWINDOW (socket->get_window()->gobj());
94         event.xconfigure.window = GDK_WINDOW_XWINDOW (socket->get_window()->gobj());
95
96         /* The ICCCM says that synthetic events should have root relative
97          * coordinates. We still aren't really ICCCM compliant, since
98          * we don't send events when the real toplevel is moved.
99          */
100         gdk_error_trap_push ();
101         gdk_window_get_origin (socket->get_window()->gobj(), &x, &y);
102         gdk_error_trap_pop ();
103
104         event.xconfigure.x = x;
105         event.xconfigure.y = y;
106         event.xconfigure.width = GTK_WIDGET(socket)->allocation.width;
107         event.xconfigure.height = GTK_WIDGET(socket)->allocation.height;
108
109         event.xconfigure.border_width = 0;
110         event.xconfigure.above = None;
111         event.xconfigure.override_redirect = False;
112
113         gdk_error_trap_push ();
114         XSendEvent (GDK_WINDOW_XDISPLAY (socket->get_window()->gobj()),
115                     GDK_WINDOW_XWINDOW (socket->get_window()->gobj()),
116                     False, StructureNotifyMask, &event);
117         // gdk_display_sync (GDK_WINDOW_XDISPLAY (socket->plug_window));
118         gdk_error_trap_pop ();
119
120         return FALSE;
121 }
122