use new syntax for connecting to backend signals that enforces explicit connection...
[ardour.git] / gtk2_ardour / io_selector.cc
1 /*
2     Copyright (C) 2002-2007 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 <gtkmm/messagedialog.h>
21 #include <glibmm/objectbase.h>
22
23 #include <gtkmm2ext/doi.h>
24
25 #include "ardour/port_insert.h"
26 #include "ardour/session.h"
27 #include "ardour/io.h"
28 #include "ardour/audioengine.h"
29 #include "ardour/track.h"
30 #include "ardour/audio_track.h"
31 #include "ardour/midi_track.h"
32 #include "ardour/data_type.h"
33 #include "ardour/port.h"
34 #include "ardour/bundle.h"
35
36 #include "io_selector.h"
37 #include "utils.h"
38 #include "gui_thread.h"
39 #include "i18n.h"
40
41 using namespace ARDOUR;
42 using namespace Gtk;
43
44 IOSelector::IOSelector (Gtk::Window* p, ARDOUR::Session* session, boost::shared_ptr<ARDOUR::IO> io)
45         : PortMatrix (p, session, io->default_type())
46         , _io (io)
47 {
48         /* signal flow from 0 to 1 */
49
50         _find_inputs_for_io_outputs = (_io->direction() == IO::Output);
51
52         if (_find_inputs_for_io_outputs) {
53                 _other = 1;
54                 _ours = 0;
55         } else {
56                 _other = 0;
57                 _ours = 1;
58         }
59
60         _port_group.reset (new PortGroup (io->name()));
61         _ports[_ours].add_group (_port_group);
62
63         setup_all_ports ();
64         init ();
65 }
66
67 void
68 IOSelector::setup_ports (int dim)
69 {
70         if (!_session) {
71                 return;
72         }
73         
74         _ports[dim].suspend_signals ();
75
76         if (dim == _other) {
77
78                 _ports[_other].gather (_session, _find_inputs_for_io_outputs, false);
79
80         } else {
81
82                 _port_group->clear ();
83                 _port_group->add_bundle (_io->bundle (), _io);
84         }
85
86         _ports[dim].resume_signals ();
87 }
88
89 void
90 IOSelector::set_state (ARDOUR::BundleChannel c[2], bool s)
91 {
92         ARDOUR::Bundle::PortList const & our_ports = c[_ours].bundle->channel_ports (c[_ours].channel);
93         ARDOUR::Bundle::PortList const & other_ports = c[_other].bundle->channel_ports (c[_other].channel);
94
95         for (ARDOUR::Bundle::PortList::const_iterator i = our_ports.begin(); i != our_ports.end(); ++i) {
96                 for (ARDOUR::Bundle::PortList::const_iterator j = other_ports.begin(); j != other_ports.end(); ++j) {
97
98                         Port* f = _session->engine().get_port_by_name (*i);
99                         if (!f) {
100                                 return;
101                         }
102
103                         if (s) {
104                                 _io->connect (f, *j, 0);
105                         } else {
106                                 _io->disconnect (f, *j, 0);
107                         }
108                 }
109         }
110 }
111
112 PortMatrixNode::State
113 IOSelector::get_state (ARDOUR::BundleChannel c[2]) const
114 {
115         ARDOUR::Bundle::PortList const & our_ports = c[_ours].bundle->channel_ports (c[_ours].channel);
116         ARDOUR::Bundle::PortList const & other_ports = c[_other].bundle->channel_ports (c[_other].channel);
117
118         if (our_ports.empty() || other_ports.empty()) {
119                 /* we're looking at a bundle with no parts associated with this channel,
120                    so nothing to connect */
121                 return PortMatrixNode::NOT_ASSOCIATED;
122         }
123
124         for (ARDOUR::Bundle::PortList::const_iterator i = our_ports.begin(); i != our_ports.end(); ++i) {
125                 for (ARDOUR::Bundle::PortList::const_iterator j = other_ports.begin(); j != other_ports.end(); ++j) {
126
127                         Port* f = _session->engine().get_port_by_name (*i);
128
129                         /* since we are talking about an IO, our ports should all have an associated Port *,
130                            so the above call should never fail */
131                         assert (f);
132
133                         if (!f->connected_to (*j)) {
134                                 /* if any one thing is not connected, all bets are off */
135                                 return PortMatrixNode::NOT_ASSOCIATED;
136                         }
137                 }
138         }
139
140         return PortMatrixNode::ASSOCIATED;
141 }
142
143 uint32_t
144 IOSelector::n_io_ports () const
145 {
146         if (!_find_inputs_for_io_outputs) {
147                 return _io->n_ports().get (_io->default_type());
148         } else {
149                 return _io->n_ports().get (_io->default_type());
150         }
151 }
152
153 bool
154 IOSelector::list_is_global (int dim) const
155 {
156         return (dim == _other);
157 }
158
159 IOSelectorWindow::IOSelectorWindow (ARDOUR::Session* session, boost::shared_ptr<ARDOUR::IO> io, bool /*can_cancel*/)
160         : _selector (this, session, io)
161 {
162         set_name ("IOSelectorWindow2");
163         set_title (_("I/O selector"));
164
165         add (_selector);
166
167         set_position (Gtk::WIN_POS_MOUSE);
168
169         io_name_changed (this);
170
171         show_all ();
172
173         signal_delete_event().connect (sigc::mem_fun (*this, &IOSelectorWindow::wm_delete));
174 }
175
176 bool
177 IOSelectorWindow::wm_delete (GdkEventAny* /*event*/)
178 {
179         _selector.Finished (IOSelector::Accepted);
180         hide ();
181         return true;
182 }
183
184
185 void
186 IOSelectorWindow::on_map ()
187 {
188         _selector.setup_all_ports ();
189         Window::on_map ();
190 }
191
192 void
193 IOSelectorWindow::on_show ()
194 {
195         Gtk::Window::on_show ();
196         pair<uint32_t, uint32_t> const pm_max = _selector.max_size ();
197         resize_window_to_proportion_of_monitor (this, pm_max.first, pm_max.second);
198 }
199
200 void
201 IOSelectorWindow::io_name_changed (void* src)
202 {
203         ENSURE_GUI_THREAD (*this, &IOSelectorWindow::io_name_changed, src)
204
205         string title;
206
207         if (!_selector.find_inputs_for_io_outputs()) {
208                 title = string_compose(_("%1 input"), _selector.io()->name());
209         } else {
210                 title = string_compose(_("%1 output"), _selector.io()->name());
211         }
212
213         set_title (title);
214 }
215
216 PortInsertUI::PortInsertUI (Gtk::Window* parent, ARDOUR::Session* sess, boost::shared_ptr<ARDOUR::PortInsert> pi)
217         : input_selector (parent, sess, pi->input())
218         , output_selector (parent, sess, pi->output())
219 {
220         output_selector.set_min_height_divisor (2);
221         input_selector.set_min_height_divisor (2);
222
223         pack_start (output_selector, true, true);
224         pack_start (input_selector, true, true);
225 }
226
227 void
228 PortInsertUI::redisplay ()
229 {
230         input_selector.setup_ports (input_selector.other());
231         output_selector.setup_ports (output_selector.other());
232 }
233
234 void
235 PortInsertUI::finished (IOSelector::Result r)
236 {
237         input_selector.Finished (r);
238         output_selector.Finished (r);
239 }
240
241
242 PortInsertWindow::PortInsertWindow (ARDOUR::Session* sess, boost::shared_ptr<ARDOUR::PortInsert> pi, bool can_cancel)
243         : ArdourDialog ("port insert dialog"),
244           _portinsertui (this, sess, pi),
245           ok_button (can_cancel ? _("OK"): _("Close")),
246           cancel_button (_("Cancel"))
247 {
248
249         set_name ("IOSelectorWindow");
250         string title = _("ardour: ");
251         title += pi->name();
252         set_title (title);
253
254         ok_button.set_name ("IOSelectorButton");
255         if (!can_cancel) {
256                 ok_button.set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::CLOSE, Gtk::ICON_SIZE_BUTTON)));
257         }
258         cancel_button.set_name ("IOSelectorButton");
259
260         if (can_cancel) {
261                 cancel_button.set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::CANCEL, Gtk::ICON_SIZE_BUTTON)));
262                 get_action_area()->pack_start (cancel_button, false, false);
263         } else {
264                 cancel_button.hide();
265         }
266         get_action_area()->pack_start (ok_button, false, false);
267
268         get_vbox()->pack_start (_portinsertui);
269
270         ok_button.signal_clicked().connect (sigc::mem_fun (*this, &PortInsertWindow::accept));
271         cancel_button.signal_clicked().connect (sigc::mem_fun (*this, &PortInsertWindow::cancel));
272
273         signal_delete_event().connect (sigc::mem_fun (*this, &PortInsertWindow::wm_delete), false);
274
275         pi->GoingAway.connect (going_away_connection, boost::bind (&PortInsertWindow::plugin_going_away, this));
276 }
277
278 bool
279 PortInsertWindow::wm_delete (GdkEventAny* /*event*/)
280 {
281         accept ();
282         return true;
283 }
284
285 void
286 PortInsertWindow::plugin_going_away ()
287 {
288         ENSURE_GUI_THREAD (*this, &PortInsertWindow::plugin_going_away)
289
290         going_away_connection.disconnect ();
291         delete_when_idle (this);
292 }
293
294 void
295 PortInsertWindow::on_map ()
296 {
297         _portinsertui.redisplay ();
298         Window::on_map ();
299 }
300
301
302 void
303 PortInsertWindow::cancel ()
304 {
305         _portinsertui.finished (IOSelector::Cancelled);
306         hide ();
307 }
308
309 void
310 PortInsertWindow::accept ()
311 {
312         _portinsertui.finished (IOSelector::Accepted);
313         hide ();
314 }
315