2 Copyright (C) 2006 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.
29 #include <sigc++/bind.h>
31 #include "pbd/error.h"
32 #include "pbd/stl_delete.h"
33 #include "pbd/whitespace.h"
34 #include "pbd/memento_command.h"
35 #include "pbd/enumwriter.h"
36 #include "pbd/stateful_diff_command.h"
38 #include <gtkmm/menu.h>
39 #include <gtkmm/menuitem.h>
40 #include <gtkmm2ext/gtk_ui.h>
41 #include <gtkmm2ext/selector.h>
42 #include <gtkmm2ext/bindable_button.h>
43 #include <gtkmm2ext/utils.h>
45 #include "ardour/amp.h"
46 #include "ardour/audioplaylist.h"
47 #include "ardour/diskstream.h"
48 #include "ardour/event_type_map.h"
49 #include "ardour/ladspa_plugin.h"
50 #include "ardour/location.h"
51 #include "ardour/panner.h"
52 #include "ardour/playlist.h"
53 #include "ardour/playlist.h"
54 #include "ardour/processor.h"
55 #include "ardour/profile.h"
56 #include "ardour/route_group.h"
57 #include "ardour/session.h"
58 #include "ardour/session_playlist.h"
59 #include "ardour/debug.h"
60 #include "ardour/utils.h"
61 #include "evoral/Parameter.hpp"
63 #include "ardour_ui.h"
64 #include "route_time_axis.h"
65 #include "automation_time_axis.h"
66 #include "canvas_impl.h"
67 #include "crossfade_view.h"
69 #include "gui_thread.h"
71 #include "playlist_selector.h"
72 #include "point_selection.h"
74 #include "public_editor.h"
75 #include "region_view.h"
76 #include "rgb_macros.h"
77 #include "selection.h"
78 #include "simplerect.h"
79 #include "streamview.h"
81 #include "route_group_menu.h"
83 #include "ardour/track.h"
87 using namespace ARDOUR
;
89 using namespace Gtkmm2ext
;
91 using namespace Editing
;
94 Glib::RefPtr
<Gdk::Pixbuf
> RouteTimeAxisView::slider
;
97 RouteTimeAxisView::setup_slider_pix ()
99 if ((slider
= ::get_icon ("fader_belt_h")) == 0) {
100 throw failed_constructor ();
104 RouteTimeAxisView::RouteTimeAxisView (PublicEditor
& ed
, Session
* sess
, boost::shared_ptr
<Route
> rt
, Canvas
& canvas
)
107 , TimeAxisView(sess
,ed
,(TimeAxisView
*) 0, canvas
)
108 , parent_canvas (canvas
)
109 , button_table (3, 3)
110 , route_group_button (_("g"))
111 , playlist_button (_("p"))
112 , automation_button (_("a"))
113 , gm (sess
, slider
, true, 115)
114 , _ignore_track_mode_change (false)
116 gm
.set_controls (_route
, _route
->shared_peak_meter(), _route
->amp());
117 gm
.get_level_meter().set_no_show_all();
118 gm
.get_level_meter().setup_meters(50);
122 playlist_action_menu
= 0;
123 automation_action_menu
= 0;
124 plugins_submenu_item
= 0;
128 if (!_route
->is_hidden()) {
129 _marked_for_display
= true;
133 update_solo_display ();
135 timestretch_rect
= 0;
137 destructive_track_mode_item
= 0;
138 normal_track_mode_item
= 0;
139 non_layered_track_mode_item
= 0;
141 ignore_toggle
= false;
143 route_group_button
.set_name ("TrackGroupButton");
144 playlist_button
.set_name ("TrackPlaylistButton");
145 automation_button
.set_name ("TrackAutomationButton");
147 route_group_button
.unset_flags (Gtk::CAN_FOCUS
);
148 playlist_button
.unset_flags (Gtk::CAN_FOCUS
);
149 automation_button
.unset_flags (Gtk::CAN_FOCUS
);
151 route_group_button
.signal_button_release_event().connect (sigc::mem_fun(*this, &RouteTimeAxisView::edit_click
), false);
152 playlist_button
.signal_clicked().connect (sigc::mem_fun(*this, &RouteTimeAxisView::playlist_click
));
153 automation_button
.signal_clicked().connect (sigc::mem_fun(*this, &RouteTimeAxisView::automation_click
));
159 rec_enable_button
->remove ();
161 switch (track()->mode()) {
163 case ARDOUR::NonLayered
:
164 rec_enable_button
->add (*(manage (new Image (::get_icon (X_("record_normal_red"))))));
166 case ARDOUR::Destructive
:
167 rec_enable_button
->add (*(manage (new Image (::get_icon (X_("record_tape_red"))))));
170 rec_enable_button
->show_all ();
172 controls_table
.attach (*rec_enable_button
, 5, 6, 0, 1, Gtk::FILL
|Gtk::EXPAND
, Gtk::FILL
|Gtk::EXPAND
, 0, 0);
173 ARDOUR_UI::instance()->set_tip(*rec_enable_button
, _("Record"));
175 rec_enable_button
->set_sensitive (_session
->writable());
178 controls_hbox
.pack_start(gm
.get_level_meter(), false, false);
179 _route
->meter_change
.connect (*this, invalidator (*this), bind (&RouteTimeAxisView::meter_changed
, this), gui_context());
180 _route
->input()->changed
.connect (*this, invalidator (*this), ui_bind (&RouteTimeAxisView::io_changed
, this, _1
, _2
), gui_context());
181 _route
->output()->changed
.connect (*this, invalidator (*this), ui_bind (&RouteTimeAxisView::io_changed
, this, _1
, _2
), gui_context());
183 controls_table
.attach (*mute_button
, 6, 7, 0, 1, Gtk::FILL
|Gtk::EXPAND
, Gtk::FILL
|Gtk::EXPAND
, 0, 0);
185 if (!_route
->is_master()) {
186 controls_table
.attach (*solo_button
, 7, 8, 0, 1, Gtk::FILL
|Gtk::EXPAND
, Gtk::FILL
|Gtk::EXPAND
, 0, 0);
189 controls_table
.attach (route_group_button
, 7, 8, 1, 2, Gtk::FILL
|Gtk::EXPAND
, Gtk::FILL
|Gtk::EXPAND
, 0, 0);
190 controls_table
.attach (gm
.get_gain_slider(), 0, 5, 1, 2, Gtk::SHRINK
, Gtk::SHRINK
, 0, 0);
192 ARDOUR_UI::instance()->set_tip(*solo_button
,_("Solo"));
193 ARDOUR_UI::instance()->set_tip(*mute_button
,_("Mute"));
194 ARDOUR_UI::instance()->set_tip(route_group_button
, _("Route Group"));
195 ARDOUR_UI::instance()->set_tip(playlist_button
,_("Playlist"));
196 ARDOUR_UI::instance()->set_tip(automation_button
, _("Automation"));
200 controls_table
.attach (automation_button
, 6, 7, 1, 2, Gtk::FILL
|Gtk::EXPAND
, Gtk::FILL
|Gtk::EXPAND
);
202 if (is_track() && track()->mode() == ARDOUR::Normal
) {
203 controls_table
.attach (playlist_button
, 5, 6, 1, 2, Gtk::FILL
|Gtk::EXPAND
, Gtk::FILL
|Gtk::EXPAND
);
208 _route
->processors_changed
.connect (*this, invalidator (*this), ui_bind (&RouteTimeAxisView::processors_changed
, this, _1
), gui_context());
209 _route
->PropertyChanged
.connect (*this, invalidator (*this), ui_bind (&RouteTimeAxisView::route_property_changed
, this, _1
), gui_context());
213 track()->TrackModeChanged
.connect (*this, invalidator (*this), boost::bind (&RouteTimeAxisView::track_mode_changed
, this), gui_context());
214 track()->FreezeChange
.connect (*this, invalidator (*this), boost::bind (&RouteTimeAxisView::map_frozen
, this), gui_context());
215 track()->SpeedChanged
.connect (*this, invalidator (*this), boost::bind (&RouteTimeAxisView::speed_changed
, this), gui_context());
217 /* pick up the correct freeze state */
222 _editor
.ZoomChanged
.connect (sigc::mem_fun(*this, &RouteTimeAxisView::reset_samples_per_unit
));
223 ColorsChanged
.connect (sigc::mem_fun (*this, &RouteTimeAxisView::color_handler
));
225 PropertyList
* plist
= new PropertyList();
227 plist
->add (ARDOUR::Properties::edit
, true);
228 plist
->add (ARDOUR::Properties::mute
, true);
229 plist
->add (ARDOUR::Properties::solo
, true);
231 route_group_menu
= new RouteGroupMenu (_session
, plist
);
232 route_group_menu
->GroupSelected
.connect (sigc::mem_fun (*this, &RouteTimeAxisView::set_route_group_from_menu
));
234 gm
.get_gain_slider().signal_scroll_event().connect(sigc::mem_fun(*this, &RouteTimeAxisView::controls_ebox_scroll
), false);
235 gm
.get_gain_slider().set_name ("TrackGainFader");
238 RouteTimeAxisView::~RouteTimeAxisView ()
240 CatchDeletion (this);
242 for (list
<ProcessorAutomationInfo
*>::iterator i
= processor_automation
.begin(); i
!= processor_automation
.end(); ++i
) {
246 delete playlist_menu
;
249 delete playlist_action_menu
;
250 playlist_action_menu
= 0;
255 _automation_tracks
.clear ();
257 delete route_group_menu
;
261 RouteTimeAxisView::post_construct ()
263 /* map current state of the route */
265 update_diskstream_display ();
267 _subplugin_menu_map
.clear ();
268 subplugin_menu
.items().clear ();
269 _route
->foreach_processor (sigc::mem_fun (*this, &RouteTimeAxisView::add_processor_to_subplugin_menu
));
270 _route
->foreach_processor (sigc::mem_fun (*this, &RouteTimeAxisView::add_existing_processor_automation_curves
));
271 reset_processor_automation_curves ();
275 RouteTimeAxisView::edit_click (GdkEventButton
*ev
)
277 if (Keyboard::modifier_state_equals (ev
->state
, Keyboard::PrimaryModifier
)) {
278 if (_route
->route_group()) {
279 _route
->route_group()->remove (_route
);
284 route_group_menu
->rebuild (_route
->route_group ());
285 route_group_menu
->popup (ev
->button
, ev
->time
);
291 RouteTimeAxisView::set_route_group_from_menu (RouteGroup
*eg
)
296 if (_route
->route_group()) {
297 _route
->route_group()->remove (_route
);
303 RouteTimeAxisView::playlist_changed ()
309 RouteTimeAxisView::label_view ()
311 string x
= _route
->name();
313 if (x
!= name_entry
.get_text()) {
314 name_entry
.set_text (x
);
317 ARDOUR_UI::instance()->set_tip (name_entry
, x
);
321 RouteTimeAxisView::route_property_changed (const PropertyChange
& what_changed
)
323 if (what_changed
.contains (ARDOUR::Properties::name
)) {
329 RouteTimeAxisView::take_name_changed (void *src
)
338 RouteTimeAxisView::playlist_click ()
340 // always build a new action menu
342 delete playlist_action_menu
;
344 playlist_action_menu
= new Menu
;
345 playlist_action_menu
->set_name ("ArdourContextMenu");
347 build_playlist_menu (playlist_action_menu
);
349 conditionally_add_to_selection ();
350 playlist_action_menu
->popup (1, gtk_get_current_event_time());
354 RouteTimeAxisView::automation_click ()
356 conditionally_add_to_selection ();
357 build_automation_action_menu ();
358 automation_action_menu
->popup (1, gtk_get_current_event_time());
362 RouteTimeAxisView::set_state (const XMLNode
& node
, int version
)
364 TimeAxisView::set_state (node
, version
);
366 XMLNodeList kids
= node
.children();
367 XMLNodeConstIterator iter
;
368 const XMLProperty
* prop
;
370 if (_view
&& (prop
= node
.property ("layer-display"))) {
371 set_layer_display (LayerDisplay (string_2_enum (prop
->value(), _view
->layer_display ())));
374 for (iter
= kids
.begin(); iter
!= kids
.end(); ++iter
) {
375 if ((*iter
)->name() == AutomationTimeAxisView::state_node_name
) {
376 if ((prop
= (*iter
)->property ("automation-id")) != 0) {
378 Evoral::Parameter param
= ARDOUR::EventTypeMap::instance().new_parameter(prop
->value());
379 bool show
= ((prop
= (*iter
)->property ("shown")) != 0) && string_is_affirmative (prop
->value());
380 create_automation_child(param
, show
);
382 warning
<< "Automation child has no ID" << endmsg
;
391 RouteTimeAxisView::build_automation_action_menu ()
393 using namespace Menu_Helpers
;
395 /* detach subplugin_menu from automation_action_menu before we delete automation_action_menu,
396 otherwise bad things happen (see comment for similar case in MidiTimeAxisView::build_automation_action_menu)
399 detach_menu (subplugin_menu
);
401 _main_automation_menu_map
.clear ();
402 delete automation_action_menu
;
403 automation_action_menu
= new Menu
;
405 MenuList
& items
= automation_action_menu
->items();
407 automation_action_menu
->set_name ("ArdourContextMenu");
409 items
.push_back (MenuElem (_("Show All Automation"),
410 sigc::mem_fun(*this, &RouteTimeAxisView::show_all_automation
)));
412 items
.push_back (MenuElem (_("Show Existing Automation"),
413 sigc::mem_fun(*this, &RouteTimeAxisView::show_existing_automation
)));
415 items
.push_back (MenuElem (_("Hide All Automation"),
416 sigc::mem_fun(*this, &RouteTimeAxisView::hide_all_automation
)));
418 items
.push_back (SeparatorElem ());
420 /* Attach the plugin submenu. It may have previously been used elsewhere,
421 so it was detached above */
423 items
.push_back (MenuElem (_("Plugins"), subplugin_menu
));
424 items
.back().set_sensitive (!subplugin_menu
.items().empty());
428 RouteTimeAxisView::build_display_menu ()
430 using namespace Menu_Helpers
;
434 TimeAxisView::build_display_menu ();
436 /* now fill it with our stuff */
438 MenuList
& items
= display_menu
->items();
439 display_menu
->set_name ("ArdourContextMenu");
441 items
.push_back (MenuElem (_("Color..."), sigc::mem_fun(*this, &RouteTimeAxisView::select_track_color
)));
443 items
.push_back (SeparatorElem());
445 if (!Profile
->get_sae()) {
446 items
.push_back (MenuElem (_("Remote Control ID..."), sigc::mem_fun (*this, &RouteUI::open_remote_control_id_dialog
)));
447 /* rebuild this every time */
448 build_automation_action_menu ();
449 detach_menu (*automation_action_menu
);
450 items
.push_back (MenuElem (_("Automation"), *automation_action_menu
));
451 items
.push_back (SeparatorElem());
454 // Hook for derived classes to add type specific stuff
455 append_extra_display_menu_items ();
456 items
.push_back (SeparatorElem());
460 Menu
*layers_menu
= manage(new Menu
);
461 MenuList
&layers_items
= layers_menu
->items();
462 layers_menu
->set_name("ArdourContextMenu");
464 RadioMenuItem::Group layers_group
;
466 layers_items
.push_back(RadioMenuElem (layers_group
, _("Overlaid"),
467 sigc::bind (sigc::mem_fun (*this, &RouteTimeAxisView::set_layer_display
), Overlaid
)));
468 layers_items
.push_back(RadioMenuElem (layers_group
, _("Stacked"),
469 sigc::bind (sigc::mem_fun (*this, &RouteTimeAxisView::set_layer_display
), Stacked
)));
471 items
.push_back (MenuElem (_("Layers"), *layers_menu
));
473 Menu
* alignment_menu
= manage (new Menu
);
474 MenuList
& alignment_items
= alignment_menu
->items();
475 alignment_menu
->set_name ("ArdourContextMenu");
477 RadioMenuItem::Group align_group
;
479 alignment_items
.push_back (RadioMenuElem (align_group
, _("Align With Existing Material"),
480 sigc::bind (sigc::mem_fun(*this, &RouteTimeAxisView::set_align_style
), ExistingMaterial
)));
481 align_existing_item
= dynamic_cast<RadioMenuItem
*>(&alignment_items
.back());
482 if (track()->alignment_style() == ExistingMaterial
) {
483 align_existing_item
->set_active();
486 alignment_items
.push_back (RadioMenuElem (align_group
, _("Align With Capture Time"),
487 sigc::bind (sigc::mem_fun(*this, &RouteTimeAxisView::set_align_style
), CaptureTime
)));
488 align_capture_item
= dynamic_cast<RadioMenuItem
*>(&alignment_items
.back());
489 if (track()->alignment_style() == CaptureTime
) {
490 align_capture_item
->set_active();
493 if (!Profile
->get_sae()) {
495 items
.push_back (MenuElem (_("Alignment"), *alignment_menu
));
496 track()->AlignmentStyleChanged
.connect (route_connections
, invalidator (*this), boost::bind (&RouteTimeAxisView::align_style_changed
, this), gui_context());
498 RadioMenuItem::Group mode_group
;
499 items
.push_back (RadioMenuElem (mode_group
, _("Normal Mode"), sigc::bind (
500 sigc::mem_fun (*this, &RouteTimeAxisView::set_track_mode
),
502 normal_track_mode_item
= dynamic_cast<RadioMenuItem
*>(&items
.back());
504 items
.push_back (RadioMenuElem (mode_group
, _("Tape Mode"), sigc::bind (
505 sigc::mem_fun (*this, &RouteTimeAxisView::set_track_mode
),
506 ARDOUR::Destructive
)));
507 destructive_track_mode_item
= dynamic_cast<RadioMenuItem
*>(&items
.back());
509 items
.push_back (RadioMenuElem (mode_group
, _("Non-Layered Mode"),
510 sigc::bind (sigc::mem_fun (*this, &RouteTimeAxisView::set_track_mode
), ARDOUR::NonLayered
)));
511 non_layered_track_mode_item
= dynamic_cast<RadioMenuItem
*>(&items
.back());
514 _ignore_track_mode_change
= true;
516 switch (track()->mode()) {
517 case ARDOUR::Destructive
:
518 destructive_track_mode_item
->set_active ();
521 normal_track_mode_item
->set_active ();
523 case ARDOUR::NonLayered
:
524 non_layered_track_mode_item
->set_active ();
528 _ignore_track_mode_change
= false;
531 track()->AlignmentStyleChanged
.connect (route_connections
, invalidator (*this), boost::bind (&RouteTimeAxisView::align_style_changed
, this), gui_context());
533 color_mode_menu
= build_color_mode_menu();
534 if (color_mode_menu
) {
535 items
.push_back (MenuElem (_("Color Mode"), *color_mode_menu
));
538 items
.push_back (SeparatorElem());
541 items
.push_back (CheckMenuElem (_("Active"), sigc::mem_fun(*this, &RouteUI::toggle_route_active
)));
542 route_active_menu_item
= dynamic_cast<CheckMenuItem
*> (&items
.back());
543 route_active_menu_item
->set_active (_route
->active());
545 items
.push_back (SeparatorElem());
546 items
.push_back (MenuElem (_("Hide"), sigc::bind (sigc::mem_fun(_editor
, &PublicEditor::hide_track_in_display
), this, false)));
547 if (!Profile
->get_sae()) {
548 items
.push_back (MenuElem (_("Remove"), sigc::mem_fun(*this, &RouteUI::remove_this_route
)));
550 items
.push_front (SeparatorElem());
551 items
.push_front (MenuElem (_("Delete"), sigc::mem_fun(*this, &RouteUI::remove_this_route
)));
555 static bool __reset_item (RadioMenuItem
* item
, RadioMenuItem
* item_2
)
558 item_2
->set_active ();
563 RouteTimeAxisView::set_track_mode (TrackMode mode
)
565 if (_ignore_track_mode_change
) {
570 RadioMenuItem
* other_item
;
571 RadioMenuItem
* other_item_2
;
575 item
= normal_track_mode_item
;
576 other_item
= non_layered_track_mode_item
;
577 other_item_2
= destructive_track_mode_item
;
579 case ARDOUR::NonLayered
:
580 item
= non_layered_track_mode_item
;
581 other_item
= normal_track_mode_item
;
582 other_item_2
= destructive_track_mode_item
;
584 case ARDOUR::Destructive
:
585 item
= destructive_track_mode_item
;
586 other_item
= normal_track_mode_item
;
587 other_item_2
= non_layered_track_mode_item
;
590 fatal
<< string_compose (_("programming error: %1 %2"), "illegal track mode in RouteTimeAxisView::set_track_mode", mode
) << endmsg
;
595 if (item
&& other_item
&& other_item_2
&& track()->mode() != mode
) {
596 _set_track_mode (track().get(), mode
, other_item
, other_item_2
);
601 RouteTimeAxisView::_set_track_mode (Track
* track
, TrackMode mode
, RadioMenuItem
* reset_item
, RadioMenuItem
* reset_item_2
)
605 if (!track
->can_use_mode (mode
, needs_bounce
)) {
609 Glib::signal_idle().connect (sigc::bind (sigc::ptr_fun (__reset_item
), reset_item
, reset_item_2
));
612 cerr
<< "would bounce this one\n";
613 /* XXX: radio menu item becomes inconsistent with track state in this case */
618 track
->set_mode (mode
);
620 rec_enable_button
->remove ();
623 case ARDOUR::NonLayered
:
625 rec_enable_button
->add (*(manage (new Image (::get_icon (X_("record_normal_red"))))));
627 case ARDOUR::Destructive
:
628 rec_enable_button
->add (*(manage (new Image (::get_icon (X_("record_tape_red"))))));
632 rec_enable_button
->show_all ();
636 RouteTimeAxisView::track_mode_changed ()
640 switch (track()->mode()) {
642 item
= normal_track_mode_item
;
644 case ARDOUR::NonLayered
:
645 item
= non_layered_track_mode_item
;
647 case ARDOUR::Destructive
:
648 item
= destructive_track_mode_item
;
651 fatal
<< string_compose (_("programming error: %1 %2"), "illegal track mode in RouteTimeAxisView::set_track_mode", track()->mode()) << endmsg
;
660 RouteTimeAxisView::show_timestretch (nframes_t start
, nframes_t end
)
666 TimeAxisView::show_timestretch (start
, end
);
676 /* check that the time selection was made in our route, or our route group.
677 remember that route_group() == 0 implies the route is *not* in a edit group.
680 if (!(ts
.track
== this || (ts
.group
!= 0 && ts
.group
== _route
->route_group()))) {
681 /* this doesn't apply to us */
685 /* ignore it if our edit group is not active */
687 if ((ts
.track
!= this) && _route
->route_group() && !_route
->route_group()->is_active()) {
692 if (timestretch_rect
== 0) {
693 timestretch_rect
= new SimpleRect (*canvas_display ());
694 timestretch_rect
->property_x1() = 0.0;
695 timestretch_rect
->property_y1() = 0.0;
696 timestretch_rect
->property_x2() = 0.0;
697 timestretch_rect
->property_y2() = 0.0;
698 timestretch_rect
->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_TimeStretchFill
.get();
699 timestretch_rect
->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_TimeStretchOutline
.get();
702 timestretch_rect
->show ();
703 timestretch_rect
->raise_to_top ();
705 x1
= start
/ _editor
.get_current_zoom();
706 x2
= (end
- 1) / _editor
.get_current_zoom();
707 y2
= current_height() - 2;
709 timestretch_rect
->property_x1() = x1
;
710 timestretch_rect
->property_y1() = 1.0;
711 timestretch_rect
->property_x2() = x2
;
712 timestretch_rect
->property_y2() = y2
;
716 RouteTimeAxisView::hide_timestretch ()
718 TimeAxisView::hide_timestretch ();
720 if (timestretch_rect
) {
721 timestretch_rect
->hide ();
726 RouteTimeAxisView::show_selection (TimeSelection
& ts
)
730 /* ignore it if our edit group is not active or if the selection was started
731 in some other track or route group (remember that route_group() == 0 means
732 that the track is not in an route group).
735 if (((ts
.track
!= this && !is_child (ts
.track
)) && _route
->route_group() && !_route
->route_group()->is_active()) ||
736 (!(ts
.track
== this || is_child (ts
.track
) || (ts
.group
!= 0 && ts
.group
== _route
->route_group())))) {
742 TimeAxisView::show_selection (ts
);
746 RouteTimeAxisView::set_height (uint32_t h
)
749 bool height_changed
= (height
== 0) || (h
!= height
);
750 gm
.get_level_meter().setup_meters (gmlen
);
752 TimeAxisView::set_height (h
);
757 _view
->set_height ((double) current_height());
761 snprintf (buf
, sizeof (buf
), "%u", height
);
762 xml_node
->add_property ("height", buf
);
764 if (height
>= preset_height (HeightNormal
)) {
769 gm
.get_gain_slider().show();
771 if (!_route
|| _route
->is_monitor()) {
776 if (rec_enable_button
)
777 rec_enable_button
->show();
779 route_group_button
.show();
780 automation_button
.show();
782 if (is_track() && track()->mode() == ARDOUR::Normal
) {
783 playlist_button
.show();
786 } else if (height
>= preset_height (HeightSmaller
)) {
792 gm
.get_gain_slider().hide();
794 if (!_route
|| _route
->is_monitor()) {
799 if (rec_enable_button
)
800 rec_enable_button
->show();
802 route_group_button
.hide ();
803 automation_button
.hide ();
805 if (is_track() && track()->mode() == ARDOUR::Normal
) {
806 playlist_button
.hide ();
812 /* don't allow name_entry to be hidden while
813 it has focus, otherwise the GUI becomes unusable.
816 if (name_entry
.has_focus()) {
817 if (name_entry
.get_text() != _route
->name()) {
818 name_entry_changed ();
820 controls_ebox
.grab_focus ();
826 gm
.get_gain_slider().hide();
829 if (rec_enable_button
)
830 rec_enable_button
->hide();
832 route_group_button
.hide ();
833 automation_button
.hide ();
834 playlist_button
.hide ();
835 name_label
.set_text (_route
->name());
838 if (height_changed
&& !no_redraw
) {
839 /* only emit the signal if the height really changed */
840 _route
->gui_changed ("track_height", (void *) 0); /* EMIT_SIGNAL */
845 RouteTimeAxisView::select_track_color ()
847 if (RouteUI::choose_color ()) {
850 _view
->apply_color (_color
, StreamView::RegionColor
);
856 RouteTimeAxisView::reset_samples_per_unit ()
858 set_samples_per_unit (_editor
.get_current_zoom());
862 RouteTimeAxisView::set_samples_per_unit (double spu
)
867 speed
= track()->speed();
871 _view
->set_samples_per_unit (spu
* speed
);
874 TimeAxisView::set_samples_per_unit (spu
* speed
);
878 RouteTimeAxisView::align_style_changed ()
880 switch (track()->alignment_style()) {
881 case ExistingMaterial
:
882 if (!align_existing_item
->get_active()) {
883 align_existing_item
->set_active();
887 if (!align_capture_item
->get_active()) {
888 align_capture_item
->set_active();
895 RouteTimeAxisView::set_align_style (AlignStyle style
)
900 case ExistingMaterial
:
901 item
= align_existing_item
;
904 item
= align_capture_item
;
907 fatal
<< string_compose (_("programming error: %1 %2"), "illegal align style in RouteTimeAxisView::set_align_style", style
) << endmsg
;
912 if (item
->get_active()) {
913 track()->set_align_style (style
);
918 RouteTimeAxisView::rename_current_playlist ()
920 ArdourPrompter
prompter (true);
923 boost::shared_ptr
<Track
> tr
= track();
924 if (!tr
|| tr
->destructive()) {
928 boost::shared_ptr
<Playlist
> pl
= tr
->playlist();
933 prompter
.set_title (_("Rename Playlist"));
934 prompter
.set_prompt (_("New name for playlist:"));
935 prompter
.set_initial_text (pl
->name());
936 prompter
.add_button (_("Rename"), Gtk::RESPONSE_ACCEPT
);
937 prompter
.set_response_sensitive (Gtk::RESPONSE_ACCEPT
, false);
939 switch (prompter
.run ()) {
940 case Gtk::RESPONSE_ACCEPT
:
941 prompter
.get_result (name
);
953 RouteTimeAxisView::resolve_new_group_playlist_name(std::string
&basename
, vector
<boost::shared_ptr
<Playlist
> > const & playlists
)
955 std::string
ret (basename
);
957 std::string
const group_string
= "." + route_group()->name() + ".";
959 // iterate through all playlists
961 for (vector
<boost::shared_ptr
<Playlist
> >::const_iterator i
= playlists
.begin(); i
!= playlists
.end(); ++i
) {
962 std::string tmp
= (*i
)->name();
964 std::string::size_type idx
= tmp
.find(group_string
);
965 // find those which belong to this group
966 if (idx
!= string::npos
) {
967 tmp
= tmp
.substr(idx
+ group_string
.length());
969 // and find the largest current number
970 int x
= atoi(tmp
.c_str());
980 snprintf (buf
, sizeof(buf
), "%d", maxnumber
);
982 ret
= this->name() + "." + route_group()->name () + "." + buf
;
988 RouteTimeAxisView::use_copy_playlist (bool prompt
, vector
<boost::shared_ptr
<Playlist
> > const & playlists_before_op
)
992 boost::shared_ptr
<Track
> tr
= track ();
993 if (!tr
|| tr
->destructive()) {
997 boost::shared_ptr
<const Playlist
> pl
= tr
->playlist();
1004 if (route_group() && route_group()->is_active()) {
1005 name
= resolve_new_group_playlist_name(name
, playlists_before_op
);
1008 while (_session
->playlists
->by_name(name
)) {
1009 name
= Playlist::bump_name (name
, *_session
);
1012 // TODO: The prompter "new" button should be de-activated if the user
1013 // specifies a playlist name which already exists in the session.
1017 ArdourPrompter
prompter (true);
1019 prompter
.set_title (_("New Copy Playlist"));
1020 prompter
.set_prompt (_("Name for new playlist:"));
1021 prompter
.set_initial_text (name
);
1022 prompter
.add_button (Gtk::Stock::NEW
, Gtk::RESPONSE_ACCEPT
);
1023 prompter
.set_response_sensitive (Gtk::RESPONSE_ACCEPT
, true);
1024 prompter
.show_all ();
1026 switch (prompter
.run ()) {
1027 case Gtk::RESPONSE_ACCEPT
:
1028 prompter
.get_result (name
);
1036 if (name
.length()) {
1037 tr
->use_copy_playlist ();
1038 tr
->playlist()->set_name (name
);
1043 RouteTimeAxisView::use_new_playlist (bool prompt
, vector
<boost::shared_ptr
<Playlist
> > const & playlists_before_op
)
1047 boost::shared_ptr
<Track
> tr
= track ();
1048 if (!tr
|| tr
->destructive()) {
1052 boost::shared_ptr
<const Playlist
> pl
= tr
->playlist();
1059 if (route_group() && route_group()->is_active()) {
1060 name
= resolve_new_group_playlist_name(name
,playlists_before_op
);
1063 while (_session
->playlists
->by_name(name
)) {
1064 name
= Playlist::bump_name (name
, *_session
);
1070 ArdourPrompter
prompter (true);
1072 prompter
.set_title (_("New Playlist"));
1073 prompter
.set_prompt (_("Name for new playlist:"));
1074 prompter
.set_initial_text (name
);
1075 prompter
.add_button (Gtk::Stock::NEW
, Gtk::RESPONSE_ACCEPT
);
1076 prompter
.set_response_sensitive (Gtk::RESPONSE_ACCEPT
, true);
1078 switch (prompter
.run ()) {
1079 case Gtk::RESPONSE_ACCEPT
:
1080 prompter
.get_result (name
);
1088 if (name
.length()) {
1089 tr
->use_new_playlist ();
1090 tr
->playlist()->set_name (name
);
1095 RouteTimeAxisView::clear_playlist ()
1097 boost::shared_ptr
<Track
> tr
= track ();
1098 if (!tr
|| tr
->destructive()) {
1102 boost::shared_ptr
<Playlist
> pl
= tr
->playlist();
1107 _editor
.clear_playlist (pl
);
1111 RouteTimeAxisView::speed_changed ()
1113 Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&RouteTimeAxisView::reset_samples_per_unit
, this));
1117 RouteTimeAxisView::update_diskstream_display ()
1127 RouteTimeAxisView::selection_click (GdkEventButton
* ev
)
1129 if (Keyboard::modifier_state_equals (ev
->state
, (Keyboard::TertiaryModifier
|Keyboard::PrimaryModifier
))) {
1131 /* special case: select/deselect all tracks */
1132 if (_editor
.get_selection().selected (this)) {
1133 _editor
.get_selection().clear_tracks ();
1135 _editor
.select_all_tracks ();
1141 switch (ArdourKeyboard::selection_type (ev
->state
)) {
1142 case Selection::Toggle
:
1143 _editor
.get_selection().toggle (this);
1146 case Selection::Set
:
1147 _editor
.get_selection().set (this);
1150 case Selection::Extend
:
1151 _editor
.extend_selection_to_track (*this);
1154 case Selection::Add
:
1155 _editor
.get_selection().add (this);
1161 RouteTimeAxisView::set_selected_points (PointSelection
& points
)
1163 for (Children::iterator i
= children
.begin(); i
!= children
.end(); ++i
) {
1164 (*i
)->set_selected_points (points
);
1169 RouteTimeAxisView::set_selected_regionviews (RegionSelection
& regions
)
1172 _view
->set_selected_regionviews (regions
);
1176 /** Add the selectable things that we have to a list.
1177 * @param results List to add things to.
1180 RouteTimeAxisView::get_selectables (nframes_t start
, nframes_t end
, double top
, double bot
, list
<Selectable
*>& results
)
1185 speed
= track()->speed();
1188 nframes_t start_adjusted
= session_frame_to_track_frame(start
, speed
);
1189 nframes_t end_adjusted
= session_frame_to_track_frame(end
, speed
);
1191 if ((_view
&& ((top
< 0.0 && bot
< 0.0))) || touched (top
, bot
)) {
1192 _view
->get_selectables (start_adjusted
, end_adjusted
, top
, bot
, results
);
1195 /* pick up visible automation tracks */
1197 for (Children::iterator i
= children
.begin(); i
!= children
.end(); ++i
) {
1198 if (!(*i
)->hidden()) {
1199 (*i
)->get_selectables (start_adjusted
, end_adjusted
, top
, bot
, results
);
1205 RouteTimeAxisView::get_inverted_selectables (Selection
& sel
, list
<Selectable
*>& results
)
1208 _view
->get_inverted_selectables (sel
, results
);
1211 for (Children::iterator i
= children
.begin(); i
!= children
.end(); ++i
) {
1212 if (!(*i
)->hidden()) {
1213 (*i
)->get_inverted_selectables (sel
, results
);
1221 RouteTimeAxisView::route_group () const
1223 return _route
->route_group();
1227 RouteTimeAxisView::name() const
1229 return _route
->name();
1232 boost::shared_ptr
<Playlist
>
1233 RouteTimeAxisView::playlist () const
1235 boost::shared_ptr
<Track
> tr
;
1237 if ((tr
= track()) != 0) {
1238 return tr
->playlist();
1240 return boost::shared_ptr
<Playlist
> ();
1245 RouteTimeAxisView::name_entry_changed ()
1249 x
= name_entry
.get_text ();
1251 if (x
== _route
->name()) {
1255 strip_whitespace_edges(x
);
1257 if (x
.length() == 0) {
1258 name_entry
.set_text (_route
->name());
1262 if (!_session
->route_name_unique (x
)) {
1263 ARDOUR_UI::instance()->popup_error (_("A track already exists with that name"));
1264 name_entry
.set_text (_route
->name());
1265 } else if (_session
->route_name_internal (x
)) {
1266 ARDOUR_UI::instance()->popup_error (_("You cannot create a track with that name as it is reserved for Ardour"));
1267 name_entry
.set_text (_route
->name());
1269 _route
->set_name (x
);
1273 boost::shared_ptr
<Region
>
1274 RouteTimeAxisView::find_next_region (nframes_t pos
, RegionPoint point
, int32_t dir
)
1276 boost::shared_ptr
<Playlist
> pl
= playlist ();
1279 return pl
->find_next_region (pos
, point
, dir
);
1282 return boost::shared_ptr
<Region
> ();
1286 RouteTimeAxisView::find_next_region_boundary (nframes64_t pos
, int32_t dir
)
1288 boost::shared_ptr
<Playlist
> pl
= playlist ();
1291 return pl
->find_next_region_boundary (pos
, dir
);
1298 RouteTimeAxisView::cut_copy_clear (Selection
& selection
, CutCopyOp op
)
1300 boost::shared_ptr
<Playlist
> what_we_got
;
1301 boost::shared_ptr
<Track
> tr
= track ();
1302 boost::shared_ptr
<Playlist
> playlist
;
1306 /* route is a bus, not a track */
1310 playlist
= tr
->playlist();
1312 TimeSelection
time (selection
.time
);
1313 float const speed
= tr
->speed();
1314 if (speed
!= 1.0f
) {
1315 for (TimeSelection::iterator i
= time
.begin(); i
!= time
.end(); ++i
) {
1316 (*i
).start
= session_frame_to_track_frame((*i
).start
, speed
);
1317 (*i
).end
= session_frame_to_track_frame((*i
).end
, speed
);
1321 playlist
->clear_history ();
1322 playlist
->clear_owned_history ();
1326 if ((what_we_got
= playlist
->cut (time
)) != 0) {
1327 _editor
.get_cut_buffer().add (what_we_got
);
1329 vector
<StatefulDiffCommand
*> cmds
;
1331 playlist
->rdiff (cmds
);
1333 for (vector
<StatefulDiffCommand
*>::iterator c
= cmds
.begin(); c
!= cmds
.end(); ++c
) {
1334 _session
->add_command (*c
);
1336 _session
->add_command (new StatefulDiffCommand (playlist
));
1341 if ((what_we_got
= playlist
->copy (time
)) != 0) {
1342 _editor
.get_cut_buffer().add (what_we_got
);
1347 if ((what_we_got
= playlist
->cut (time
)) != 0) {
1348 vector
<StatefulDiffCommand
*> cmds
;
1350 playlist
->rdiff (cmds
);
1352 for (vector
<StatefulDiffCommand
*>::iterator c
= cmds
.begin(); c
!= cmds
.end(); ++c
) {
1353 _session
->add_command (*c
);
1355 _session
->add_command (new StatefulDiffCommand (playlist
));
1356 what_we_got
->release ();
1366 RouteTimeAxisView::paste (nframes_t pos
, float times
, Selection
& selection
, size_t nth
)
1372 boost::shared_ptr
<Playlist
> pl
= playlist ();
1373 PlaylistSelection::iterator p
;
1375 for (p
= selection
.playlists
.begin(); p
!= selection
.playlists
.end() && nth
; ++p
, --nth
) {}
1377 if (p
== selection
.playlists
.end()) {
1381 if (track()->speed() != 1.0f
) {
1382 pos
= session_frame_to_track_frame (pos
, track()->speed());
1385 pl
->clear_history ();
1386 pl
->paste (*p
, pos
, times
);
1387 _session
->add_command (new StatefulDiffCommand (pl
));
1393 TimeAxisView::Children
1394 RouteTimeAxisView::get_child_list()
1396 TimeAxisView::Children redirect_children
;
1398 for (Children::iterator i
= children
.begin(); i
!= children
.end(); ++i
) {
1399 if (!(*i
)->hidden()) {
1400 redirect_children
.push_back(*i
);
1403 return redirect_children
;
1407 struct PlaylistSorter
{
1408 bool operator() (boost::shared_ptr
<Playlist
> a
, boost::shared_ptr
<Playlist
> b
) const {
1409 return a
->sort_id() < b
->sort_id();
1414 RouteTimeAxisView::build_playlist_menu (Gtk::Menu
* menu
)
1416 using namespace Menu_Helpers
;
1418 if (!menu
|| !is_track()) {
1422 MenuList
& playlist_items
= menu
->items();
1423 menu
->set_name ("ArdourContextMenu");
1424 playlist_items
.clear();
1426 delete playlist_menu
;
1429 vector
<boost::shared_ptr
<Playlist
> > playlists
, playlists_tr
;
1430 boost::shared_ptr
<Track
> tr
= track();
1431 RadioMenuItem::Group playlist_group
;
1433 _session
->playlists
->get (playlists
);
1435 /* find the playlists for this diskstream */
1436 for (vector
<boost::shared_ptr
<Playlist
> >::iterator i
= playlists
.begin(); i
!= playlists
.end(); ++i
) {
1437 if (((*i
)->get_orig_diskstream_id() == tr
->diskstream_id()) || (tr
->playlist()->id() == (*i
)->id())) {
1438 playlists_tr
.push_back(*i
);
1442 /* sort the playlists */
1444 sort (playlists_tr
.begin(), playlists_tr
.end(), cmp
);
1446 /* add the playlists to the menu */
1447 for (vector
<boost::shared_ptr
<Playlist
> >::iterator i
= playlists_tr
.begin(); i
!= playlists_tr
.end(); ++i
) {
1448 playlist_items
.push_back (RadioMenuElem (playlist_group
, (*i
)->name()));
1449 RadioMenuItem
*item
= static_cast<RadioMenuItem
*>(&playlist_items
.back());
1450 item
->signal_toggled().connect(sigc::bind (sigc::mem_fun (*this, &RouteTimeAxisView::use_playlist
), item
, boost::weak_ptr
<Playlist
> (*i
)));
1452 if (tr
->playlist()->id() == (*i
)->id()) {
1458 playlist_items
.push_back (SeparatorElem());
1459 playlist_items
.push_back (MenuElem (_("Rename..."), sigc::mem_fun(*this, &RouteTimeAxisView::rename_current_playlist
)));
1460 playlist_items
.push_back (SeparatorElem());
1462 if (!route_group() || !route_group()->is_active()) {
1463 playlist_items
.push_back (MenuElem (_("New..."), sigc::bind(sigc::mem_fun(_editor
, &PublicEditor::new_playlists
), this)));
1464 playlist_items
.push_back (MenuElem (_("New Copy..."), sigc::bind(sigc::mem_fun(_editor
, &PublicEditor::copy_playlists
), this)));
1467 // Use a label which tells the user what is happening
1468 playlist_items
.push_back (MenuElem (_("New Take"), sigc::bind(sigc::mem_fun(_editor
, &PublicEditor::new_playlists
), this)));
1469 playlist_items
.push_back (MenuElem (_("Copy Take"), sigc::bind(sigc::mem_fun(_editor
, &PublicEditor::copy_playlists
), this)));
1473 playlist_items
.push_back (SeparatorElem());
1474 playlist_items
.push_back (MenuElem (_("Clear Current"), sigc::bind(sigc::mem_fun(_editor
, &PublicEditor::clear_playlists
), this)));
1475 playlist_items
.push_back (SeparatorElem());
1477 playlist_items
.push_back (MenuElem(_("Select from all..."), sigc::mem_fun(*this, &RouteTimeAxisView::show_playlist_selector
)));
1481 RouteTimeAxisView::use_playlist (RadioMenuItem
*item
, boost::weak_ptr
<Playlist
> wpl
)
1483 assert (is_track());
1485 // exit if we were triggered by deactivating the old playlist
1486 if (!item
->get_active()) {
1490 boost::shared_ptr
<Playlist
> pl (wpl
.lock());
1496 boost::shared_ptr
<AudioPlaylist
> apl
= boost::dynamic_pointer_cast
<AudioPlaylist
> (pl
);
1499 if (track()->playlist() == apl
) {
1500 // exit when use_playlist is called by the creation of the playlist menu
1501 // or the playlist choice is unchanged
1504 track()->use_playlist (apl
);
1506 if (route_group() && route_group()->is_active()) {
1507 std::string group_string
= "."+route_group()->name()+".";
1509 std::string take_name
= apl
->name();
1510 std::string::size_type idx
= take_name
.find(group_string
);
1512 if (idx
== std::string::npos
)
1515 take_name
= take_name
.substr(idx
+ group_string
.length()); // find the bit containing the take number / name
1517 boost::shared_ptr
<RouteList
> rl (route_group()->route_list());
1519 for (RouteList::const_iterator i
= rl
->begin(); i
!= rl
->end(); ++i
) {
1520 if ( (*i
) == this->route()) {
1524 std::string playlist_name
= (*i
)->name()+group_string
+take_name
;
1526 boost::shared_ptr
<Track
> track
= boost::dynamic_pointer_cast
<Track
>(*i
);
1528 std::cerr
<< "route " << (*i
)->name() << " is not a Track" << std::endl
;
1532 boost::shared_ptr
<Playlist
> ipl
= session()->playlists
->by_name(playlist_name
);
1534 // No playlist for this track for this take yet, make it
1535 track
->use_new_playlist();
1536 track
->playlist()->set_name(playlist_name
);
1538 track
->use_playlist(ipl
);
1546 RouteTimeAxisView::show_playlist_selector ()
1548 _editor
.playlist_selector().show_for (this);
1552 RouteTimeAxisView::map_frozen ()
1558 ENSURE_GUI_THREAD (*this, &RouteTimeAxisView::map_frozen
)
1560 switch (track()->freeze_state()) {
1562 playlist_button
.set_sensitive (false);
1563 rec_enable_button
->set_sensitive (false);
1566 playlist_button
.set_sensitive (true);
1567 rec_enable_button
->set_sensitive (true);
1573 RouteTimeAxisView::color_handler ()
1575 //case cTimeStretchOutline:
1576 if (timestretch_rect
) {
1577 timestretch_rect
->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_TimeStretchOutline
.get();
1579 //case cTimeStretchFill:
1580 if (timestretch_rect
) {
1581 timestretch_rect
->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_TimeStretchFill
.get();
1587 /** Toggle an automation track for a fully-specified Parameter (type,channel,id)
1588 * Will add track if necessary.
1591 RouteTimeAxisView::toggle_automation_track (const Evoral::Parameter
& param
)
1593 boost::shared_ptr
<AutomationTimeAxisView
> track
= automation_child (param
);
1594 Gtk::CheckMenuItem
* menu
= automation_child_menu_item (param
);
1597 /* it doesn't exist yet, so we don't care about the button state: just add it */
1598 create_automation_child (param
, true);
1601 bool yn
= menu
->get_active();
1602 if (track
->set_visibility (menu
->get_active()) && yn
) {
1604 /* we made it visible, now trigger a redisplay. if it was hidden, then automation_track_hidden()
1605 will have done that for us.
1609 _route
->gui_changed (X_("track_height"), (void *) 0); /* EMIT_SIGNAL */
1616 RouteTimeAxisView::automation_track_hidden (Evoral::Parameter param
)
1618 boost::shared_ptr
<AutomationTimeAxisView
> track
= automation_child (param
);
1624 Gtk::CheckMenuItem
* menu
= automation_child_menu_item (param
);
1626 // if Evoral::Parameter::operator< doesn't obey strict weak ordering, we may crash here....
1627 track
->get_state_node()->add_property (X_("shown"), X_("no"));
1629 if (menu
&& !_hidden
) {
1630 ignore_toggle
= true;
1631 menu
->set_active (false);
1632 ignore_toggle
= false;
1635 if (_route
&& !no_redraw
) {
1636 _route
->gui_changed ("track_height", (void *) 0); /* EMIT_SIGNAL */
1642 RouteTimeAxisView::show_all_automation ()
1646 /* Show our automation */
1648 for (AutomationTracks::iterator i
= _automation_tracks
.begin(); i
!= _automation_tracks
.end(); ++i
) {
1649 i
->second
->set_marked_for_display (true);
1650 i
->second
->canvas_display()->show();
1651 i
->second
->get_state_node()->add_property ("shown", X_("yes"));
1653 Gtk::CheckMenuItem
* menu
= automation_child_menu_item (i
->first
);
1656 menu
->set_active(true);
1661 /* Show processor automation */
1663 for (list
<ProcessorAutomationInfo
*>::iterator i
= processor_automation
.begin(); i
!= processor_automation
.end(); ++i
) {
1664 for (vector
<ProcessorAutomationNode
*>::iterator ii
= (*i
)->lines
.begin(); ii
!= (*i
)->lines
.end(); ++ii
) {
1665 if ((*ii
)->view
== 0) {
1666 add_processor_automation_curve ((*i
)->processor
, (*ii
)->what
);
1669 (*ii
)->menu_item
->set_active (true);
1677 _route
->gui_changed ("track_height", (void *) 0); /* EMIT_SIGNAL */
1681 RouteTimeAxisView::show_existing_automation ()
1685 /* Show our automation */
1687 for (AutomationTracks::iterator i
= _automation_tracks
.begin(); i
!= _automation_tracks
.end(); ++i
) {
1688 if (i
->second
->has_automation()) {
1689 i
->second
->set_marked_for_display (true);
1690 i
->second
->canvas_display()->show();
1691 i
->second
->get_state_node()->add_property ("shown", X_("yes"));
1693 Gtk::CheckMenuItem
* menu
= automation_child_menu_item (i
->first
);
1695 menu
->set_active(true);
1701 /* Show processor automation */
1703 for (list
<ProcessorAutomationInfo
*>::iterator i
= processor_automation
.begin(); i
!= processor_automation
.end(); ++i
) {
1704 for (vector
<ProcessorAutomationNode
*>::iterator ii
= (*i
)->lines
.begin(); ii
!= (*i
)->lines
.end(); ++ii
) {
1705 if ((*ii
)->view
!= 0 && (*i
)->processor
->control((*ii
)->what
)->list()->size() > 0) {
1706 (*ii
)->menu_item
->set_active (true);
1713 _route
->gui_changed ("track_height", (void *) 0); /* EMIT_SIGNAL */
1717 RouteTimeAxisView::hide_all_automation ()
1721 /* Hide our automation */
1723 for (AutomationTracks::iterator i
= _automation_tracks
.begin(); i
!= _automation_tracks
.end(); ++i
) {
1724 i
->second
->set_marked_for_display (false);
1726 i
->second
->get_state_node()->add_property ("shown", X_("no"));
1728 Gtk::CheckMenuItem
* menu
= automation_child_menu_item (i
->first
);
1731 menu
->set_active (false);
1735 /* Hide processor automation */
1737 for (list
<ProcessorAutomationInfo
*>::iterator i
= processor_automation
.begin(); i
!= processor_automation
.end(); ++i
) {
1738 for (vector
<ProcessorAutomationNode
*>::iterator ii
= (*i
)->lines
.begin(); ii
!= (*i
)->lines
.end(); ++ii
) {
1739 (*ii
)->menu_item
->set_active (false);
1744 _route
->gui_changed ("track_height", (void *) 0); /* EMIT_SIGNAL */
1749 RouteTimeAxisView::region_view_added (RegionView
* rv
)
1751 /* XXX need to find out if automation children have automationstreamviews. If yes, no ghosts */
1752 if (is_audio_track()) {
1753 for (Children::iterator i
= children
.begin(); i
!= children
.end(); ++i
) {
1754 boost::shared_ptr
<AutomationTimeAxisView
> atv
;
1756 if ((atv
= boost::dynamic_pointer_cast
<AutomationTimeAxisView
> (*i
)) != 0) {
1762 for (UnderlayMirrorList::iterator i
= _underlay_mirrors
.begin(); i
!= _underlay_mirrors
.end(); ++i
) {
1763 (*i
)->add_ghost(rv
);
1767 RouteTimeAxisView::ProcessorAutomationInfo::~ProcessorAutomationInfo ()
1769 for (vector
<ProcessorAutomationNode
*>::iterator i
= lines
.begin(); i
!= lines
.end(); ++i
) {
1775 RouteTimeAxisView::ProcessorAutomationNode::~ProcessorAutomationNode ()
1777 parent
.remove_processor_automation_node (this);
1781 RouteTimeAxisView::remove_processor_automation_node (ProcessorAutomationNode
* pan
)
1784 remove_child (pan
->view
);
1788 RouteTimeAxisView::ProcessorAutomationNode
*
1789 RouteTimeAxisView::find_processor_automation_node (boost::shared_ptr
<Processor
> processor
, Evoral::Parameter what
)
1791 for (list
<ProcessorAutomationInfo
*>::iterator i
= processor_automation
.begin(); i
!= processor_automation
.end(); ++i
) {
1793 if ((*i
)->processor
== processor
) {
1795 for (vector
<ProcessorAutomationNode
*>::iterator ii
= (*i
)->lines
.begin(); ii
!= (*i
)->lines
.end(); ++ii
) {
1796 if ((*ii
)->what
== what
) {
1807 legalize_for_xml_node (string str
)
1809 string::size_type pos
;
1810 string legal_chars
= "abcdefghijklmnopqrtsuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_=:";
1816 while ((pos
= legal
.find_first_not_of (legal_chars
, pos
)) != string::npos
) {
1817 legal
.replace (pos
, 1, "_");
1826 RouteTimeAxisView::add_processor_automation_curve (boost::shared_ptr
<Processor
> processor
, Evoral::Parameter what
)
1829 ProcessorAutomationNode
* pan
;
1831 if ((pan
= find_processor_automation_node (processor
, what
)) == 0) {
1832 error
<< _("programming error: ")
1833 << string_compose (X_("processor automation curve for %1:%2 not registered with track!"),
1834 processor
->name(), what
)
1844 name
= processor
->describe_parameter (what
);
1846 /* create a string that is a legal XML node name that can be used to refer to this redirect+port combination */
1850 char state_name
[256];
1851 snprintf (state_name
, sizeof (state_name
), "Redirect-%s-%" PRIu32
, legalize_for_xml_node (processor
->name()).c_str(), what
.id());
1853 boost::shared_ptr
<AutomationControl
> control
1854 = boost::dynamic_pointer_cast
<AutomationControl
>(processor
->control(what
, true));
1856 pan
->view
= boost::shared_ptr
<AutomationTimeAxisView
>(
1857 new AutomationTimeAxisView (_session
, _route
, processor
, control
,
1858 _editor
, *this, false, parent_canvas
, name
, state_name
));
1860 pan
->view
->Hiding
.connect (sigc::bind (sigc::mem_fun(*this, &RouteTimeAxisView::processor_automation_track_hidden
), pan
, processor
));
1862 if (!pan
->view
->marked_for_display()) {
1865 pan
->menu_item
->set_active (true);
1868 add_child (pan
->view
);
1871 _view
->foreach_regionview (sigc::mem_fun(*pan
->view
.get(), &TimeAxisView::add_ghost
));
1874 processor
->mark_automation_visible (what
, true);
1878 RouteTimeAxisView::processor_automation_track_hidden (RouteTimeAxisView::ProcessorAutomationNode
* pan
, boost::shared_ptr
<Processor
> i
)
1881 pan
->menu_item
->set_active (false);
1884 i
->mark_automation_visible (pan
->what
, false);
1887 _route
->gui_changed ("track_height", (void *) 0); /* EMIT_SIGNAL */
1892 RouteTimeAxisView::add_existing_processor_automation_curves (boost::weak_ptr
<Processor
> p
)
1894 boost::shared_ptr
<Processor
> processor (p
.lock ());
1899 set
<Evoral::Parameter
> s
;
1900 boost::shared_ptr
<AutomationLine
> al
;
1902 processor
->what_has_visible_data (s
);
1904 for (set
<Evoral::Parameter
>::iterator i
= s
.begin(); i
!= s
.end(); ++i
) {
1906 if ((al
= find_processor_automation_curve (processor
, *i
)) != 0) {
1909 add_processor_automation_curve (processor
, (*i
));
1915 RouteTimeAxisView::add_automation_child (Evoral::Parameter param
, boost::shared_ptr
<AutomationTimeAxisView
> track
, bool show
)
1917 using namespace Menu_Helpers
;
1924 track
->Hiding
.connect (sigc::bind (sigc::mem_fun (*this, &RouteTimeAxisView::automation_track_hidden
), param
));
1926 bool hideit
= (!show
);
1928 if ((node
= track
->get_state_node()) != 0) {
1929 if ((prop
= node
->property ("shown")) != 0) {
1930 if (string_is_affirmative (prop
->value())) {
1936 _automation_tracks
[param
] = track
;
1938 track
->set_visibility (!hideit
);
1941 _route
->gui_changed ("track_height", (void *) 0); /* EMIT_SIGNAL */
1944 if (!EventTypeMap::instance().is_midi_parameter(param
)) {
1945 /* MIDI-related parameters are always in the menu, there's no
1946 reason to rebuild the menu just because we added a automation
1947 lane for one of them. But if we add a non-MIDI automation
1948 lane, then we need to invalidate the display menu.
1950 delete display_menu
;
1956 RouteTimeAxisView::add_processor_to_subplugin_menu (boost::weak_ptr
<Processor
> p
)
1958 boost::shared_ptr
<Processor
> processor (p
.lock ());
1960 if (!processor
|| !processor
->display_to_user ()) {
1964 using namespace Menu_Helpers
;
1965 ProcessorAutomationInfo
*rai
;
1966 list
<ProcessorAutomationInfo
*>::iterator x
;
1968 const std::set
<Evoral::Parameter
>& automatable
= processor
->what_can_be_automated ();
1969 std::set
<Evoral::Parameter
> has_visible_automation
;
1971 processor
->what_has_visible_data(has_visible_automation
);
1973 if (automatable
.empty()) {
1977 for (x
= processor_automation
.begin(); x
!= processor_automation
.end(); ++x
) {
1978 if ((*x
)->processor
== processor
) {
1983 if (x
== processor_automation
.end()) {
1985 rai
= new ProcessorAutomationInfo (processor
);
1986 processor_automation
.push_back (rai
);
1994 /* any older menu was deleted at the top of processors_changed()
1995 when we cleared the subplugin menu.
1998 rai
->menu
= manage (new Menu
);
1999 MenuList
& items
= rai
->menu
->items();
2000 rai
->menu
->set_name ("ArdourContextMenu");
2004 for (std::set
<Evoral::Parameter
>::const_iterator i
= automatable
.begin(); i
!= automatable
.end(); ++i
) {
2006 ProcessorAutomationNode
* pan
;
2007 CheckMenuItem
* mitem
;
2009 string name
= processor
->describe_parameter (*i
);
2011 items
.push_back (CheckMenuElem (name
));
2012 mitem
= dynamic_cast<CheckMenuItem
*> (&items
.back());
2014 _subplugin_menu_map
[*i
] = mitem
;
2016 if (has_visible_automation
.find((*i
)) != has_visible_automation
.end()) {
2017 mitem
->set_active(true);
2020 if ((pan
= find_processor_automation_node (processor
, *i
)) == 0) {
2024 pan
= new ProcessorAutomationNode (*i
, mitem
, *this);
2026 rai
->lines
.push_back (pan
);
2030 pan
->menu_item
= mitem
;
2034 mitem
->signal_toggled().connect (sigc::bind (sigc::mem_fun(*this, &RouteTimeAxisView::processor_menu_item_toggled
), rai
, pan
));
2037 /* add the menu for this processor, because the subplugin
2038 menu is always cleared at the top of processors_changed().
2039 this is the result of some poor design in gtkmm and/or
2043 subplugin_menu
.items().push_back (MenuElem (processor
->name(), *rai
->menu
));
2048 RouteTimeAxisView::processor_menu_item_toggled (RouteTimeAxisView::ProcessorAutomationInfo
* rai
,
2049 RouteTimeAxisView::ProcessorAutomationNode
* pan
)
2051 bool showit
= pan
->menu_item
->get_active();
2052 bool redraw
= false;
2054 if (pan
->view
== 0 && showit
) {
2055 add_processor_automation_curve (rai
->processor
, pan
->what
);
2059 if (pan
->view
&& showit
!= pan
->view
->marked_for_display()) {
2062 pan
->view
->set_marked_for_display (true);
2063 pan
->view
->canvas_display()->show();
2064 pan
->view
->canvas_background()->show();
2066 rai
->processor
->mark_automation_visible (pan
->what
, true);
2067 pan
->view
->set_marked_for_display (false);
2075 if (redraw
&& !no_redraw
) {
2076 _route
->gui_changed ("track_height", (void *) 0); /* EMIT_SIGNAL */
2082 RouteTimeAxisView::processors_changed (RouteProcessorChange c
)
2084 if (c
.type
== RouteProcessorChange::MeterPointChange
) {
2085 /* nothing to do if only the meter point has changed */
2089 using namespace Menu_Helpers
;
2091 for (list
<ProcessorAutomationInfo
*>::iterator i
= processor_automation
.begin(); i
!= processor_automation
.end(); ++i
) {
2092 (*i
)->valid
= false;
2095 _subplugin_menu_map
.clear ();
2096 subplugin_menu
.items().clear ();
2098 _route
->foreach_processor (sigc::mem_fun (*this, &RouteTimeAxisView::add_processor_to_subplugin_menu
));
2099 _route
->foreach_processor (sigc::mem_fun (*this, &RouteTimeAxisView::add_existing_processor_automation_curves
));
2101 bool deleted_processor_automation
= false;
2103 for (list
<ProcessorAutomationInfo
*>::iterator i
= processor_automation
.begin(); i
!= processor_automation
.end(); ) {
2105 list
<ProcessorAutomationInfo
*>::iterator tmp
;
2113 processor_automation
.erase (i
);
2114 deleted_processor_automation
= true;
2121 if (deleted_processor_automation
&& !no_redraw
) {
2122 _route
->gui_changed ("track_height", this);
2126 boost::shared_ptr
<AutomationLine
>
2127 RouteTimeAxisView::find_processor_automation_curve (boost::shared_ptr
<Processor
> processor
, Evoral::Parameter what
)
2129 ProcessorAutomationNode
* pan
;
2131 if ((pan
= find_processor_automation_node (processor
, what
)) != 0) {
2137 return boost::shared_ptr
<AutomationLine
>();
2141 RouteTimeAxisView::reset_processor_automation_curves ()
2143 for (ProcessorAutomationCurves::iterator i
= processor_automation_curves
.begin(); i
!= processor_automation_curves
.end(); ++i
) {
2149 RouteTimeAxisView::update_rec_display ()
2151 RouteUI::update_rec_display ();
2152 name_entry
.set_sensitive (!_route
->record_enabled());
2156 RouteTimeAxisView::set_layer_display (LayerDisplay d
)
2159 _view
->set_layer_display (d
);
2163 xml_node
->add_property (N_("layer-display"), enum_2_string (d
));
2167 RouteTimeAxisView::layer_display () const
2170 return _view
->layer_display ();
2173 /* we don't know, since we don't have a _view, so just return something */
2179 boost::shared_ptr
<AutomationTimeAxisView
>
2180 RouteTimeAxisView::automation_child(Evoral::Parameter param
)
2182 AutomationTracks::iterator i
= _automation_tracks
.find(param
);
2183 if (i
!= _automation_tracks
.end()) {
2186 return boost::shared_ptr
<AutomationTimeAxisView
>();
2191 RouteTimeAxisView::fast_update ()
2193 gm
.get_level_meter().update_meters ();
2197 RouteTimeAxisView::hide_meter ()
2200 gm
.get_level_meter().hide_meters ();
2204 RouteTimeAxisView::show_meter ()
2210 RouteTimeAxisView::reset_meter ()
2212 if (Config
->get_show_track_meters()) {
2213 gm
.get_level_meter().setup_meters (height
-5);
2220 RouteTimeAxisView::clear_meter ()
2222 gm
.get_level_meter().clear_meters ();
2226 RouteTimeAxisView::meter_changed ()
2228 ENSURE_GUI_THREAD (*this, &RouteTimeAxisView::meter_changed
)
2233 RouteTimeAxisView::io_changed (IOChange
/*change*/, void */
*src*/
)
2239 RouteTimeAxisView::build_underlay_menu(Gtk::Menu
* parent_menu
)
2241 using namespace Menu_Helpers
;
2243 if (!_underlay_streams
.empty()) {
2244 MenuList
& parent_items
= parent_menu
->items();
2245 Menu
* gs_menu
= manage (new Menu
);
2246 gs_menu
->set_name ("ArdourContextMenu");
2247 MenuList
& gs_items
= gs_menu
->items();
2249 parent_items
.push_back (MenuElem (_("Underlays"), *gs_menu
));
2251 for(UnderlayList::iterator it
= _underlay_streams
.begin(); it
!= _underlay_streams
.end(); ++it
) {
2252 gs_items
.push_back(MenuElem(string_compose(_("Remove \"%1\""), (*it
)->trackview().name()),
2253 sigc::bind(sigc::mem_fun(*this, &RouteTimeAxisView::remove_underlay
), *it
)));
2259 RouteTimeAxisView::set_underlay_state()
2261 if (!underlay_xml_node
) {
2265 XMLNodeList nlist
= underlay_xml_node
->children();
2266 XMLNodeConstIterator niter
;
2267 XMLNode
*child_node
;
2269 for (niter
= nlist
.begin(); niter
!= nlist
.end(); ++niter
) {
2270 child_node
= *niter
;
2272 if (child_node
->name() != "Underlay") {
2276 XMLProperty
* prop
= child_node
->property ("id");
2278 PBD::ID
id (prop
->value());
2280 RouteTimeAxisView
* v
= _editor
.get_route_view_by_id (id
);
2283 add_underlay(v
->view(), false);
2292 RouteTimeAxisView::add_underlay (StreamView
* v
, bool update_xml
)
2298 RouteTimeAxisView
& other
= v
->trackview();
2300 if (find(_underlay_streams
.begin(), _underlay_streams
.end(), v
) == _underlay_streams
.end()) {
2301 if (find(other
._underlay_mirrors
.begin(), other
._underlay_mirrors
.end(), this) != other
._underlay_mirrors
.end()) {
2302 fatal
<< _("programming error: underlay reference pointer pairs are inconsistent!") << endmsg
;
2306 _underlay_streams
.push_back(v
);
2307 other
._underlay_mirrors
.push_back(this);
2309 v
->foreach_regionview(sigc::mem_fun(*this, &RouteTimeAxisView::add_ghost
));
2312 if (!underlay_xml_node
) {
2314 underlay_xml_node
= xml_node
->add_child("Underlays");
2317 XMLNode
* node
= underlay_xml_node
->add_child("Underlay");
2318 XMLProperty
* prop
= node
->add_property("id");
2319 prop
->set_value(v
->trackview().route()->id().to_s());
2325 RouteTimeAxisView::remove_underlay (StreamView
* v
)
2331 UnderlayList::iterator it
= find(_underlay_streams
.begin(), _underlay_streams
.end(), v
);
2332 RouteTimeAxisView
& other
= v
->trackview();
2334 if (it
!= _underlay_streams
.end()) {
2335 UnderlayMirrorList::iterator gm
= find(other
._underlay_mirrors
.begin(), other
._underlay_mirrors
.end(), this);
2337 if (gm
== other
._underlay_mirrors
.end()) {
2338 fatal
<< _("programming error: underlay reference pointer pairs are inconsistent!") << endmsg
;
2342 v
->foreach_regionview(sigc::mem_fun(*this, &RouteTimeAxisView::remove_ghost
));
2344 _underlay_streams
.erase(it
);
2345 other
._underlay_mirrors
.erase(gm
);
2347 if (underlay_xml_node
) {
2348 underlay_xml_node
->remove_nodes_and_delete("id", v
->trackview().route()->id().to_s());
2354 RouteTimeAxisView::set_button_names ()
2356 rec_enable_button_label
.set_text (_("r"));
2358 if (_route
&& _route
->solo_safe()) {
2359 solo_button_label
.set_text (X_("!"));
2361 if (Config
->get_solo_control_is_listen_control()) {
2362 switch (Config
->get_listen_position()) {
2363 case AfterFaderListen
:
2364 solo_button_label
.set_text (_("A"));
2366 case PreFaderListen
:
2367 solo_button_label
.set_text (_("P"));
2371 solo_button_label
.set_text (_("s"));
2374 mute_button_label
.set_text (_("m"));
2378 RouteTimeAxisView::automation_child_menu_item (Evoral::Parameter param
)
2380 ParameterMenuMap::iterator i
= _main_automation_menu_map
.find (param
);
2381 if (i
!= _main_automation_menu_map
.end()) {
2385 i
= _subplugin_menu_map
.find (param
);
2386 if (i
!= _subplugin_menu_map
.end()) {