2 Copyright (C) 2000 Paul Davis
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.
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.
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.
23 #include <glibmm/thread.h>
24 #include <gtkmm2ext/utils.h>
25 #include <gtkmm2ext/window_title.h>
27 #include "ardour/ardour.h"
28 #include "ardour/audio_diskstream.h"
29 #include "ardour/audio_track.h"
30 #include "ardour/plugin.h"
31 #include "ardour/plugin_insert.h"
32 #include "ardour/plugin_manager.h"
33 #include "ardour/port_insert.h"
34 #include "ardour/return.h"
35 #include "ardour/route.h"
36 #include "ardour/send.h"
37 #include "ardour/session.h"
38 #include "ardour/session.h"
39 #include "ardour/session_route.h"
41 #include "ardour_ui.h"
42 #include "gui_thread.h"
43 #include "io_selector.h"
45 #include "mixer_strip.h"
46 #include "port_insert_ui.h"
47 #include "plugin_selector.h"
48 #include "plugin_ui.h"
49 #include "return_ui.h"
50 #include "route_params_ui.h"
56 using namespace ARDOUR
;
59 using namespace Gtkmm2ext
;
61 RouteParams_UI::RouteParams_UI ()
62 : ArdourDialog (_("Tracks and Busses")),
63 latency_apply_button (Stock::APPLY
),
72 using namespace Notebook_Helpers
;
74 input_frame
.set_shadow_type(Gtk::SHADOW_NONE
);
75 output_frame
.set_shadow_type(Gtk::SHADOW_NONE
);
76 latency_frame
.set_shadow_type (Gtk::SHADOW_NONE
);
78 notebook
.set_show_tabs (true);
79 notebook
.set_show_border (true);
80 notebook
.set_name ("RouteParamNotebook");
82 // create the tree model
83 route_display_model
= ListStore::create(route_display_columns
);
86 route_display
.set_model(route_display_model
);
87 route_display
.append_column(_("Tracks/Busses"), route_display_columns
.text
);
88 route_display
.set_name(X_("RouteParamsListDisplay"));
89 route_display
.get_selection()->set_mode(Gtk::SELECTION_SINGLE
); // default
90 route_display
.set_reorderable(false);
91 route_display
.set_size_request(75, -1);
92 route_display
.set_headers_visible(true);
93 route_display
.set_headers_clickable(true);
95 dynamic_cast<Gtk::CellRendererText
*>(route_display
.get_column_cell_renderer(0))->property_ellipsize() = Pango::ELLIPSIZE_START
;
97 route_select_scroller
.add(route_display
);
98 route_select_scroller
.set_policy(Gtk::POLICY_NEVER
, Gtk::POLICY_AUTOMATIC
);
100 route_select_frame
.set_name("RouteSelectBaseFrame");
101 route_select_frame
.set_shadow_type (Gtk::SHADOW_IN
);
102 route_select_frame
.add(route_select_scroller
);
104 list_vpacker
.pack_start (route_select_frame
, true, true);
106 notebook
.pages().push_back (TabElem (input_frame
, _("Inputs")));
107 notebook
.pages().push_back (TabElem (output_frame
, _("Outputs")));
108 notebook
.pages().push_back (TabElem (redir_hpane
, _("Plugins, Inserts & Sends")));
109 notebook
.pages().push_back (TabElem (latency_frame
, _("Latency")));
111 notebook
.set_name ("InspectorNotebook");
113 title_label
.set_name ("RouteParamsTitleLabel");
116 latency_packer
.set_spacing (18);
117 latency_button_box
.pack_start (latency_apply_button
);
118 delay_label
.set_alignment (0, 0.5);
121 route_param_frame
.set_name("RouteParamsBaseFrame");
122 route_param_frame
.set_shadow_type (Gtk::SHADOW_IN
);
125 route_hpacker
.pack_start (notebook
, true, true);
127 route_vpacker
.pack_start (title_label
, false, false);
128 route_vpacker
.pack_start (route_hpacker
, true, true);
131 list_hpane
.pack1 (list_vpacker
);
132 list_hpane
.add2 (route_vpacker
);
134 list_hpane
.set_position(110);
136 redir_hpane
.set_position(110);
138 //global_vpacker.pack_start (list_hpane, true, true);
139 //get_vbox()->pack_start (global_vpacker);
140 get_vbox()->pack_start (list_hpane
);
143 set_name ("RouteParamsWindow");
144 set_default_size (620,370);
145 set_wmclass (X_("ardour_route_parameters"), PROGRAM_NAME
);
148 route_display
.get_selection()->signal_changed().connect(sigc::mem_fun(*this, &RouteParams_UI::route_selected
));
149 route_display
.get_column(0)->signal_clicked().connect(sigc::mem_fun(*this, &RouteParams_UI::show_track_menu
));
151 add_events (Gdk::KEY_PRESS_MASK
|Gdk::KEY_RELEASE_MASK
|Gdk::BUTTON_RELEASE_MASK
);
153 _plugin_selector
= new PluginSelector (PluginManager::the_manager());
154 _plugin_selector
->signal_delete_event().connect (sigc::bind (ptr_fun (just_hide_it
),
155 static_cast<Window
*> (_plugin_selector
)));
158 signal_delete_event().connect(sigc::bind(ptr_fun(just_hide_it
), static_cast<Gtk::Window
*>(this)));
161 RouteParams_UI::~RouteParams_UI ()
166 RouteParams_UI::add_routes (RouteList
& routes
)
168 ENSURE_GUI_THREAD (*this, &RouteParams_UI::add_routes
, routes
)
170 for (RouteList::iterator x
= routes
.begin(); x
!= routes
.end(); ++x
) {
171 boost::shared_ptr
<Route
> route
= (*x
);
173 if (route
->is_hidden()) {
177 TreeModel::Row row
= *(route_display_model
->append());
178 row
[route_display_columns
.text
] = route
->name();
179 row
[route_display_columns
.route
] = route
;
181 //route_select_list.rows().back().select ();
183 route
->PropertyChanged
.connect (*this, invalidator (*this), ui_bind (&RouteParams_UI::route_property_changed
, this, _1
, boost::weak_ptr
<Route
>(route
)), gui_context());
184 route
->DropReferences
.connect (*this, invalidator (*this), boost::bind (&RouteParams_UI::route_removed
, this, boost::weak_ptr
<Route
>(route
)), gui_context());
190 RouteParams_UI::route_property_changed (const PropertyChange
& what_changed
, boost::weak_ptr
<Route
> wr
)
192 if (!what_changed
.contains (ARDOUR::Properties::name
)) {
196 boost::shared_ptr
<Route
> route (wr
.lock());
202 ENSURE_GUI_THREAD (*this, &RouteParams_UI::route_name_changed
, wr
)
205 TreeModel::Children rows
= route_display_model
->children();
206 for(TreeModel::Children::iterator iter
= rows
.begin(); iter
!= rows
.end(); ++iter
) {
207 boost::shared_ptr
<Route
> r
=(*iter
)[route_display_columns
.route
];
209 (*iter
)[route_display_columns
.text
] = route
->name() ;
216 error
<< _("route display list item for renamed route not found!") << endmsg
;
219 if (route
== _route
) {
220 track_input_label
.set_text (route
->name());
226 RouteParams_UI::setup_processor_boxes()
228 if (_session
&& _route
) {
230 // just in case... shouldn't need this
231 cleanup_processor_boxes();
233 // construct new redirect boxes
234 insert_box
= new ProcessorBox (_session
, boost::bind (&RouteParams_UI::plugin_selector
, this), _rr_selection
, 0);
235 insert_box
->set_route (_route
);
237 redir_hpane
.pack1 (*insert_box
);
239 insert_box
->ProcessorSelected
.connect (sigc::mem_fun(*this, &RouteParams_UI::redirect_selected
));
240 insert_box
->ProcessorUnselected
.connect (sigc::mem_fun(*this, &RouteParams_UI::redirect_selected
));
242 redir_hpane
.show_all();
247 RouteParams_UI::cleanup_processor_boxes()
250 redir_hpane
.remove(*insert_box
);
257 RouteParams_UI::refresh_latency ()
259 if (latency_widget
) {
260 latency_widget
->refresh();
263 snprintf (buf
, sizeof (buf
), _("Playback delay: %" PRId64
" samples"), _route
->initial_delay());
264 delay_label
.set_text (buf
);
269 RouteParams_UI::cleanup_latency_frame ()
271 if (latency_widget
) {
272 latency_frame
.remove ();
273 latency_packer
.remove (*latency_widget
);
274 latency_packer
.remove (latency_button_box
);
275 latency_packer
.remove (delay_label
);
276 latency_connections
.drop_connections ();
277 latency_click_connection
.disconnect ();
279 delete latency_widget
;
286 RouteParams_UI::setup_latency_frame ()
288 latency_widget
= new LatencyGUI (*(_route
->output()), _session
->frame_rate(), _session
->engine().frames_per_cycle());
291 snprintf (buf
, sizeof (buf
), _("Playback delay: %" PRId64
" samples"), _route
->initial_delay());
292 delay_label
.set_text (buf
);
294 latency_packer
.pack_start (*latency_widget
, false, false);
295 latency_packer
.pack_start (latency_button_box
, false, false);
296 latency_packer
.pack_start (delay_label
);
298 latency_click_connection
= latency_apply_button
.signal_clicked().connect (sigc::mem_fun (*latency_widget
, &LatencyGUI::finish
));
299 _route
->signal_latency_changed
.connect (latency_connections
, invalidator (*this), boost::bind (&RouteParams_UI::refresh_latency
, this), gui_context());
300 _route
->initial_delay_changed
.connect (latency_connections
, invalidator (*this), boost::bind (&RouteParams_UI::refresh_latency
, this), gui_context());
302 latency_frame
.add (latency_packer
);
303 latency_frame
.show_all ();
307 RouteParams_UI::setup_io_frames()
312 _input_iosel
= new IOSelector (this, _session
, _route
->input());
313 _input_iosel
->setup ();
314 input_frame
.add (*_input_iosel
);
315 input_frame
.show_all();
318 _output_iosel
= new IOSelector (this, _session
, _route
->output());
319 _output_iosel
->setup ();
320 output_frame
.add (*_output_iosel
);
321 output_frame
.show_all();
325 RouteParams_UI::cleanup_io_frames()
328 _input_iosel
->Finished (IOSelector::Cancelled
);
329 input_frame
.remove();
335 _output_iosel
->Finished (IOSelector::Cancelled
);
337 output_frame
.remove();
338 delete _output_iosel
;
344 RouteParams_UI::cleanup_view (bool stopupdate
)
347 GenericPluginUI
* plugui
= 0;
349 if (stopupdate
&& (plugui
= dynamic_cast<GenericPluginUI
*>(_active_view
)) != 0) {
350 plugui
->stop_updating (0);
353 _processor_going_away_connection
.disconnect ();
354 redir_hpane
.remove(*_active_view
);
361 RouteParams_UI::route_removed (boost::weak_ptr
<Route
> wr
)
363 boost::shared_ptr
<Route
> route (wr
.lock());
369 ENSURE_GUI_THREAD (*this, invalidator (*this), &RouteParams_UI::route_removed
, wr
)
371 TreeModel::Children rows
= route_display_model
->children();
372 TreeModel::Children::iterator ri
;
374 for(TreeModel::Children::iterator iter
= rows
.begin(); iter
!= rows
.end(); ++iter
) {
375 boost::shared_ptr
<Route
> r
=(*iter
)[route_display_columns
.route
];
378 route_display_model
->erase(iter
);
383 if (route
== _route
) {
386 cleanup_processor_boxes();
388 _route
.reset ((Route
*) 0);
389 _processor
.reset ((Processor
*) 0);
395 RouteParams_UI::set_session (Session
*sess
)
397 ArdourDialog::set_session (sess
);
399 route_display_model
->clear();
400 _plugin_selector
->set_session (_session
);
403 boost::shared_ptr
<RouteList
> r
= _session
->get_routes();
405 _session
->RouteAdded
.connect (_session_connections
, invalidator (*this), ui_bind (&RouteParams_UI::add_routes
, this, _1
), gui_context());
414 RouteParams_UI::session_going_away ()
416 ENSURE_GUI_THREAD (*this, &RouteParams_UI::session_going_away
);
418 SessionHandlePtr::session_going_away ();
420 route_display_model
->clear();
424 cleanup_processor_boxes();
425 cleanup_latency_frame ();
427 _route
.reset ((Route
*) 0);
428 _processor
.reset ((Processor
*) 0);
433 RouteParams_UI::route_selected()
435 Glib::RefPtr
<TreeSelection
> selection
= route_display
.get_selection();
436 TreeModel::iterator iter
= selection
->get_selected(); // only used with Gtk::SELECTION_SINGLE
439 //If anything is selected
440 boost::shared_ptr
<Route
> route
= (*iter
)[route_display_columns
.route
] ;
442 if (_route
== route
) {
447 // remove event binding from previously selected
449 _route_processors_connection
.disconnect ();
450 cleanup_processor_boxes();
453 cleanup_latency_frame ();
456 // update the other panes with the correct info
458 //update_routeinfo (route);
461 setup_processor_boxes();
462 setup_latency_frame ();
464 route
->processors_changed
.connect (_route_processors_connection
, invalidator (*this), ui_bind (&RouteParams_UI::processors_changed
, this, _1
), gui_context());
466 track_input_label
.set_text (_route
->name());
473 _route_processors_connection
.disconnect ();
478 cleanup_processor_boxes();
479 cleanup_latency_frame ();
481 _route
.reset ((Route
*) 0);
482 _processor
.reset ((Processor
*) 0);
483 track_input_label
.set_text(_("NO TRACK"));
490 RouteParams_UI::processors_changed (RouteProcessorChange
)
494 _processor
.reset ((Processor
*) 0);
500 RouteParams_UI::show_track_menu()
502 using namespace Menu_Helpers
;
504 if (track_menu
== 0) {
505 track_menu
= new Menu
;
506 track_menu
->set_name ("ArdourContextMenu");
507 track_menu
->items().push_back
508 (MenuElem (_("Add Track or Bus"),
509 sigc::bind (sigc::mem_fun (*(ARDOUR_UI::instance()), &ARDOUR_UI::add_route
), (Gtk::Window
*) 0)));
511 track_menu
->popup (1, gtk_get_current_event_time());
515 RouteParams_UI::redirect_selected (boost::shared_ptr
<ARDOUR::Processor
> proc
)
517 boost::shared_ptr
<Send
> send
;
518 boost::shared_ptr
<Return
> retrn
;
519 boost::shared_ptr
<PluginInsert
> plugin_insert
;
520 boost::shared_ptr
<PortInsert
> port_insert
;
522 if ((send
= boost::dynamic_pointer_cast
<Send
> (proc
)) != 0) {
524 SendUI
*send_ui
= new SendUI (this, send
, _session
);
527 send
->DropReferences
.connect (_processor_going_away_connection
, invalidator (*this), boost::bind (&RouteParams_UI::processor_going_away
, this, boost::weak_ptr
<Processor
>(proc
)), gui_context());
528 _active_view
= send_ui
;
530 redir_hpane
.add2 (*_active_view
);
531 redir_hpane
.show_all();
533 } else if ((retrn
= boost::dynamic_pointer_cast
<Return
> (proc
)) != 0) {
535 ReturnUI
*return_ui
= new ReturnUI (this, retrn
, _session
);
538 retrn
->DropReferences
.connect (_processor_going_away_connection
, invalidator (*this), boost::bind (&RouteParams_UI::processor_going_away
, this, boost::weak_ptr
<Processor
>(proc
)), gui_context());
539 _active_view
= return_ui
;
541 redir_hpane
.add2 (*_active_view
);
542 redir_hpane
.show_all();
544 } else if ((plugin_insert
= boost::dynamic_pointer_cast
<PluginInsert
> (proc
)) != 0) {
546 GenericPluginUI
*plugin_ui
= new GenericPluginUI (plugin_insert
, true);
549 plugin_insert
->plugin()->DropReferences
.connect (_processor_going_away_connection
, invalidator (*this), boost::bind (&RouteParams_UI::plugin_going_away
, this, PreFader
), gui_context());
550 plugin_ui
->start_updating (0);
551 _active_view
= plugin_ui
;
553 redir_hpane
.pack2 (*_active_view
);
554 redir_hpane
.show_all();
556 } else if ((port_insert
= boost::dynamic_pointer_cast
<PortInsert
> (proc
)) != 0) {
558 PortInsertUI
*portinsert_ui
= new PortInsertUI (this, _session
, port_insert
);
561 port_insert
->DropReferences
.connect (_processor_going_away_connection
, invalidator (*this), boost::bind (&RouteParams_UI::processor_going_away
, this, boost::weak_ptr
<Processor
> (proc
)), gui_context());
562 _active_view
= portinsert_ui
;
564 redir_hpane
.pack2 (*_active_view
);
565 portinsert_ui
->redisplay();
566 redir_hpane
.show_all();
575 RouteParams_UI::plugin_going_away (Placement place
)
577 ENSURE_GUI_THREAD (*this, &RouteParams_UI::plugin_going_away
, place
)
579 // delete the current view without calling finish
581 if (place
== PreFader
) {
582 cleanup_view (false);
583 _processor
.reset ((Processor
*) 0);
588 RouteParams_UI::processor_going_away (boost::weak_ptr
<ARDOUR::Processor
> wproc
)
590 boost::shared_ptr
<Processor
> proc
= (wproc
.lock());
596 ENSURE_GUI_THREAD (*this, &RouteParams_UI::processor_going_away
, wproc
)
598 printf ("redirect going away\n");
599 // delete the current view without calling finish
600 if (proc
== _processor
) {
601 cleanup_view (false);
602 _processor
.reset ((Processor
*) 0);
607 RouteParams_UI::update_title ()
609 WindowTitle
title (_("Tracks and Busses"));
612 title_label
.set_text(_route
->name());
613 title
+= _route
->name();
614 set_title(title
.get_string());
616 title_label
.set_text(_("No Track or Bus Selected"));
617 title
+= _("No Track or Bus Selected");
618 set_title(title
.get_string());
623 RouteParams_UI::start_updating ()
625 update_connection
= ARDOUR_UI::instance()->RapidScreenUpdate
.connect
626 (sigc::mem_fun(*this, &RouteParams_UI::update_views
));
630 RouteParams_UI::stop_updating ()
632 update_connection
.disconnect();
636 RouteParams_UI::update_views ()
639 // TODO: only do it if correct tab is showing
641 if ((sui
= dynamic_cast<SendUI
*> (_active_view
)) != 0) {