Make VST preset files pre-preset rather than global. Clean up VST preset handling...
[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/gtk.h>
22 #include <gtk/gtksocket.h>
23 #include "ardour/plugin_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 (boost::shared_ptr<PluginInsert> pi, boost::shared_ptr<VSTPlugin> vp)
35         : PlugUIBase (pi),
36           vst (vp)
37 {
38         update_presets ();
39
40         fst_run_editor (vst->fst());
41
42         preset_box.set_spacing (6);
43         preset_box.set_border_width (6);
44         preset_box.pack_end (bypass_button, false, false, 10);
45         preset_box.pack_end (delete_button, false, false);
46         preset_box.pack_end (save_button, false, false);
47         preset_box.pack_end (add_button, false, false);
48         preset_box.pack_end (preset_combo, false, false);
49
50         bypass_button.set_active (!insert->active());
51
52         pack_start (preset_box, false, false);
53         pack_start (socket, true, true);
54         pack_start (plugin_analysis_expander, true, true);
55 }
56
57 VSTPluginUI::~VSTPluginUI ()
58 {
59         // plugin destructor destroys the custom GUI, via Windows fun-and-games,
60         // and then our PluginUIWindow does the rest
61 }
62
63 void
64 VSTPluginUI::setting_selected ()
65 {
66         int const r = preset_combo.get_active_row_number ();
67
68         if (r < vst->first_user_preset_index()) {
69                 /* This is a plugin-provided preset.
70                    We can't dispatch directly here; too many plugins expects only one GUI thread.
71                 */
72                 vst->fst()->want_program = r;
73         } else {
74                 /* This is a user preset.  This method knows about the direct dispatch restriction, too */
75                 plugin->load_preset (preset_combo.get_active_text());
76         }
77         
78         socket.grab_focus ();
79         update_sensitivity ();
80 }
81
82 int
83 VSTPluginUI::get_preferred_height ()
84 {
85         return vst->fst()->height;
86 }
87
88 int
89 VSTPluginUI::get_preferred_width ()
90 {
91         return vst->fst()->width;
92 }
93
94 int
95 VSTPluginUI::package (Gtk::Window& win)
96 {
97         /* forward configure events to plugin window */
98
99         win.signal_configure_event().connect (sigc::bind (sigc::mem_fun (*this, &VSTPluginUI::configure_handler), &socket), false);
100
101         /*
102            this assumes that the window's owner understands the XEmbed protocol.
103         */
104
105         socket.add_id (fst_get_XID (vst->fst()));
106
107         fst_move_window_into_view (vst->fst());
108
109         return 0;
110 }
111
112 bool
113 VSTPluginUI::configure_handler (GdkEventConfigure* ev, Gtk::Socket *socket)
114 {
115         XEvent event;
116         gint x, y;
117         GdkWindow* w;
118
119         if (socket == 0 || ((w = socket->gobj()->plug_window) == 0)) {
120                 return false;
121         }
122
123         event.xconfigure.type = ConfigureNotify;
124         event.xconfigure.event = GDK_WINDOW_XWINDOW (w);
125         event.xconfigure.window = GDK_WINDOW_XWINDOW (w);
126
127         /* The ICCCM says that synthetic events should have root relative
128          * coordinates. We still aren't really ICCCM compliant, since
129          * we don't send events when the real toplevel is moved.
130          */
131         gdk_error_trap_push ();
132         gdk_window_get_origin (w, &x, &y);
133         gdk_error_trap_pop ();
134
135         event.xconfigure.x = x;
136         event.xconfigure.y = y;
137         event.xconfigure.width = GTK_WIDGET(socket->gobj())->allocation.width;
138         event.xconfigure.height = GTK_WIDGET(socket->gobj())->allocation.height;
139
140         event.xconfigure.border_width = 0;
141         event.xconfigure.above = None;
142         event.xconfigure.override_redirect = False;
143
144         gdk_error_trap_push ();
145         XSendEvent (GDK_WINDOW_XDISPLAY (w), GDK_WINDOW_XWINDOW (w), False, StructureNotifyMask, &event);
146         gdk_error_trap_pop ();
147
148         return false;
149 }
150
151 typedef int (*error_handler_t)( Display *, XErrorEvent *);
152 static Display *the_gtk_display;
153 static error_handler_t wine_error_handler;
154 static error_handler_t gtk_error_handler;
155
156 static int
157 fst_xerror_handler( Display *disp, XErrorEvent *ev )
158 {
159         if (disp == the_gtk_display) {
160                 printf ("relaying error to gtk\n");
161                 return gtk_error_handler (disp, ev);
162         } else {
163                 printf( "relaying error to wine\n" );
164                 return wine_error_handler (disp, ev);
165         }
166 }
167
168 void
169 gui_init (int *argc, char **argv[])
170 {
171         wine_error_handler = XSetErrorHandler (NULL);
172         gtk_init (argc, argv);
173         the_gtk_display = gdk_x11_display_get_xdisplay (gdk_display_get_default());
174         gtk_error_handler = XSetErrorHandler( fst_xerror_handler );
175 }
176