remove all lines to avoid recompiles after commits
[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 */
19
20 #include <fst.h>
21 #include <gtk/gtksocket.h>
22 #include <ardour/insert.h>
23 #include <ardour/vst_plugin.h>
24
25 #include "plugin_ui.h"
26
27 #include <gdk/gdkx.h>
28
29 using namespace Gtk;
30 using namespace ARDOUR;
31 using namespace PBD;
32
33 VSTPluginUI::VSTPluginUI (boost::shared_ptr<PluginInsert> pi, boost::shared_ptr<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         /* forward configure events to plugin window */
64
65         win.signal_configure_event().connect (bind (mem_fun (*this, &VSTPluginUI::configure_handler), &socket), false);
66
67         /*
68            this assumes that the window's owner understands the XEmbed protocol.
69         */
70         
71         socket.add_id (fst_get_XID (vst->fst()));
72
73         return 0;
74 }
75
76 bool
77 VSTPluginUI::configure_handler (GdkEventConfigure* ev, Gtk::Socket *socket)
78 {
79         XEvent event;
80         gint x, y;
81         GdkWindow* w;
82
83         if (socket == 0 || ((w = socket->gobj()->plug_window) == 0)) {
84                 return false;
85         }
86
87         event.xconfigure.type = ConfigureNotify;
88         event.xconfigure.event = GDK_WINDOW_XWINDOW (w);
89         event.xconfigure.window = GDK_WINDOW_XWINDOW (w);
90
91         /* The ICCCM says that synthetic events should have root relative
92          * coordinates. We still aren't really ICCCM compliant, since
93          * we don't send events when the real toplevel is moved.
94          */
95         gdk_error_trap_push ();
96         gdk_window_get_origin (w, &x, &y);
97         gdk_error_trap_pop ();
98
99         event.xconfigure.x = x;
100         event.xconfigure.y = y;
101         event.xconfigure.width = GTK_WIDGET(socket->gobj())->allocation.width;
102         event.xconfigure.height = GTK_WIDGET(socket->gobj())->allocation.height;
103
104         event.xconfigure.border_width = 0;
105         event.xconfigure.above = None;
106         event.xconfigure.override_redirect = False;
107
108         gdk_error_trap_push ();
109         XSendEvent (GDK_WINDOW_XDISPLAY (w), GDK_WINDOW_XWINDOW (w), False, StructureNotifyMask, &event);
110         gdk_error_trap_pop ();
111
112         return false;
113 }
114