Remove needless hbox in panner, get rid of some warnings in editor_rulers.cc, vst_plu...
[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
33 VSTPluginUI::VSTPluginUI (PluginInsert& pi, VSTPlugin& vp)
34         : PlugUIBase (pi),
35           vst (vp)
36 {
37         fst_run_editor (vst.fst());
38
39         preset_box.pack_end (bypass_button, false, false, 10);
40         preset_box.pack_end (save_button, false, false);
41         preset_box.pack_end (combo, false, false);
42
43         bypass_button.set_active (!insert.active());
44         
45         pack_start (preset_box, false, false);
46         pack_start (socket, true, true);
47 }
48
49 VSTPluginUI::~VSTPluginUI ()
50 {
51         // nothing to do here - plugin destructor destroys the GUI
52 }
53
54 int
55 VSTPluginUI::get_preferred_height ()
56 {
57         return vst.fst()->height;
58 }
59
60 int
61 VSTPluginUI::package (Gtk::Window& win)
62 {
63         /* for GTK+2, remove this: you cannot add to a realized socket */
64
65         //socket.realize ();
66
67         /* forward configure events to plugin window */
68
69         win.signal_configure_event().connect (bind (mem_fun (*this, &VSTPluginUI::configure_handler), &socket));
70
71         /* XXX in GTK2, use add_id() instead of steal, although add_id()
72            assumes that the window's owner understands the XEmbed protocol.
73         */
74         
75         socket.add_id (fst_get_XID (vst.fst()));
76
77         return 0;
78 }
79
80 gboolean
81 VSTPluginUI::configure_handler (GdkEventConfigure* ev, Gtk::Socket *socket)
82 {
83         XEvent event;
84
85         gint x, y;
86
87         if (socket->gobj() == NULL) {
88                 return FALSE;
89         }
90
91         event.xconfigure.type = ConfigureNotify;
92         event.xconfigure.event = GDK_WINDOW_XWINDOW (socket->get_window()->gobj());
93         event.xconfigure.window = GDK_WINDOW_XWINDOW (socket->get_window()->gobj());
94
95         /* The ICCCM says that synthetic events should have root relative
96          * coordinates. We still aren't really ICCCM compliant, since
97          * we don't send events when the real toplevel is moved.
98          */
99         gdk_error_trap_push ();
100         gdk_window_get_origin (socket->get_window()->gobj(), &x, &y);
101         gdk_error_trap_pop ();
102
103         event.xconfigure.x = x;
104         event.xconfigure.y = y;
105         event.xconfigure.width = GTK_WIDGET(socket)->allocation.width;
106         event.xconfigure.height = GTK_WIDGET(socket)->allocation.height;
107
108         event.xconfigure.border_width = 0;
109         event.xconfigure.above = None;
110         event.xconfigure.override_redirect = False;
111
112         gdk_error_trap_push ();
113         XSendEvent (GDK_WINDOW_XDISPLAY (socket->get_window()->gobj()),
114                     GDK_WINDOW_XWINDOW (socket->get_window()->gobj()),
115                     False, StructureNotifyMask, &event);
116         // gdk_display_sync (GDK_WINDOW_XDISPLAY (socket->plug_window));
117         gdk_error_trap_pop ();
118
119         return FALSE;
120 }
121