first pass at quantizing vertical scroll to whole tracks.
[ardour.git] / gtk2_ardour / time_axis_view.cc
1 /*
2     Copyright (C) 2000 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 <cstdlib>
21 #include <cmath>
22 #include <algorithm>
23 #include <string>
24 #include <list>
25
26
27 #include "pbd/error.h"
28 #include "pbd/convert.h"
29 #include "pbd/stacktrace.h"
30
31 #include <gtkmm2ext/doi.h>
32 #include <gtkmm2ext/utils.h>
33 #include <gtkmm2ext/selector.h>
34
35 #include "canvas/canvas.h"
36 #include "canvas/rectangle.h"
37 #include "canvas/debug.h"
38
39 #include "ardour_ui.h"
40 #include "ardour_dialog.h"
41 #include "global_signals.h"
42 #include "gui_thread.h"
43 #include "public_editor.h"
44 #include "time_axis_view.h"
45 #include "region_view.h"
46 #include "ghostregion.h"
47 #include "selection.h"
48 #include "keyboard.h"
49 #include "rgb_macros.h"
50 #include "utils.h"
51 #include "streamview.h"
52 #include "editor_drag.h"
53 #include "editor.h"
54
55 #include "i18n.h"
56
57 using namespace std;
58 using namespace Gtk;
59 using namespace Gdk;
60 using namespace ARDOUR;
61 using namespace PBD;
62 using namespace Editing;
63 using namespace ArdourCanvas;
64 using Gtkmm2ext::Keyboard;
65
66 const double trim_handle_size = 6.0; /* pixels */
67 uint32_t TimeAxisView::button_height = 0;
68 uint32_t TimeAxisView::extra_height = 0;
69 int const TimeAxisView::_max_order = 512;
70 PBD::Signal1<void,TimeAxisView*> TimeAxisView::CatchDeletion;
71
72 TimeAxisView::TimeAxisView (ARDOUR::Session* sess, PublicEditor& ed, TimeAxisView* rent, Canvas& /*canvas*/)
73         : AxisView (sess)
74         , controls_table (2, 8)
75         , _name_editing (false)
76         , height (0)
77         , display_menu (0)
78         , parent (rent)
79         , selection_group (0)
80         , _ghost_group (0)
81         , _hidden (false)
82         , in_destructor (false)
83         , _size_menu (0)
84         , _canvas_display (0)
85         , _y_position (0)
86         , _editor (ed)
87         , name_entry (0)
88         , control_parent (0)
89         , _order (0)
90         , _effective_height (0)
91         , _resize_drag_start (-1)
92         , _preresize_cursor (0)
93         , _have_preresize_cursor (false)
94         , _ebox_release_can_act (true)
95 {
96         if (extra_height == 0) {
97                 compute_heights ();
98         }
99
100         _canvas_display = new Group (ed.get_trackview_group (), ArdourCanvas::Duple (0.0, 0.0));
101         CANVAS_DEBUG_NAME (_canvas_display, "main for TAV");
102         _canvas_display->hide(); // reveal as needed
103
104         selection_group = new Group (_canvas_display);
105         CANVAS_DEBUG_NAME (selection_group, "selection for TAV");
106         selection_group->set_data (X_("timeselection"), (void *) 1);
107         selection_group->hide();
108
109         _ghost_group = new Group (_canvas_display);
110         CANVAS_DEBUG_NAME (_ghost_group, "ghost for TAV");
111         _ghost_group->lower_to_bottom();
112         _ghost_group->show();
113
114         name_label.set_name ("TrackLabel");
115         name_label.set_alignment (0.0, 0.5);
116         ARDOUR_UI::instance()->set_tip (name_label, _("Track/Bus name (double click to edit)"));
117
118         Gtk::Entry* an_entry = new Gtk::Entry;
119         Gtk::Requisition req;
120         an_entry->size_request (req);
121         name_label.set_size_request (-1, req.height);
122         delete an_entry;
123
124         name_hbox.pack_start (name_label, true, true);
125         name_hbox.show ();
126         name_label.show ();
127         
128         controls_table.set_size_request (200);
129         controls_table.set_row_spacings (2);
130         controls_table.set_col_spacings (2);
131         controls_table.set_border_width (2);
132         controls_table.set_homogeneous (true);
133
134         controls_table.attach (name_hbox, 0, 5, 0, 1,  Gtk::FILL|Gtk::EXPAND,  Gtk::FILL|Gtk::EXPAND, 3, 0);
135         controls_table.show_all ();
136         controls_table.set_no_show_all ();
137
138         HSeparator* separator = manage (new HSeparator());
139         separator->set_name("TrackSeparator");
140         separator->set_size_request(-1, 1);
141         separator->show();
142
143         controls_vbox.pack_start (controls_table, false, false);
144         controls_vbox.show ();
145
146         controls_hbox.pack_start (controls_vbox, true, true);
147         controls_hbox.show ();
148
149         //controls_ebox.set_name ("TimeAxisViewControlsBaseUnselected");
150         controls_ebox.add (controls_hbox);
151         controls_ebox.add_events (Gdk::BUTTON_PRESS_MASK|
152                                   Gdk::BUTTON_RELEASE_MASK|
153                                   Gdk::POINTER_MOTION_MASK|
154                                   Gdk::ENTER_NOTIFY_MASK|
155                                   Gdk::LEAVE_NOTIFY_MASK|
156                                   Gdk::SCROLL_MASK);
157         controls_ebox.set_flags (CAN_FOCUS);
158
159         /* note that this handler connects *before* the default handler */
160         controls_ebox.signal_scroll_event().connect (sigc::mem_fun (*this, &TimeAxisView::controls_ebox_scroll), true);
161         controls_ebox.signal_button_press_event().connect (sigc::mem_fun (*this, &TimeAxisView::controls_ebox_button_press));
162         controls_ebox.signal_button_release_event().connect (sigc::mem_fun (*this, &TimeAxisView::controls_ebox_button_release));
163         controls_ebox.signal_motion_notify_event().connect (sigc::mem_fun (*this, &TimeAxisView::controls_ebox_motion));
164         controls_ebox.signal_leave_notify_event().connect (sigc::mem_fun (*this, &TimeAxisView::controls_ebox_leave));
165         controls_ebox.show ();
166
167         time_axis_vbox.pack_start (controls_ebox, true, true, 0);
168         time_axis_vbox.pack_end (*separator, false, false);
169         time_axis_vbox.show();
170
171         ColorsChanged.connect (sigc::mem_fun (*this, &TimeAxisView::color_handler));
172
173         GhostRegion::CatchDeletion.connect (*this, invalidator (*this), boost::bind (&TimeAxisView::erase_ghost, this, _1), gui_context());
174 }
175
176 TimeAxisView::~TimeAxisView()
177 {
178         in_destructor = true;
179
180         for (list<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
181                 delete *i;
182         }
183
184         for (list<SelectionRect*>::iterator i = free_selection_rects.begin(); i != free_selection_rects.end(); ++i) {
185                 delete (*i)->rect;
186                 delete (*i)->start_trim;
187                 delete (*i)->end_trim;
188
189         }
190
191         for (list<SelectionRect*>::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) {
192                 delete (*i)->rect;
193                 delete (*i)->start_trim;
194                 delete (*i)->end_trim;
195         }
196
197         delete selection_group;
198         selection_group = 0;
199
200         delete _canvas_display;
201         _canvas_display = 0;
202
203         delete display_menu;
204         display_menu = 0;
205
206         delete _size_menu;
207 }
208
209 void
210 TimeAxisView::hide ()
211 {
212         if (_hidden) {
213                 return;
214         }
215
216         _canvas_display->hide ();
217
218         if (control_parent) {
219                 control_parent->remove (time_axis_vbox);
220                 control_parent = 0;
221         }
222
223         _y_position = -1;
224         _hidden = true;
225
226         /* now hide children */
227
228         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
229                 (*i)->hide ();
230         }
231
232         /* if its hidden, it cannot be selected */
233         _editor.get_selection().remove (this);
234         /* and neither can its regions */
235         _editor.get_selection().remove_regions (this);
236
237         Hiding ();
238 }
239
240 /** Display this TimeAxisView as the nth component of the parent box, at y.
241 *
242 * @param y y position.
243 * @param nth index for this TimeAxisView, increased if this view has children.
244 * @param parent parent component.
245 * @return height of this TimeAxisView.
246 */
247 guint32
248 TimeAxisView::show_at (double y, int& nth, VBox *parent)
249 {
250         if (control_parent) {
251                 control_parent->reorder_child (time_axis_vbox, nth);
252         } else {
253                 control_parent = parent;
254                 parent->pack_start (time_axis_vbox, false, false);
255                 parent->reorder_child (time_axis_vbox, nth);
256         }
257
258         _order = nth;
259
260         if (_y_position != y) {
261                 _canvas_display->set_y_position (y);
262                 _y_position = y;
263
264         }
265
266         _canvas_display->raise_to_top ();
267         _canvas_display->show ();
268
269         _hidden = false;
270
271         _effective_height = current_height ();
272
273         /* now show relevant children */
274
275         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
276                 if ((*i)->marked_for_display()) {
277                         ++nth;
278                         _effective_height += (*i)->show_at (y + _effective_height, nth, parent);
279                 } else {
280                         (*i)->hide ();
281                 }
282         }
283
284         return _effective_height;
285 }
286
287 bool
288 TimeAxisView::controls_ebox_scroll (GdkEventScroll* ev)
289 {
290         switch (ev->direction) {
291         case GDK_SCROLL_UP:
292                 if (Keyboard::modifier_state_equals (ev->state, Keyboard::ScrollZoomVerticalModifier)) {
293                         /* See Editor::_stepping_axis_view for notes on this hack */
294                         Editor& e = dynamic_cast<Editor&> (_editor);
295                         if (!e.stepping_axis_view ()) {
296                                 e.set_stepping_axis_view (this);
297                         }
298                         e.stepping_axis_view()->step_height (false);
299                         return true;
300                 } else if (Keyboard::no_modifiers_active (ev->state)) {
301                         _editor.scroll_up_one_track();
302                         return true;
303                 }
304                 break;
305
306         case GDK_SCROLL_DOWN:
307                 if (Keyboard::modifier_state_equals (ev->state, Keyboard::ScrollZoomVerticalModifier)) {
308                         /* See Editor::_stepping_axis_view for notes on this hack */
309                         Editor& e = dynamic_cast<Editor&> (_editor);
310                         if (!e.stepping_axis_view ()) {
311                                 e.set_stepping_axis_view (this);
312                         }
313                         e.stepping_axis_view()->step_height (true);
314                         return true;
315                 } else if (Keyboard::no_modifiers_active (ev->state)) {
316                         _editor.scroll_down_one_track();
317                         return true;
318                 }
319                 break;
320
321         default:
322                 /* no handling for left/right, yet */
323                 break;
324         }
325
326         return false;
327 }
328
329 bool
330 TimeAxisView::controls_ebox_button_press (GdkEventButton* event)
331 {
332         if ((event->button == 1 && event->type == GDK_2BUTTON_PRESS) || Keyboard::is_edit_event (event)) {
333                 /* see if it is inside the name label */
334                 if (name_label.is_ancestor (controls_ebox)) {
335                         int nlx;
336                         int nly;
337                         controls_ebox.translate_coordinates (name_label, event->x, event->y, nlx, nly);
338                         Gtk::Allocation a = name_label.get_allocation ();
339                         if (nlx > 0 && nlx < a.get_width() && nly > 0 && nly < a.get_height()) {
340                                 begin_name_edit ();
341                                 _ebox_release_can_act = false;
342                                 return true;
343                         }
344                 }
345
346         }
347
348         _ebox_release_can_act = true;
349                         
350         if (maybe_set_cursor (event->y) > 0) {
351                 _resize_drag_start = event->y_root;
352         }
353
354         return true;
355 }
356
357 void
358 TimeAxisView::idle_resize (uint32_t h)
359 {
360         set_height (h);
361 }
362
363
364 bool
365 TimeAxisView::controls_ebox_motion (GdkEventMotion* ev)
366 {
367         if (_resize_drag_start >= 0) {
368
369                 /* (ab)use the DragManager to do autoscrolling - basically we
370                  * are pretending that the drag is taking place over the canvas
371                  * (which perhaps in the glorious future, when track headers
372                  * and the canvas are unified, will actually be true.)
373                 */
374
375                 _editor.maybe_autoscroll (false, true, true);
376
377                 /* now schedule the actual TAV resize */
378                 int32_t const delta = (int32_t) floor (ev->y_root - _resize_drag_start);
379                 _editor.add_to_idle_resize (this, delta);
380                 _resize_drag_start = ev->y_root;
381         } else {
382                 /* not dragging but ... */
383                 maybe_set_cursor (ev->y);
384         }
385
386         gdk_event_request_motions(ev);
387         return true;
388 }
389
390 bool
391 TimeAxisView::controls_ebox_leave (GdkEventCrossing*)
392 {
393         if (_have_preresize_cursor) {
394                 gdk_window_set_cursor (controls_ebox.get_window()->gobj(), _preresize_cursor);
395                 _have_preresize_cursor = false;
396         }
397         return true;
398 }
399
400 bool
401 TimeAxisView::maybe_set_cursor (int y)
402 {
403         /* XXX no Gtkmm Gdk::Window::get_cursor() */
404         Glib::RefPtr<Gdk::Window> win = controls_ebox.get_window();
405
406         if (y > (gint) floor (controls_ebox.get_height() * 0.75)) {
407
408                 /* y-coordinate in lower 25% */
409
410                 if (!_have_preresize_cursor) {
411                         _preresize_cursor = gdk_window_get_cursor (win->gobj());
412                         _have_preresize_cursor = true;
413                         win->set_cursor (Gdk::Cursor(Gdk::SB_V_DOUBLE_ARROW));
414                 }
415
416                 return 1;
417
418         } else if (_have_preresize_cursor) {
419                 gdk_window_set_cursor (win->gobj(), _preresize_cursor);
420                 _have_preresize_cursor = false;
421
422                 return -1;
423         }
424
425         return 0;
426 }
427
428 bool
429 TimeAxisView::controls_ebox_button_release (GdkEventButton* ev)
430 {
431         if (_resize_drag_start >= 0) {
432                 if (_have_preresize_cursor) {
433                         gdk_window_set_cursor (controls_ebox.get_window()->gobj(), _preresize_cursor);
434                         _preresize_cursor = 0;
435                         _have_preresize_cursor = false;
436                 }
437                 _editor.stop_canvas_autoscroll ();
438                 _resize_drag_start = -1;
439         }
440
441         if (!_ebox_release_can_act) {
442                 return true;
443         }
444
445         switch (ev->button) {
446         case 1:
447                 selection_click (ev);
448                 break;
449
450         case 3:
451                 popup_display_menu (ev->time);
452                 break;
453         }
454
455         return true;
456 }
457
458 void
459 TimeAxisView::selection_click (GdkEventButton* ev)
460 {
461         Selection::Operation op = ArdourKeyboard::selection_type (ev->state);
462         _editor.set_selected_track (*this, op, false);
463 }
464
465
466 /** Steps through the defined heights for this TrackView.
467  *  @param coarser true if stepping should decrease in size, otherwise false.
468  */
469 void
470 TimeAxisView::step_height (bool coarser)
471 {
472         static const uint32_t step = 25;
473
474         if (coarser) {
475
476                 if (height <= preset_height (HeightSmall)) {
477                         return;
478                 } else if (height <= preset_height (HeightNormal) && height > preset_height (HeightSmall)) {
479                         set_height_enum (HeightSmall);
480                 } else {
481                         set_height (height - step);
482                 }
483
484         } else {
485
486                 if (height <= preset_height(HeightSmall)) {
487                         set_height_enum (HeightNormal);
488                 } else {
489                         set_height (height + step);
490                 }
491
492         }
493 }
494
495 void
496 TimeAxisView::set_height_enum (Height h, bool apply_to_selection)
497 {
498         if (apply_to_selection) {
499                 _editor.get_selection().tracks.foreach_time_axis (boost::bind (&TimeAxisView::set_height_enum, _1, h, false));
500         } else {
501                 set_height (preset_height (h));
502         }
503 }
504
505 void
506 TimeAxisView::set_height (uint32_t h)
507 {
508         if (h < preset_height (HeightSmall)) {
509                 h = preset_height (HeightSmall);
510         }
511
512         time_axis_vbox.property_height_request () = h;
513         height = h;
514
515         char buf[32];
516         snprintf (buf, sizeof (buf), "%u", height);
517         set_gui_property ("height", buf);
518
519         for (list<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
520                 (*i)->set_height ();
521         }
522
523         if (selection_group->visible ()) {
524                 /* resize the selection rect */
525                 show_selection (_editor.get_selection().time);
526         }
527 }
528
529 bool
530 TimeAxisView::name_entry_key_press (GdkEventKey* ev)
531 {
532         /* steal escape, tabs from GTK */
533
534         switch (ev->keyval) {
535         case GDK_Escape:
536         case GDK_ISO_Left_Tab:
537         case GDK_Tab:
538                 return true;
539         }
540         return false;
541 }
542
543 bool
544 TimeAxisView::name_entry_key_release (GdkEventKey* ev)
545 {
546         TrackViewList::iterator i;
547
548         switch (ev->keyval) {
549         case GDK_Escape:
550                 end_name_edit (RESPONSE_CANCEL);
551                 return true;
552
553         /* Shift+Tab Keys Pressed. Note that for Shift+Tab, GDK actually
554          * generates a different ev->keyval, rather than setting
555          * ev->state.
556          */
557         case GDK_ISO_Left_Tab:
558                 end_name_edit (RESPONSE_APPLY);
559                 return true;
560
561         case GDK_Tab:
562                 end_name_edit (RESPONSE_ACCEPT);
563                 return true;
564         default:
565                 break;
566         }
567
568         return false;
569 }
570
571 bool
572 TimeAxisView::name_entry_focus_out (GdkEventFocus*)
573 {
574         end_name_edit (RESPONSE_OK);
575         return false;
576 }
577
578 void
579 TimeAxisView::begin_name_edit ()
580 {
581         if (name_entry) {
582                 return;
583         }
584
585         if (can_edit_name()) {
586
587                 name_entry = manage (new Gtkmm2ext::FocusEntry);
588                 
589                 name_entry->set_name ("EditorTrackNameDisplay");
590                 name_entry->signal_key_press_event().connect (sigc::mem_fun (*this, &TimeAxisView::name_entry_key_press), false);
591                 name_entry->signal_key_release_event().connect (sigc::mem_fun (*this, &TimeAxisView::name_entry_key_release), false);
592                 name_entry->signal_focus_out_event().connect (sigc::mem_fun (*this, &TimeAxisView::name_entry_focus_out));
593                 name_entry->set_text (name_label.get_text());
594                 name_entry->signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &TimeAxisView::end_name_edit), RESPONSE_OK));
595
596                 if (name_label.is_ancestor (name_hbox)) {
597                         name_hbox.remove (name_label);
598                 }
599                 
600                 name_hbox.pack_start (*name_entry);
601                 name_entry->show ();
602
603                 name_entry->select_region (0, -1);
604                 name_entry->set_state (STATE_SELECTED);
605                 name_entry->grab_focus ();
606                 name_entry->start_editing (0);
607         }
608 }
609
610 void
611 TimeAxisView::end_name_edit (int response)
612 {
613         if (!name_entry) {
614                 return;
615         }
616         
617         bool edit_next = false;
618         bool edit_prev = false;
619
620         switch (response) {
621         case RESPONSE_CANCEL:
622                 break;
623         case RESPONSE_OK:
624                 name_entry_changed ();
625                 break;
626         case RESPONSE_ACCEPT:
627                 name_entry_changed ();
628                 edit_next = true;
629         case RESPONSE_APPLY:
630                 name_entry_changed ();
631                 edit_prev = true;
632         }
633
634         /* this will delete the name_entry. but it will also drop focus, which
635          * will cause another callback to this function, so set name_entry = 0
636          * first to ensure we don't double-remove etc. etc.
637          */
638
639         Gtk::Entry* tmp = name_entry;
640         name_entry = 0;
641         name_hbox.remove (*tmp);
642
643         /* put the name label back */
644
645         name_hbox.pack_start (name_label);
646         name_label.show ();
647
648         if (edit_next) {
649
650                 TrackViewList const & allviews = _editor.get_track_views ();
651                 TrackViewList::const_iterator i = find (allviews.begin(), allviews.end(), this);
652                 
653                 if (i != allviews.end()) {
654                         
655                         do {
656                                 if (++i == allviews.end()) {
657                                         return;
658                                 }
659                                 
660                                 RouteTimeAxisView* rtav = dynamic_cast<RouteTimeAxisView*>(*i);
661                         
662                                 if (rtav && rtav->route()->record_enabled()) {
663                                         continue;
664                                 }
665                                 
666                                 if (!(*i)->hidden()) {
667                                         break;
668                                 }
669                                 
670                         } while (true);
671                 }
672
673                 if ((i != allviews.end()) && (*i != this) && !(*i)->hidden()) {
674                         _editor.ensure_time_axis_view_is_visible (**i);
675                         (*i)->begin_name_edit ();
676                 } 
677
678         } else if (edit_prev) {
679
680                 TrackViewList const & allviews = _editor.get_track_views ();
681                 TrackViewList::const_iterator i = find (allviews.begin(), allviews.end(), this);
682                 
683                 if (i != allviews.begin()) {
684                         do {
685                                 if (i == allviews.begin()) {
686                                         return;
687                                 }
688                                 
689                                 --i;
690                                 
691                                 RouteTimeAxisView* rtav = dynamic_cast<RouteTimeAxisView*>(*i);
692                                 
693                                 if (rtav && rtav->route()->record_enabled()) {
694                                         continue;
695                                 }
696                                 
697                                 if (!(*i)->hidden()) {
698                                         break;
699                                 }
700                                 
701                         } while (true);
702                 }
703                 
704                 if ((i != allviews.end()) && (*i != this) && !(*i)->hidden()) {
705                         _editor.ensure_time_axis_view_is_visible (**i);
706                         (*i)->begin_name_edit ();
707                 } 
708         }
709 }
710
711 void
712 TimeAxisView::name_entry_changed ()
713 {
714 }
715
716 bool
717 TimeAxisView::can_edit_name () const
718 {
719         return true;
720 }
721
722 void
723 TimeAxisView::conditionally_add_to_selection ()
724 {
725         Selection& s (_editor.get_selection ());
726
727         if (!s.selected (this)) {
728                 _editor.set_selected_track (*this, Selection::Set);
729         }
730 }
731
732 void
733 TimeAxisView::popup_display_menu (guint32 when)
734 {
735         conditionally_add_to_selection ();
736
737         build_display_menu ();
738         display_menu->popup (1, when);
739 }
740
741 void
742 TimeAxisView::set_selected (bool yn)
743 {
744         if (yn == _selected) {
745                 return;
746         }
747
748         Selectable::set_selected (yn);
749
750         if (_selected) {
751                 controls_ebox.set_name (controls_base_selected_name);
752                 time_axis_vbox.set_name (controls_base_selected_name);
753                 controls_vbox.set_name (controls_base_selected_name);
754         } else {
755                 controls_ebox.set_name (controls_base_unselected_name);
756                 time_axis_vbox.set_name (controls_base_unselected_name);
757                 controls_vbox.set_name (controls_base_unselected_name);
758                 hide_selection ();
759
760                 /* children will be set for the yn=true case. but when deselecting
761                    the editor only has a list of top-level trackviews, so we
762                    have to do this here.
763                 */
764
765                 for (Children::iterator i = children.begin(); i != children.end(); ++i) {
766                         (*i)->set_selected (false);
767                 }
768         }
769 }
770
771 void
772 TimeAxisView::build_display_menu ()
773 {
774         using namespace Menu_Helpers;
775
776         delete display_menu;
777
778         display_menu = new Menu;
779         display_menu->set_name ("ArdourContextMenu");
780
781         // Just let implementing classes define what goes into the manu
782 }
783
784 void
785 TimeAxisView::set_samples_per_pixel (double fpp)
786 {
787         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
788                 (*i)->set_samples_per_pixel (fpp);
789         }
790 }
791
792 void
793 TimeAxisView::show_timestretch (framepos_t start, framepos_t end, int layers, int layer)
794 {
795         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
796                 (*i)->show_timestretch (start, end, layers, layer);
797         }
798 }
799
800 void
801 TimeAxisView::hide_timestretch ()
802 {
803         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
804                 (*i)->hide_timestretch ();
805         }
806 }
807
808 void
809 TimeAxisView::show_selection (TimeSelection& ts)
810 {
811         double x1;
812         double x2;
813         double y2;
814         SelectionRect *rect;
815
816         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
817                 (*i)->show_selection (ts);
818         }
819
820         if (selection_group->visible ()) {
821                 while (!used_selection_rects.empty()) {
822                         free_selection_rects.push_front (used_selection_rects.front());
823                         used_selection_rects.pop_front();
824                         free_selection_rects.front()->rect->hide();
825                         free_selection_rects.front()->start_trim->hide();
826                         free_selection_rects.front()->end_trim->hide();
827                 }
828                 selection_group->hide();
829         }
830
831         selection_group->show();
832         selection_group->raise_to_top();
833
834         for (list<AudioRange>::iterator i = ts.begin(); i != ts.end(); ++i) {
835                 framepos_t start, end;
836                 framecnt_t cnt;
837
838                 start = (*i).start;
839                 end = (*i).end;
840                 cnt = end - start + 1;
841
842                 rect = get_selection_rect ((*i).id);
843
844                 x1 = _editor.sample_to_pixel (start);
845                 x2 = _editor.sample_to_pixel (start + cnt - 1);
846                 y2 = current_height();
847
848                 rect->rect->set (ArdourCanvas::Rect (x1, 1, x2, y2));
849
850                 // trim boxes are at the top for selections
851
852                 if (x2 > x1) {
853                         rect->start_trim->set (ArdourCanvas::Rect (x1, 1, x1 + trim_handle_size, y2));
854                         rect->end_trim->set (ArdourCanvas::Rect (x2 - trim_handle_size, 1, x2, y2));
855
856                         rect->start_trim->show();
857                         rect->end_trim->show();
858                 } else {
859                         rect->start_trim->hide();
860                         rect->end_trim->hide();
861                 }
862
863                 rect->rect->show ();
864                 used_selection_rects.push_back (rect);
865         }
866 }
867
868 void
869 TimeAxisView::reshow_selection (TimeSelection& ts)
870 {
871         show_selection (ts);
872
873         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
874                 (*i)->show_selection (ts);
875         }
876 }
877
878 void
879 TimeAxisView::hide_selection ()
880 {
881         if (selection_group->visible ()) {
882                 while (!used_selection_rects.empty()) {
883                         free_selection_rects.push_front (used_selection_rects.front());
884                         used_selection_rects.pop_front();
885                         free_selection_rects.front()->rect->hide();
886                         free_selection_rects.front()->start_trim->hide();
887                         free_selection_rects.front()->end_trim->hide();
888                 }
889                 selection_group->hide();
890         }
891
892         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
893                 (*i)->hide_selection ();
894         }
895 }
896
897 void
898 TimeAxisView::order_selection_trims (ArdourCanvas::Item *item, bool put_start_on_top)
899 {
900         /* find the selection rect this is for. we have the item corresponding to one
901            of the trim handles.
902          */
903
904         for (list<SelectionRect*>::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) {
905                 if ((*i)->start_trim == item || (*i)->end_trim == item) {
906
907                         /* make one trim handle be "above" the other so that if they overlap,
908                            the top one is the one last used.
909                         */
910
911                         (*i)->rect->raise_to_top ();
912                         (put_start_on_top ? (*i)->start_trim : (*i)->end_trim)->raise_to_top ();
913                         (put_start_on_top ? (*i)->end_trim : (*i)->start_trim)->raise_to_top ();
914
915                         break;
916                 }
917         }
918 }
919
920 SelectionRect *
921 TimeAxisView::get_selection_rect (uint32_t id)
922 {
923         SelectionRect *rect;
924
925         /* check to see if we already have a visible rect for this particular selection ID */
926
927         for (list<SelectionRect*>::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) {
928                 if ((*i)->id == id) {
929                         return (*i);
930                 }
931         }
932
933         /* ditto for the free rect list */
934
935         for (list<SelectionRect*>::iterator i = free_selection_rects.begin(); i != free_selection_rects.end(); ++i) {
936                 if ((*i)->id == id) {
937                         SelectionRect* ret = (*i);
938                         free_selection_rects.erase (i);
939                         return ret;
940                 }
941         }
942
943         /* no existing matching rect, so go get a new one from the free list, or create one if there are none */
944
945         if (free_selection_rects.empty()) {
946
947                 rect = new SelectionRect;
948
949                 rect->rect = new ArdourCanvas::Rectangle (selection_group);
950                 CANVAS_DEBUG_NAME (rect->rect, "selection rect");
951                 rect->rect->set_outline (false);
952                 rect->rect->set_fill_color (ARDOUR_UI::config()->get_canvasvar_SelectionRect());
953
954                 rect->start_trim = new ArdourCanvas::Rectangle (selection_group);
955                 CANVAS_DEBUG_NAME (rect->rect, "selection rect start trim");
956                 rect->start_trim->set_outline (false);
957                 rect->start_trim->set_fill (false);
958
959                 rect->end_trim = new ArdourCanvas::Rectangle (selection_group);
960                 CANVAS_DEBUG_NAME (rect->rect, "selection rect end trim");
961                 rect->end_trim->set_outline (false);
962                 rect->end_trim->set_fill (false);
963
964                 free_selection_rects.push_front (rect);
965
966                 rect->rect->Event.connect (sigc::bind (sigc::mem_fun (_editor, &PublicEditor::canvas_selection_rect_event), rect->rect, rect));
967                 rect->start_trim->Event.connect (sigc::bind (sigc::mem_fun (_editor, &PublicEditor::canvas_selection_start_trim_event), rect->rect, rect));
968                 rect->end_trim->Event.connect (sigc::bind (sigc::mem_fun (_editor, &PublicEditor::canvas_selection_end_trim_event), rect->rect, rect));
969         }
970
971         rect = free_selection_rects.front();
972         rect->id = id;
973         free_selection_rects.pop_front();
974         return rect;
975 }
976
977 struct null_deleter { void operator()(void const *) const {} };
978
979 bool
980 TimeAxisView::is_child (TimeAxisView* tav)
981 {
982         return find (children.begin(), children.end(), boost::shared_ptr<TimeAxisView>(tav, null_deleter())) != children.end();
983 }
984
985 void
986 TimeAxisView::add_child (boost::shared_ptr<TimeAxisView> child)
987 {
988         children.push_back (child);
989 }
990
991 void
992 TimeAxisView::remove_child (boost::shared_ptr<TimeAxisView> child)
993 {
994         Children::iterator i;
995
996         if ((i = find (children.begin(), children.end(), child)) != children.end()) {
997                 children.erase (i);
998         }
999 }
1000
1001 /** Get selectable things within a given range.
1002  *  @param start Start time in session frames.
1003  *  @param end End time in session frames.
1004  *  @param top Top y range, in trackview coordinates (ie 0 is the top of the track view)
1005  *  @param bot Bottom y range, in trackview coordinates (ie 0 is the top of the track view)
1006  *  @param result Filled in with selectable things.
1007  */
1008 void
1009 TimeAxisView::get_selectables (framepos_t /*start*/, framepos_t /*end*/, double /*top*/, double /*bot*/, list<Selectable*>& /*result*/)
1010 {
1011         return;
1012 }
1013
1014 void
1015 TimeAxisView::get_inverted_selectables (Selection& /*sel*/, list<Selectable*>& /*result*/)
1016 {
1017         return;
1018 }
1019
1020 void
1021 TimeAxisView::add_ghost (RegionView* rv)
1022 {
1023         GhostRegion* gr = rv->add_ghost (*this);
1024
1025         if (gr) {
1026                 ghosts.push_back(gr);
1027         }
1028 }
1029
1030 void
1031 TimeAxisView::remove_ghost (RegionView* rv)
1032 {
1033         rv->remove_ghost_in (*this);
1034 }
1035
1036 void
1037 TimeAxisView::erase_ghost (GhostRegion* gr)
1038 {
1039         if (in_destructor) {
1040                 return;
1041         }
1042
1043         for (list<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
1044                 if ((*i) == gr) {
1045                         ghosts.erase (i);
1046                         break;
1047                 }
1048         }
1049 }
1050
1051 bool
1052 TimeAxisView::touched (double top, double bot)
1053 {
1054         /* remember: this is X Window - coordinate space starts in upper left and moves down.
1055           y_position is the "origin" or "top" of the track.
1056         */
1057
1058         double mybot = _y_position + current_height();
1059
1060         return ((_y_position <= bot && _y_position >= top) ||
1061                 ((mybot <= bot) && (top < mybot)) ||
1062                 (mybot >= bot && _y_position < top));
1063 }
1064
1065 void
1066 TimeAxisView::set_parent (TimeAxisView& p)
1067 {
1068         parent = &p;
1069 }
1070
1071 void
1072 TimeAxisView::reset_height ()
1073 {
1074         set_height (height);
1075
1076         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
1077                 (*i)->set_height ((*i)->height);
1078         }
1079 }
1080
1081 void
1082 TimeAxisView::compute_heights ()
1083 {
1084         Gtk::Window window (Gtk::WINDOW_TOPLEVEL);
1085         Gtk::Table two_row_table (2, 8);
1086         Gtk::Table one_row_table (1, 8);
1087         Button* buttons[5];
1088         const int border_width = 2;
1089
1090         const int separator_height = 2;
1091         extra_height = (2 * border_width) + separator_height;
1092
1093         window.add (one_row_table);
1094
1095         one_row_table.set_border_width (border_width);
1096         one_row_table.set_row_spacings (0);
1097         one_row_table.set_col_spacings (0);
1098         one_row_table.set_homogeneous (true);
1099
1100         two_row_table.set_border_width (border_width);
1101         two_row_table.set_row_spacings (0);
1102         two_row_table.set_col_spacings (0);
1103         two_row_table.set_homogeneous (true);
1104
1105         for (int i = 0; i < 5; ++i) {
1106                 buttons[i] = manage (new Button (X_("f")));
1107                 buttons[i]->set_name ("TrackMuteButton");
1108         }
1109
1110         one_row_table.attach (*buttons[0], 6, 7, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
1111
1112         one_row_table.show_all ();
1113         Gtk::Requisition req(one_row_table.size_request ());
1114
1115         // height required to show 1 row of buttons
1116         button_height = req.height;
1117 }
1118
1119 void
1120 TimeAxisView::color_handler ()
1121 {
1122         for (list<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); i++) {
1123                 (*i)->set_colors();
1124         }
1125
1126         for (list<SelectionRect*>::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) {
1127
1128                 (*i)->rect->set_fill_color (ARDOUR_UI::config()->get_canvasvar_SelectionRect());
1129                 (*i)->rect->set_outline_color (ARDOUR_UI::config()->get_canvasvar_Selection());
1130
1131                 (*i)->start_trim->set_fill_color (ARDOUR_UI::config()->get_canvasvar_Selection());
1132                 (*i)->start_trim->set_outline_color (ARDOUR_UI::config()->get_canvasvar_Selection());
1133                 
1134                 (*i)->end_trim->set_fill_color (ARDOUR_UI::config()->get_canvasvar_Selection());
1135                 (*i)->end_trim->set_outline_color (ARDOUR_UI::config()->get_canvasvar_Selection());
1136         }
1137         
1138         for (list<SelectionRect*>::iterator i = free_selection_rects.begin(); i != free_selection_rects.end(); ++i) {
1139                 
1140                 (*i)->rect->set_fill_color (ARDOUR_UI::config()->get_canvasvar_SelectionRect());
1141                 (*i)->rect->set_outline_color (ARDOUR_UI::config()->get_canvasvar_Selection());
1142                 
1143                 (*i)->start_trim->set_fill_color (ARDOUR_UI::config()->get_canvasvar_Selection());
1144                 (*i)->start_trim->set_outline_color (ARDOUR_UI::config()->get_canvasvar_Selection());
1145                 
1146                 (*i)->end_trim->set_fill_color (ARDOUR_UI::config()->get_canvasvar_Selection());
1147                 (*i)->end_trim->set_outline_color (ARDOUR_UI::config()->get_canvasvar_Selection());
1148         }
1149 }
1150
1151 /** @return Pair: TimeAxisView, layer index.
1152  * TimeAxisView is non-0 if this object covers y, or one of its children does.
1153  * If the covering object is a child axis, then the child is returned.
1154  * TimeAxisView is 0 otherwise.
1155  * Layer index is the layer number (possibly fractional) if the TimeAxisView is valid
1156  * and is in stacked or expanded * region display mode, otherwise 0.
1157  */
1158 std::pair<TimeAxisView*, double>
1159 TimeAxisView::covers_y_position (double y) const
1160 {
1161         if (hidden()) {
1162                 return std::make_pair ((TimeAxisView *) 0, 0);
1163         }
1164
1165         if (_y_position <= y && y < (_y_position + height)) {
1166
1167                 /* work out the layer index if appropriate */
1168                 double l = 0;
1169                 switch (layer_display ()) {
1170                 case Overlaid:
1171                         break;
1172                 case Stacked:
1173                         if (view ()) {
1174                                 /* compute layer */
1175                                 l = layer_t ((_y_position + height - y) / (view()->child_height ()));
1176                                 /* clamp to max layers to be on the safe side; sometimes the above calculation
1177                                    returns a too-high value */
1178                                 if (l >= view()->layers ()) {
1179                                         l = view()->layers() - 1;
1180                                 }
1181                         }
1182                         break;
1183                 case Expanded:
1184                         if (view ()) {
1185                                 int const n = floor ((_y_position + height - y) / (view()->child_height ()));
1186                                 l = n * 0.5 - 0.5;
1187                                 if (l >= (view()->layers() - 0.5)) {
1188                                         l = view()->layers() - 0.5;
1189                                 }
1190                         }
1191                         break;
1192                 }
1193
1194                 return std::make_pair (const_cast<TimeAxisView*>(this), l);
1195         }
1196
1197         for (Children::const_iterator i = children.begin(); i != children.end(); ++i) {
1198
1199                 std::pair<TimeAxisView*, int> const r = (*i)->covers_y_position (y);
1200                 if (r.first) {
1201                         return r;
1202                 }
1203         }
1204
1205         return std::make_pair ((TimeAxisView *) 0, 0);
1206 }
1207
1208 bool
1209 TimeAxisView::covered_by_y_range (double y0, double y1) const
1210 {
1211         if (hidden()) {
1212                 return false;
1213         }
1214
1215         /* if either the top or bottom of the axisview is in the vertical
1216          * range, we cover it.
1217          */
1218         
1219         if ((y0 < _y_position && y1 < _y_position) ||
1220             (y0 >= _y_position + height && y1 >= _y_position + height)) {
1221                 return false;
1222         }
1223
1224         for (Children::const_iterator i = children.begin(); i != children.end(); ++i) {
1225                 if ((*i)->covered_by_y_range (y0, y1)) {
1226                         return true;
1227                 }
1228         }
1229
1230         return true;
1231 }
1232
1233 uint32_t
1234 TimeAxisView::preset_height (Height h)
1235 {
1236         switch (h) {
1237         case HeightLargest:
1238                 return (button_height * 2) + extra_height + 260;
1239         case HeightLarger:
1240                 return (button_height * 2) + extra_height + 160;
1241         case HeightLarge:
1242                 return (button_height * 2) + extra_height + 60;
1243         case HeightNormal:
1244                 return (button_height * 2) + extra_height + 10;
1245         case HeightSmall:
1246                 return button_height + extra_height;
1247         }
1248
1249         /* NOTREACHED */
1250         return 0;
1251 }
1252
1253 /** @return Child time axis views that are not hidden */
1254 TimeAxisView::Children
1255 TimeAxisView::get_child_list ()
1256 {
1257         Children c;
1258
1259         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
1260                 if (!(*i)->hidden()) {
1261                         c.push_back(*i);
1262                 }
1263         }
1264
1265         return c;
1266 }
1267
1268 void
1269 TimeAxisView::build_size_menu ()
1270 {
1271         if (_size_menu && _size_menu->gobj ()) {
1272                 return;
1273         }
1274
1275         delete _size_menu;
1276
1277         using namespace Menu_Helpers;
1278
1279         _size_menu = new Menu;
1280         _size_menu->set_name ("ArdourContextMenu");
1281         MenuList& items = _size_menu->items();
1282
1283         items.push_back (MenuElem (_("Largest"), sigc::bind (sigc::mem_fun (*this, &TimeAxisView::set_height_enum), HeightLargest, true)));
1284         items.push_back (MenuElem (_("Larger"),  sigc::bind (sigc::mem_fun (*this, &TimeAxisView::set_height_enum), HeightLarger, true)));
1285         items.push_back (MenuElem (_("Large"),   sigc::bind (sigc::mem_fun (*this, &TimeAxisView::set_height_enum), HeightLarge, true)));
1286         items.push_back (MenuElem (_("Normal"),  sigc::bind (sigc::mem_fun (*this, &TimeAxisView::set_height_enum), HeightNormal, true)));
1287         items.push_back (MenuElem (_("Small"),   sigc::bind (sigc::mem_fun (*this, &TimeAxisView::set_height_enum), HeightSmall, true)));
1288 }
1289
1290 void
1291 TimeAxisView::reset_visual_state ()
1292 {
1293         /* this method is not required to trigger a global redraw */
1294
1295         string str = gui_property ("height");
1296         
1297         if (!str.empty()) {
1298                 set_height (atoi (str));
1299         } else {
1300                 set_height (preset_height (HeightNormal));
1301         }
1302 }
1303
1304 TrackViewList
1305 TrackViewList::filter_to_unique_playlists ()
1306 {
1307         std::set<boost::shared_ptr<ARDOUR::Playlist> > playlists;
1308         TrackViewList ts;
1309
1310         for (iterator i = begin(); i != end(); ++i) {
1311                 RouteTimeAxisView* rtav = dynamic_cast<RouteTimeAxisView*> (*i);
1312                 if (!rtav) {
1313                         /* not a route: include it anyway */
1314                         ts.push_back (*i);
1315                 } else {
1316                         boost::shared_ptr<ARDOUR::Track> t = rtav->track();
1317                         if (t) {
1318                                 if (playlists.insert (t->playlist()).second) {
1319                                         /* playlist not seen yet */
1320                                         ts.push_back (*i);
1321                                 }
1322                         } else {
1323                                 /* not a track: include it anyway */
1324                                 ts.push_back (*i);
1325                         }
1326                 }
1327         }
1328         return ts;
1329 }