a boatload of minor and middle-sized changes to try to speed up undo. imperfect,...
[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 #include <libgnomecanvasmm.h>
27 #include <libgnomecanvasmm/canvas.h>
28 #include <libgnomecanvasmm/item.h>
29
30 #include "pbd/error.h"
31
32 #include <gtkmm2ext/utils.h>
33 #include <gtkmm2ext/selector.h>
34 #include <gtkmm2ext/stop_signal.h>
35
36 #include "ardour/session.h"
37 #include "ardour/utils.h"
38 #include "ardour/ladspa_plugin.h"
39 #include "ardour/processor.h"
40 #include "ardour/location.h"
41
42 #include "ardour_ui.h"
43 #include "gui_thread.h"
44 #include "public_editor.h"
45 #include "time_axis_view.h"
46 #include "region_view.h"
47 #include "ghostregion.h"
48 #include "simplerect.h"
49 #include "simpleline.h"
50 #include "selection.h"
51 #include "keyboard.h"
52 #include "rgb_macros.h"
53 #include "utils.h"
54 #include "streamview.h"
55
56 #include "i18n.h"
57
58 using namespace std;
59 using namespace Gtk;
60 using namespace Gdk;
61 using namespace ARDOUR;
62 using namespace PBD;
63 using namespace Editing;
64 using namespace ArdourCanvas;
65 using Gtkmm2ext::Keyboard;
66
67 const double trim_handle_size = 6.0; /* pixels */
68
69 uint32_t TimeAxisView::hLargest = 0;
70 uint32_t TimeAxisView::hLarge = 0;
71 uint32_t TimeAxisView::hLarger = 0;
72 uint32_t TimeAxisView::hNormal = 0;
73 uint32_t TimeAxisView::hSmaller = 0;
74 uint32_t TimeAxisView::hSmall = 0;
75 bool TimeAxisView::need_size_info = true;
76 int const TimeAxisView::_max_order = 512;
77 PBD::Signal1<void,TimeAxisView*> TimeAxisView::CatchDeletion;
78
79 TimeAxisView::TimeAxisView (ARDOUR::Session* sess, PublicEditor& ed, TimeAxisView* rent, Canvas& /*canvas*/)
80         : AxisView (sess),
81           controls_table (2, 8),
82           _y_position (0),
83           _editor (ed),
84           _order (0)
85 {
86         if (need_size_info) {
87                 compute_controls_size_info ();
88                 need_size_info = false;
89         }
90         _canvas_background = new Group (*ed.get_background_group (), 0.0, 0.0);
91         _canvas_display = new Group (*ed.get_trackview_group (), 0.0, 0.0);
92         _canvas_display->hide(); // reveal as needed 
93
94         selection_group = new Group (*_canvas_display);
95         selection_group->hide();
96
97         _ghost_group = new Group (*_canvas_display);
98         _ghost_group->lower_to_bottom();
99         _ghost_group->show();
100
101         control_parent = 0;
102         display_menu = 0;
103         size_menu = 0;
104         _hidden = false;
105         in_destructor = false;
106         height = 0;
107         _effective_height = 0;
108         parent = rent;
109         _has_state = false;
110         last_name_entry_key_press_event = 0;
111         name_packing = NamePackingBits (0);
112         _resize_drag_start = -1;
113
114         /*
115           Create the standard LHS Controls
116           We create the top-level container and name add the name label here,
117           subclasses can add to the layout as required
118         */
119
120         name_entry.set_name ("EditorTrackNameDisplay");
121         name_entry.signal_button_release_event().connect (sigc::mem_fun (*this, &TimeAxisView::name_entry_button_release));
122         name_entry.signal_button_press_event().connect (sigc::mem_fun (*this, &TimeAxisView::name_entry_button_press));
123         name_entry.signal_key_release_event().connect (sigc::mem_fun (*this, &TimeAxisView::name_entry_key_release));
124         name_entry.signal_activate().connect (sigc::mem_fun(*this, &TimeAxisView::name_entry_activated));
125         name_entry.signal_focus_in_event().connect (sigc::mem_fun (*this, &TimeAxisView::name_entry_focus_in));
126         name_entry.signal_focus_out_event().connect (sigc::mem_fun (*this, &TimeAxisView::name_entry_focus_out));
127         Gtkmm2ext::set_size_request_to_display_given_text (name_entry, N_("gTortnam"), 10, 10); // just represents a short name
128
129         name_label.set_name ("TrackLabel");
130         name_label.set_alignment (0.0, 0.5);
131
132         /* typically, either name_label OR name_entry are visible,
133            but not both. its up to derived classes to show/hide them as they
134            wish.
135         */
136
137         name_hbox.show ();
138
139         controls_table.set_size_request (200);
140         controls_table.set_border_width (2);
141         controls_table.set_row_spacings (0);
142         controls_table.set_col_spacings (0);
143         controls_table.set_homogeneous (true);
144
145         controls_table.attach (name_hbox, 0, 5, 0, 1,  Gtk::FILL|Gtk::EXPAND,  Gtk::FILL|Gtk::EXPAND, 3, 0);
146         controls_table.show_all ();
147         controls_table.set_no_show_all ();
148
149         resizer.set_size_request (10, 10);
150         resizer.set_name ("ResizeHandle");
151         resizer.signal_expose_event().connect (sigc::mem_fun (*this, &TimeAxisView::resizer_expose));
152         resizer.signal_button_press_event().connect (sigc::mem_fun (*this, &TimeAxisView::resizer_button_press));
153         resizer.signal_button_release_event().connect (sigc::mem_fun (*this, &TimeAxisView::resizer_button_release));
154         resizer.signal_motion_notify_event().connect (sigc::mem_fun (*this, &TimeAxisView::resizer_motion));
155         resizer.set_events (Gdk::BUTTON_PRESS_MASK|
156                         Gdk::BUTTON_RELEASE_MASK|
157                         Gdk::POINTER_MOTION_MASK|
158                         Gdk::SCROLL_MASK);
159
160         resizer_box.pack_start (resizer, false, false);
161         resizer.show ();
162         resizer_box.show();
163
164         HSeparator* separator = manage (new HSeparator());
165
166         controls_vbox.pack_start (controls_table, false, false);
167         controls_vbox.pack_end (*separator, false, false);
168         controls_vbox.pack_end (resizer_box, false, true);
169         controls_vbox.show ();
170
171         //controls_ebox.set_name ("TimeAxisViewControlsBaseUnselected");
172         controls_ebox.add (controls_vbox);
173         controls_ebox.add_events (BUTTON_PRESS_MASK|BUTTON_RELEASE_MASK|SCROLL_MASK);
174         controls_ebox.set_flags (CAN_FOCUS);
175
176         controls_ebox.signal_button_release_event().connect (sigc::mem_fun (*this, &TimeAxisView::controls_ebox_button_release));
177         controls_ebox.signal_scroll_event().connect (sigc::mem_fun (*this, &TimeAxisView::controls_ebox_scroll), true);
178
179         controls_hbox.pack_start (controls_ebox,true,true);
180         controls_hbox.show ();
181
182         ColorsChanged.connect (sigc::mem_fun (*this, &TimeAxisView::color_handler));
183
184         GhostRegion::CatchDeletion.connect (*this, ui_bind (&TimeAxisView::erase_ghost, this, _1), gui_context());
185 }
186
187 TimeAxisView::~TimeAxisView()
188 {
189         in_destructor = true;
190
191         for (list<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
192                 delete *i;
193         }
194
195         for (list<SelectionRect*>::iterator i = free_selection_rects.begin(); i != free_selection_rects.end(); ++i) {
196                 delete (*i)->rect;
197                 delete (*i)->start_trim;
198                 delete (*i)->end_trim;
199
200         }
201
202         for (list<SelectionRect*>::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) {
203                 delete (*i)->rect;
204                 delete (*i)->start_trim;
205                 delete (*i)->end_trim;
206         }
207
208         for (list<SimpleLine*>::iterator i = feature_lines.begin(); i != feature_lines.end(); ++i) {
209                 delete (*i);
210         }
211
212         delete selection_group;
213         selection_group = 0;
214
215         delete _canvas_background;
216         _canvas_background = 0;
217
218         delete _canvas_display;
219         _canvas_display = 0;
220
221         delete display_menu;
222         display_menu = 0;
223 }
224
225 /** Display this TimeAxisView as the nth component of the parent box, at y.
226 *
227 * @param y y position.
228 * @param nth index for this TimeAxisView, increased if this view has children.
229 * @param parent parent component.
230 * @return height of this TimeAxisView.
231 */
232 guint32
233 TimeAxisView::show_at (double y, int& nth, VBox *parent)
234 {
235         if (control_parent) {
236                 control_parent->reorder_child (controls_hbox, nth);
237         } else {
238                 control_parent = parent;
239                 parent->pack_start (controls_hbox, false, false);
240                 parent->reorder_child (controls_hbox, nth);
241         }
242
243         _order = nth;
244
245         if (_y_position != y) {
246                 _canvas_display->property_y () = y;
247                 _canvas_background->property_y () = y;
248                 /* silly canvas */
249                 _canvas_display->move (0.0, 0.0);
250                 _canvas_background->move (0.0, 0.0);
251                 _y_position = y;
252
253         }
254
255         _canvas_background->raise_to_top ();
256         _canvas_display->raise_to_top ();
257
258         if (_marked_for_display) {
259                 controls_hbox.show ();
260                 controls_ebox.show ();
261                 _canvas_background->show ();
262         }
263
264         _hidden = false;
265
266         _effective_height = current_height ();
267
268         /* now show children */
269
270         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
271                 if (canvas_item_visible ((*i)->_canvas_display)) {
272                         ++nth;
273                         _effective_height += (*i)->show_at (y + _effective_height, nth, parent);
274                 } 
275         }
276
277         return _effective_height;
278 }
279
280 void
281 TimeAxisView::clip_to_viewport ()
282 {
283         if (_marked_for_display) {
284                 if (_y_position + _effective_height < _editor.get_trackview_group_vertical_offset () || _y_position > _editor.get_trackview_group_vertical_offset () + _canvas_display->get_canvas()->get_height()) {
285                         _canvas_background->hide ();
286                         _canvas_display->hide ();
287                         return;
288                 }
289                 _canvas_background->show ();
290                 _canvas_display->show ();
291         }
292         return;
293 }
294
295 bool
296 TimeAxisView::controls_ebox_scroll (GdkEventScroll* ev)
297 {
298         if (Keyboard::some_magic_widget_has_focus()) {
299                 return false;
300         }
301
302         switch (ev->direction) {
303         case GDK_SCROLL_UP:
304                 if (Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)) {
305                         step_height (true);
306                         return true;
307                 } else if (Keyboard::no_modifiers_active (ev->state)) {
308                         _editor.scroll_tracks_up_line();
309                         return true;
310                 }
311                 break;
312
313         case GDK_SCROLL_DOWN:
314                 if (Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)) {
315                         step_height (false);
316                         return true;
317                 } else if (Keyboard::no_modifiers_active (ev->state)) {
318                         _editor.scroll_tracks_down_line();
319                         return true;
320                 }
321                 break;
322
323         default:
324                 /* no handling for left/right, yet */
325                 break;
326         }
327
328         return false;
329 }
330
331 bool
332 TimeAxisView::controls_ebox_button_release (GdkEventButton* ev)
333 {
334         switch (ev->button) {
335         case 1:
336                 selection_click (ev);
337                 break;
338
339         case 3:
340                 popup_display_menu (ev->time);
341                 break;
342         }
343
344         return true;
345 }
346
347 void
348 TimeAxisView::selection_click (GdkEventButton* ev)
349 {
350         Selection::Operation op = ArdourKeyboard::selection_type (ev->state);
351         _editor.set_selected_track (*this, op, false);
352 }
353
354 void
355 TimeAxisView::hide ()
356 {
357         if (_hidden) {
358                 return;
359         }
360
361         _canvas_display->hide ();
362         _canvas_background->hide ();
363
364         if (control_parent) {
365                 control_parent->remove (controls_hbox);
366                 control_parent = 0;
367         }
368
369         _y_position = -1;
370         _hidden = true;
371
372         /* now hide children */
373
374         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
375                 (*i)->hide ();
376         }
377
378         /* if its hidden, it cannot be selected */
379
380         _editor.get_selection().remove (this);
381
382         Hiding ();
383 }
384
385 void
386 TimeAxisView::step_height (bool bigger)
387 {
388         static const uint32_t step = 20;
389
390         if (bigger) {
391                 set_height (height + step);
392         } else {
393                 if (height > step) {
394                         set_height (std::max (height - step, hSmall));
395                 } else if (height != hSmall) {
396                         set_height (hSmall);
397                 }
398         }
399 }
400
401 void
402 TimeAxisView::set_heights (uint32_t h)
403 {
404         TrackSelection& ts (_editor.get_selection().tracks);
405
406         for (TrackSelection::iterator i = ts.begin(); i != ts.end(); ++i) {
407                 (*i)->set_height (h);
408         }
409 }
410
411 void
412 TimeAxisView::set_height(uint32_t h)
413 {
414         controls_ebox.property_height_request () = h;
415         height = h;
416
417         for (list<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
418                 (*i)->set_height ();
419         }
420
421         if (canvas_item_visible (selection_group)) {
422                 /* resize the selection rect */
423                 show_selection (_editor.get_selection().time);
424         }
425
426         reshow_feature_lines ();
427 }
428
429 bool
430 TimeAxisView::name_entry_key_release (GdkEventKey* ev)
431 {
432         TrackViewList::iterator i;
433
434         switch (ev->keyval) {
435         case GDK_Escape:
436                 name_entry.select_region (0,0);
437                 controls_ebox.grab_focus ();
438                 name_entry_changed ();
439                 return true;
440
441         /* Shift+Tab Keys Pressed. Note that for Shift+Tab, GDK actually
442          * generates a different ev->keyval, rather than setting
443          * ev->state.
444          */
445         case GDK_ISO_Left_Tab:
446         case GDK_Tab:
447         {
448                 name_entry_changed ();
449                 TrackViewList const & allviews = _editor.get_track_views ();
450                 TrackViewList::const_iterator i = find (allviews.begin(), allviews.end(), this);
451                 if (ev->keyval == GDK_Tab) {
452                         if (i != allviews.end()) {
453                                 do {
454                                         if (++i == allviews.end()) {
455                                                 return true;
456                                         }
457                                 } while((*i)->hidden());
458                         }
459                 } else {
460                         if (i != allviews.begin()) {
461                                 do {
462                                         if (i == allviews.begin()) {
463                                                 return true;
464                                         }
465                                         --i;
466                                 } while ((*i)->hidden());
467                         }
468                 }
469                 
470                 
471                 /* resize to show editable name display */
472                 
473                 if ((*i)->current_height() <= hSmaller) {
474                         (*i)->set_height (hSmaller);
475                 }
476                 
477                 (*i)->name_entry.grab_focus();
478         }
479         return true;
480         
481         case GDK_Up:
482         case GDK_Down:
483                 name_entry_changed ();
484                 return true;
485
486         default:
487                 break;
488         }
489
490 #ifdef TIMEOUT_NAME_EDIT
491         /* adapt the timeout to reflect the user's typing speed */
492
493         guint32 name_entry_timeout;
494
495         if (last_name_entry_key_press_event) {
496                 /* timeout is 1/2 second or 5 times their current inter-char typing speed */
497                 name_entry_timeout = std::max (500U, (5 * (ev->time - last_name_entry_key_press_event)));
498         } else {
499                 /* start with a 1 second timeout */
500                 name_entry_timeout = 1000;
501         }
502
503         last_name_entry_key_press_event = ev->time;
504
505         /* wait 1 seconds and if no more keys are pressed, act as if they pressed enter */
506
507         name_entry_key_timeout.disconnect();
508         name_entry_key_timeout = Glib::signal_timeout().connect (sigc::mem_fun (*this, &TimeAxisView::name_entry_key_timed_out), name_entry_timeout);
509 #endif
510
511         return false;
512 }
513
514 bool
515 TimeAxisView::name_entry_focus_in (GdkEventFocus*)
516 {
517         name_entry.select_region (0, -1);
518         name_entry.set_name ("EditorActiveTrackNameDisplay");
519         return false;
520 }
521
522 bool
523 TimeAxisView::name_entry_focus_out (GdkEventFocus*)
524 {
525         /* clean up */
526
527         last_name_entry_key_press_event = 0;
528         name_entry_key_timeout.disconnect ();
529         name_entry.set_name ("EditorTrackNameDisplay");
530         name_entry.select_region (0,0);
531
532         /* do the real stuff */
533
534         name_entry_changed ();
535
536         return false;
537 }
538
539 bool
540 TimeAxisView::name_entry_key_timed_out ()
541 {
542         name_entry_activated();
543         return false;
544 }
545
546 void
547 TimeAxisView::name_entry_activated ()
548 {
549         controls_ebox.grab_focus();
550 }
551
552 void
553 TimeAxisView::name_entry_changed ()
554 {
555 }
556
557 bool
558 TimeAxisView::name_entry_button_press (GdkEventButton *ev)
559 {
560         if (ev->button == 3) {
561                 return true;
562         }
563         return false;
564 }
565
566 bool
567 TimeAxisView::name_entry_button_release (GdkEventButton *ev)
568 {
569         if (ev->button == 3) {
570                 popup_display_menu (ev->time);
571                 return true;
572         }
573         return false;
574 }
575
576 void
577 TimeAxisView::conditionally_add_to_selection ()
578 {
579         Selection& s (_editor.get_selection ());
580
581         if (!s.selected (this)) {
582                 _editor.set_selected_track (*this, Selection::Set);
583         }
584 }
585
586 void
587 TimeAxisView::popup_display_menu (guint32 when)
588 {
589         if (display_menu == 0) {
590                 build_display_menu ();
591         }
592
593         conditionally_add_to_selection ();
594         display_menu->popup (1, when);
595 }
596
597 gint
598 TimeAxisView::size_click (GdkEventButton *ev)
599 {
600         conditionally_add_to_selection ();
601         popup_size_menu (ev->time);
602         return TRUE;
603 }
604
605 void
606 TimeAxisView::popup_size_menu (guint32 when)
607 {
608         if (size_menu == 0) {
609                 build_size_menu ();
610         }
611         size_menu->popup (1, when);
612 }
613
614 void
615 TimeAxisView::set_selected (bool yn)
616 {
617         if (yn == _selected) {
618                 return;
619         }
620
621         Selectable::set_selected (yn);
622
623         if (_selected) {
624                 controls_ebox.set_name (controls_base_selected_name);
625                 controls_hbox.set_name (controls_base_selected_name);
626                 controls_vbox.set_name (controls_base_selected_name);
627         } else {
628                 controls_ebox.set_name (controls_base_unselected_name);
629                 controls_hbox.set_name (controls_base_unselected_name);
630                 controls_vbox.set_name (controls_base_unselected_name);
631                 hide_selection ();
632
633                 /* children will be set for the yn=true case. but when deselecting
634                    the editor only has a list of top-level trackviews, so we
635                    have to do this here.
636                 */
637
638                 for (Children::iterator i = children.begin(); i != children.end(); ++i) {
639                         (*i)->set_selected (false);
640                 }
641         }
642
643         resizer.queue_draw ();
644 }
645
646 void
647 TimeAxisView::build_size_menu ()
648 {
649         using namespace Menu_Helpers;
650
651         size_menu = new Menu;
652         size_menu->set_name ("ArdourContextMenu");
653         MenuList& items = size_menu->items();
654
655         items.push_back (MenuElem (_("Largest"), sigc::bind (sigc::mem_fun (*this, &TimeAxisView::set_heights), hLargest)));
656         items.push_back (MenuElem (_("Large"), sigc::bind (sigc::mem_fun (*this, &TimeAxisView::set_heights), hLarge)));
657         items.push_back (MenuElem (_("Larger"), sigc::bind (sigc::mem_fun (*this, &TimeAxisView::set_heights), hLarger)));
658         items.push_back (MenuElem (_("Normal"), sigc::bind (sigc::mem_fun (*this, &TimeAxisView::set_heights), hNormal)));
659         items.push_back (MenuElem (_("Smaller"), sigc::bind (sigc::mem_fun (*this, &TimeAxisView::set_heights),hSmaller)));
660         items.push_back (MenuElem (_("Small"), sigc::bind (sigc::mem_fun (*this, &TimeAxisView::set_heights), hSmall)));
661 }
662
663 void
664 TimeAxisView::build_display_menu ()
665 {
666         using namespace Menu_Helpers;
667
668         delete display_menu;
669
670         display_menu = new Menu;
671         display_menu->set_name ("ArdourContextMenu");
672
673         // Just let implementing classes define what goes into the manu
674 }
675
676 void
677 TimeAxisView::set_samples_per_unit (double spu)
678 {
679         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
680                 (*i)->set_samples_per_unit (spu);
681         }
682
683         AnalysisFeatureList::const_iterator i;
684         list<ArdourCanvas::SimpleLine*>::iterator l;
685
686         for (i = analysis_features.begin(), l = feature_lines.begin(); i != analysis_features.end() && l != feature_lines.end(); ++i, ++l) {
687                 (*l)->property_x1() = _editor.frame_to_pixel (*i);
688                 (*l)->property_x2() = _editor.frame_to_pixel (*i);
689         }
690 }
691
692 void
693 TimeAxisView::show_timestretch (nframes_t start, nframes_t end)
694 {
695         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
696                 (*i)->show_timestretch (start, end);
697         }
698 }
699
700 void
701 TimeAxisView::hide_timestretch ()
702 {
703         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
704                 (*i)->hide_timestretch ();
705         }
706 }
707
708 void
709 TimeAxisView::show_selection (TimeSelection& ts)
710 {
711         double x1;
712         double x2;
713         double y2;
714         SelectionRect *rect;
715
716         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
717                 (*i)->show_selection (ts);
718         }
719
720         if (canvas_item_visible (selection_group)) {
721                 while (!used_selection_rects.empty()) {
722                         free_selection_rects.push_front (used_selection_rects.front());
723                         used_selection_rects.pop_front();
724                         free_selection_rects.front()->rect->hide();
725                         free_selection_rects.front()->start_trim->hide();
726                         free_selection_rects.front()->end_trim->hide();
727                 }
728                 selection_group->hide();
729         }
730
731         selection_group->show();
732         selection_group->raise_to_top();
733
734         for (list<AudioRange>::iterator i = ts.begin(); i != ts.end(); ++i) {
735                 nframes_t start, end, cnt;
736
737                 start = (*i).start;
738                 end = (*i).end;
739                 cnt = end - start + 1;
740
741                 rect = get_selection_rect ((*i).id);
742
743                 x1 = _editor.frame_to_unit (start);
744                 x2 = _editor.frame_to_unit (start + cnt - 1);
745                 y2 = current_height();
746
747                 rect->rect->property_x1() = x1;
748                 rect->rect->property_y1() = 1.0;
749                 rect->rect->property_x2() = x2;
750                 rect->rect->property_y2() = y2;
751
752                 // trim boxes are at the top for selections
753
754                 if (x2 > x1) {
755                         rect->start_trim->property_x1() = x1;
756                         rect->start_trim->property_y1() = 1.0;
757                         rect->start_trim->property_x2() = x1 + trim_handle_size;
758                         rect->start_trim->property_y2() = 1.0 + trim_handle_size;
759
760                         rect->end_trim->property_x1() = x2 - trim_handle_size;
761                         rect->end_trim->property_y1() = 1.0;
762                         rect->end_trim->property_x2() = x2;
763                         rect->end_trim->property_y2() = 1.0 + trim_handle_size;
764
765                         rect->start_trim->show();
766                         rect->end_trim->show();
767                 } else {
768                         rect->start_trim->hide();
769                         rect->end_trim->hide();
770                 }
771
772                 rect->rect->show ();
773                 used_selection_rects.push_back (rect);
774         }
775 }
776
777 void
778 TimeAxisView::reshow_selection (TimeSelection& ts)
779 {
780         show_selection (ts);
781
782         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
783                 (*i)->show_selection (ts);
784         }
785 }
786
787 void
788 TimeAxisView::hide_selection ()
789 {
790         if (canvas_item_visible (selection_group)) {
791                 while (!used_selection_rects.empty()) {
792                         free_selection_rects.push_front (used_selection_rects.front());
793                         used_selection_rects.pop_front();
794                         free_selection_rects.front()->rect->hide();
795                         free_selection_rects.front()->start_trim->hide();
796                         free_selection_rects.front()->end_trim->hide();
797                 }
798                 selection_group->hide();
799         }
800
801         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
802                 (*i)->hide_selection ();
803         }
804 }
805
806 void
807 TimeAxisView::order_selection_trims (ArdourCanvas::Item *item, bool put_start_on_top)
808 {
809         /* find the selection rect this is for. we have the item corresponding to one
810            of the trim handles.
811          */
812
813         for (list<SelectionRect*>::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) {
814                 if ((*i)->start_trim == item || (*i)->end_trim == item) {
815
816                         /* make one trim handle be "above" the other so that if they overlap,
817                            the top one is the one last used.
818                         */
819
820                         (*i)->rect->raise_to_top ();
821                         (put_start_on_top ? (*i)->start_trim : (*i)->end_trim)->raise_to_top ();
822                         (put_start_on_top ? (*i)->end_trim : (*i)->start_trim)->raise_to_top ();
823
824                         break;
825                 }
826         }
827 }
828
829 SelectionRect *
830 TimeAxisView::get_selection_rect (uint32_t id)
831 {
832         SelectionRect *rect;
833
834         /* check to see if we already have a visible rect for this particular selection ID */
835
836         for (list<SelectionRect*>::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) {
837                 if ((*i)->id == id) {
838                         return (*i);
839                 }
840         }
841
842         /* ditto for the free rect list */
843
844         for (list<SelectionRect*>::iterator i = free_selection_rects.begin(); i != free_selection_rects.end(); ++i) {
845                 if ((*i)->id == id) {
846                         SelectionRect* ret = (*i);
847                         free_selection_rects.erase (i);
848                         return ret;
849                 }
850         }
851
852         /* no existing matching rect, so go get a new one from the free list, or create one if there are none */
853
854         if (free_selection_rects.empty()) {
855
856                 rect = new SelectionRect;
857
858                 rect->rect = new SimpleRect (*selection_group);
859                 rect->rect->property_x1() = 0.0;
860                 rect->rect->property_y1() = 0.0;
861                 rect->rect->property_x2() = 0.0;
862                 rect->rect->property_y2() = 0.0;
863                 rect->rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_SelectionRect.get();
864                 rect->rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
865
866                 rect->start_trim = new SimpleRect (*selection_group);
867                 rect->start_trim->property_x1() = 0.0;
868                 rect->start_trim->property_x2() = 0.0;
869                 rect->start_trim->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
870                 rect->start_trim->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
871
872                 rect->end_trim = new SimpleRect (*selection_group);
873                 rect->end_trim->property_x1() = 0.0;
874                 rect->end_trim->property_x2() = 0.0;
875                 rect->end_trim->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
876                 rect->end_trim->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
877
878                 free_selection_rects.push_front (rect);
879
880                 rect->rect->signal_event().connect (sigc::bind (sigc::mem_fun (_editor, &PublicEditor::canvas_selection_rect_event), rect->rect, rect));
881                 rect->start_trim->signal_event().connect (sigc::bind (sigc::mem_fun (_editor, &PublicEditor::canvas_selection_start_trim_event), rect->rect, rect));
882                 rect->end_trim->signal_event().connect (sigc::bind (sigc::mem_fun (_editor, &PublicEditor::canvas_selection_end_trim_event), rect->rect, rect));
883         }
884
885         rect = free_selection_rects.front();
886         rect->id = id;
887         free_selection_rects.pop_front();
888         return rect;
889 }
890
891 struct null_deleter { void operator()(void const *) const {} };
892
893 bool
894 TimeAxisView::is_child (TimeAxisView* tav)
895 {
896         return find (children.begin(), children.end(), boost::shared_ptr<TimeAxisView>(tav, null_deleter())) != children.end();
897 }
898
899 void
900 TimeAxisView::add_child (boost::shared_ptr<TimeAxisView> child)
901 {
902         children.push_back (child);
903 }
904
905 void
906 TimeAxisView::remove_child (boost::shared_ptr<TimeAxisView> child)
907 {
908         Children::iterator i;
909
910         if ((i = find (children.begin(), children.end(), child)) != children.end()) {
911                 children.erase (i);
912         }
913 }
914
915 void
916 TimeAxisView::get_selectables (nframes_t /*start*/, nframes_t /*end*/, double /*top*/, double /*bot*/, list<Selectable*>& /*result*/)
917 {
918         return;
919 }
920
921 void
922 TimeAxisView::get_inverted_selectables (Selection& /*sel*/, list<Selectable*>& /*result*/)
923 {
924         return;
925 }
926
927 void
928 TimeAxisView::add_ghost (RegionView* rv)
929 {
930         GhostRegion* gr = rv->add_ghost (*this);
931
932         if(gr) {
933                 ghosts.push_back(gr);
934         }
935 }
936
937 void
938 TimeAxisView::remove_ghost (RegionView* rv) 
939 {
940         rv->remove_ghost_in (*this);
941 }
942
943 void
944 TimeAxisView::erase_ghost (GhostRegion* gr) 
945 {
946         if (in_destructor) {
947                 return;
948         }
949         
950         for (list<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
951                 if ((*i) == gr) {
952                         ghosts.erase (i);
953                         break;
954                 }
955         }
956 }
957
958 bool
959 TimeAxisView::touched (double top, double bot)
960 {
961         /* remember: this is X Window - coordinate space starts in upper left and moves down.
962           y_position is the "origin" or "top" of the track.
963         */
964
965         double mybot = _y_position + current_height();
966
967         return ((_y_position <= bot && _y_position >= top) ||
968                 ((mybot <= bot) && (top < mybot)) ||
969                 (mybot >= bot && _y_position < top));
970 }
971
972 void
973 TimeAxisView::set_parent (TimeAxisView& p)
974 {
975         parent = &p;
976 }
977
978 bool
979 TimeAxisView::has_state () const
980 {
981         return _has_state;
982 }
983
984 TimeAxisView*
985 TimeAxisView::get_parent_with_state ()
986 {
987         if (parent == 0) {
988                 return 0;
989         }
990
991         if (parent->has_state()) {
992                 return parent;
993         }
994
995         return parent->get_parent_with_state ();
996 }
997
998
999 XMLNode&
1000 TimeAxisView::get_state ()
1001 {
1002         XMLNode* node = new XMLNode ("TAV-" + name());
1003         char buf[32];
1004
1005         snprintf (buf, sizeof(buf), "%u", height);
1006         node->add_property ("height", buf);
1007         node->add_property ("marked-for-display", (_marked_for_display ? "1" : "0"));
1008         return *node;
1009 }
1010
1011 int
1012 TimeAxisView::set_state (const XMLNode& node, int /*version*/)
1013 {
1014         const XMLProperty *prop;
1015
1016         if ((prop = node.property ("marked-for-display")) != 0) {
1017                 _marked_for_display = (prop->value() == "1");
1018         }
1019
1020         if ((prop = node.property ("track-height")) != 0) {
1021
1022                 if (prop->value() == "largest") {
1023                         set_height (hLargest);
1024                 } else if (prop->value() == "large") {
1025                         set_height (hLarge);
1026                 } else if (prop->value() == "larger") {
1027                         set_height (hLarger);
1028                 } else if (prop->value() == "normal") {
1029                         set_height (hNormal);
1030                 } else if (prop->value() == "smaller") {
1031                         set_height (hSmaller);
1032                 } else if (prop->value() == "small") {
1033                         set_height (hSmall);
1034                 } else {
1035                         error << string_compose(_("unknown track height name \"%1\" in XML GUI information"), prop->value()) << endmsg;
1036                         set_height (Normal);
1037                 }
1038
1039         } else if ((prop = node.property ("height")) != 0) {
1040
1041                 set_height (atoi (prop->value()));
1042
1043         } else {
1044
1045                 set_height (hNormal);
1046         }
1047
1048         return 0;
1049 }
1050
1051 void
1052 TimeAxisView::reset_height()
1053 {
1054         set_height (height);
1055
1056         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
1057                 (*i)->set_height ((*i)->height);
1058         }
1059 }
1060
1061 void
1062 TimeAxisView::compute_controls_size_info ()
1063 {
1064         Gtk::Window window (Gtk::WINDOW_TOPLEVEL);
1065         Gtk::Table two_row_table (2, 8);
1066         Gtk::Table one_row_table (1, 8);
1067         Button* buttons[5];
1068         const int border_width = 2;
1069         const int extra_height = (2 * border_width)
1070                 //+ 2   // 2 pixels for the hseparator between TimeAxisView control areas
1071                 + 10; // resizer button (3 x 2 pixel elements + 2 x 2 pixel gaps)
1072
1073         window.add (one_row_table);
1074
1075         one_row_table.set_border_width (border_width);
1076         one_row_table.set_row_spacings (0);
1077         one_row_table.set_col_spacings (0);
1078         one_row_table.set_homogeneous (true);
1079
1080         two_row_table.set_border_width (border_width);
1081         two_row_table.set_row_spacings (0);
1082         two_row_table.set_col_spacings (0);
1083         two_row_table.set_homogeneous (true);
1084
1085         for (int i = 0; i < 5; ++i) {
1086                 buttons[i] = manage (new Button (X_("f")));
1087                 buttons[i]->set_name ("TrackMuteButton");
1088         }
1089
1090         one_row_table.attach (*buttons[0], 6, 7, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
1091
1092         one_row_table.show_all ();
1093         Gtk::Requisition req(one_row_table.size_request ());
1094
1095
1096         // height required to show 1 row of buttons
1097
1098         hSmaller = req.height + extra_height;
1099
1100         window.remove ();
1101         window.add (two_row_table);
1102
1103         two_row_table.attach (*buttons[1], 5, 6, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
1104         two_row_table.attach (*buttons[2], 6, 7, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
1105         two_row_table.attach (*buttons[3], 7, 8, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
1106         two_row_table.attach (*buttons[4], 8, 9, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
1107
1108         two_row_table.show_all ();
1109         req = two_row_table.size_request ();
1110
1111         // height required to show all normal buttons
1112
1113         hNormal = /*req.height*/ 48 + extra_height;
1114
1115         // these heights are all just larger than normal. no more
1116         // elements are visible (yet).
1117
1118         hLarger = hNormal + 50;
1119         hLarge = hNormal + 150;
1120         hLargest = hNormal + 250;
1121
1122         // height required to show track name
1123
1124         hSmall = 27;
1125 }
1126
1127 void
1128 TimeAxisView::show_name_label ()
1129 {
1130         if (!(name_packing & NameLabelPacked)) {
1131                 name_hbox.pack_start (name_label, true, true);
1132                 name_packing = NamePackingBits (name_packing | NameLabelPacked);
1133                 name_hbox.show ();
1134                 name_label.show ();
1135         }
1136 }
1137
1138 void
1139 TimeAxisView::show_name_entry ()
1140 {
1141         if (!(name_packing & NameEntryPacked)) {
1142                 name_hbox.pack_start (name_entry, true, true);
1143                 name_packing = NamePackingBits (name_packing | NameEntryPacked);
1144                 name_hbox.show ();
1145                 name_entry.show ();
1146         }
1147 }
1148
1149 void
1150 TimeAxisView::hide_name_label ()
1151 {
1152         if (name_packing & NameLabelPacked) {
1153                 name_hbox.remove (name_label);
1154                 name_packing = NamePackingBits (name_packing & ~NameLabelPacked);
1155         }
1156 }
1157
1158 void
1159 TimeAxisView::hide_name_entry ()
1160 {
1161         if (name_packing & NameEntryPacked) {
1162                 name_hbox.remove (name_entry);
1163                 name_packing = NamePackingBits (name_packing & ~NameEntryPacked);
1164         }
1165 }
1166
1167 void
1168 TimeAxisView::color_handler ()
1169 {
1170         for (list<GhostRegion*>::iterator i=ghosts.begin(); i != ghosts.end(); i++ ) {
1171                 (*i)->set_colors();
1172         }
1173
1174         for (list<SelectionRect*>::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) {
1175
1176                 (*i)->rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_SelectionRect.get();
1177                 (*i)->rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1178
1179                 (*i)->start_trim->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1180                 (*i)->start_trim->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1181
1182                 (*i)->end_trim->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1183                 (*i)->end_trim->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1184         }
1185
1186         for (list<SelectionRect*>::iterator i = free_selection_rects.begin(); i != free_selection_rects.end(); ++i) {
1187
1188                 (*i)->rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_SelectionRect.get();
1189                 (*i)->rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1190
1191                 (*i)->start_trim->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1192                 (*i)->start_trim->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1193
1194                 (*i)->end_trim->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1195                 (*i)->end_trim->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1196         }
1197 }
1198
1199 /** @return Pair: TimeAxisView, layer index.
1200  * TimeAxisView is non-0 if this object covers y, or one of its children does.
1201  * If the covering object is a child axis, then the child is returned.
1202  * TimeAxisView is 0 otherwise.
1203  * Layer index is the layer number if the TimeAxisView is valid and is in stacked
1204  * region display mode, otherwise 0.
1205  */
1206 std::pair<TimeAxisView*, layer_t>
1207 TimeAxisView::covers_y_position (double y)
1208 {
1209         if (hidden()) {
1210                 return std::make_pair ( (TimeAxisView *) 0, 0);
1211         }
1212
1213         if (_y_position <= y && y < (_y_position + height)) {
1214
1215                 /* work out the layer index if appropriate */
1216                 layer_t l = 0;
1217                 if (layer_display () == Stacked && view ()) {
1218                         /* compute layer */
1219                         l = layer_t ((_y_position + height - y) / (view()->child_height ()));
1220                         /* clamp to max layers to be on the safe side; sometimes the above calculation
1221                           returns a too-high value */
1222                         if (l >= view()->layers ()) {
1223                                 l = view()->layers() - 1;
1224                         }
1225                 }
1226
1227                 return std::make_pair (this, l);
1228         }
1229
1230         for (Children::const_iterator i = children.begin(); i != children.end(); ++i) {
1231
1232                 std::pair<TimeAxisView*, int> const r = (*i)->covers_y_position (y);
1233                 if (r.first) {
1234                         return r;
1235                 }
1236         }
1237
1238         return std::make_pair ( (TimeAxisView *) 0, 0);
1239 }
1240
1241 void
1242 TimeAxisView::show_feature_lines (const AnalysisFeatureList& pos)
1243 {
1244         analysis_features = pos;
1245         reshow_feature_lines ();
1246 }
1247
1248
1249 void
1250 TimeAxisView::hide_feature_lines ()
1251 {
1252         list<ArdourCanvas::SimpleLine*>::iterator l;
1253
1254         for (l = feature_lines.begin(); l != feature_lines.end(); ++l) {
1255                 (*l)->hide();
1256         }
1257 }
1258
1259 void
1260 TimeAxisView::reshow_feature_lines ()
1261 {
1262         while (feature_lines.size()< analysis_features.size()) {
1263                 ArdourCanvas::SimpleLine* l = new ArdourCanvas::SimpleLine (*_canvas_display);
1264                 l->property_color_rgba() = (guint) ARDOUR_UI::config()->canvasvar_ZeroLine.get();
1265                 feature_lines.push_back (l);
1266         }
1267
1268         while (feature_lines.size() > analysis_features.size()) {
1269                 ArdourCanvas::SimpleLine *line = feature_lines.back();
1270                 feature_lines.pop_back ();
1271                 delete line;
1272         }
1273
1274         AnalysisFeatureList::const_iterator i;
1275         list<ArdourCanvas::SimpleLine*>::iterator l;
1276
1277         for (i = analysis_features.begin(), l = feature_lines.begin(); i != analysis_features.end() && l != feature_lines.end(); ++i, ++l) {
1278                 (*l)->property_x1() = _editor.frame_to_pixel (*i);
1279                 (*l)->property_x2() = _editor.frame_to_pixel (*i);
1280                 (*l)->property_y1() = 0;
1281                 (*l)->property_y2() = current_height();
1282                 (*l)->show ();
1283         }
1284 }
1285
1286 bool
1287 TimeAxisView::resizer_button_press (GdkEventButton* event)
1288 {
1289         _resize_drag_start = event->y_root;
1290         return true;
1291 }
1292
1293 bool
1294 TimeAxisView::resizer_button_release (GdkEventButton*)
1295 {
1296         _resize_drag_start = -1;
1297         return true;
1298 }
1299
1300 void
1301 TimeAxisView::idle_resize (uint32_t h)
1302 {
1303         set_height (h);
1304 }
1305
1306 bool
1307 TimeAxisView::resizer_motion (GdkEventMotion* ev)
1308 {
1309         if (_resize_drag_start < 0) {
1310                 return true;
1311         }
1312
1313         int32_t const delta = (int32_t) floor (ev->y_root - _resize_drag_start);
1314         _editor.add_to_idle_resize (this, delta);
1315         _resize_drag_start = ev->y_root;
1316
1317         return true;
1318 }
1319
1320 bool
1321 TimeAxisView::resizer_expose (GdkEventExpose* event)
1322 {
1323         int w, h, x, y, d;
1324         Glib::RefPtr<Gdk::Window> win (resizer.get_window());
1325         Glib::RefPtr<Gdk::GC> dark (resizer.get_style()->get_fg_gc (STATE_NORMAL));
1326         Glib::RefPtr<Gdk::GC> light (resizer.get_style()->get_bg_gc (STATE_NORMAL));
1327
1328         win->draw_rectangle (controls_ebox.get_style()->get_bg_gc(STATE_NORMAL),
1329                         true,
1330                         event->area.x,
1331                         event->area.y,
1332                         event->area.width,
1333                         event->area.height);
1334
1335         win->get_geometry (x, y, w, h, d);
1336
1337         /* handle/line #1 */
1338
1339         win->draw_line (dark, 0, 0, w - 2, 0);
1340         win->draw_point (dark, 0, 1);
1341         win->draw_line (light, 1, 1, w - 1, 1);
1342         win->draw_point (light, w - 1, 0);
1343
1344         /* handle/line #2 */
1345
1346         win->draw_line (dark, 0, 4, w - 2, 4);
1347         win->draw_point (dark, 0, 5);
1348         win->draw_line (light, 1, 5, w - 1, 5);
1349         win->draw_point (light, w - 1, 4);
1350
1351         /* handle/line #3 */
1352
1353         win->draw_line (dark, 0, 8, w - 2, 8);
1354         win->draw_point (dark, 0, 9);
1355         win->draw_line (light, 1, 9, w - 1, 9);
1356         win->draw_point (light, w - 1, 8);
1357
1358         return true;
1359 }
1360
1361 bool
1362 TimeAxisView::set_visibility (bool yn)
1363 {
1364         if (yn != marked_for_display()) {
1365                 if (yn) {
1366                         set_marked_for_display (true);
1367                         canvas_display()->show();
1368                 } else {
1369                         set_marked_for_display (false);
1370                         hide ();
1371                 }
1372                 return true; // things changed
1373         }
1374         
1375         return false;
1376 }