Reinstate mouse scroll actions (audio clocks, shuttle wheel, faders), clearing select...
[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     $Id$
19 */
20
21 #include <cstdlib>
22 #include <cmath>
23 #include <algorithm>
24 #include <string>
25 #include <list>
26
27 #include <libgnomecanvasmm.h>
28 #include <libgnomecanvasmm/canvas.h>
29 #include <libgnomecanvasmm/item.h>
30
31 #include <pbd/error.h>
32
33 #include <gtkmm2ext/utils.h>
34 #include <gtkmm2ext/selector.h>
35 #include <gtkmm2ext/stop_signal.h>
36
37 #include <ardour/session.h>
38 #include <ardour/utils.h>
39 #include <ardour/ladspa_plugin.h>
40 #include <ardour/insert.h>
41 #include <ardour/location.h>
42
43 #include "ardour_ui.h"
44 #include "public_editor.h"
45 #include "time_axis_view.h"
46 #include "simplerect.h"
47 #include "selection.h"
48 #include "keyboard.h"
49 #include "rgb_macros.h"
50 #include "utils.h"
51
52 #include "i18n.h"
53
54 using namespace Gtk;
55 using namespace Gdk;
56 using namespace sigc; 
57 using namespace ARDOUR;
58 using namespace Editing;
59 using namespace ArdourCanvas;
60
61 const double trim_handle_size = 6.0; /* pixels */
62
63 uint32_t TimeAxisView::hLargest = 0;
64 uint32_t TimeAxisView::hLarge = 0;
65 uint32_t TimeAxisView::hLarger = 0;
66 uint32_t TimeAxisView::hNormal = 0;
67 uint32_t TimeAxisView::hSmaller = 0;
68 uint32_t TimeAxisView::hSmall = 0;
69 bool TimeAxisView::need_size_info = true;
70
71 TimeAxisView::TimeAxisView (ARDOUR::Session& sess, PublicEditor& ed, TimeAxisView* rent, Canvas& canvas) 
72         : AxisView (sess), 
73           editor (ed),
74           controls_table (2, 8)
75 {
76         if (need_size_info) {
77                 compute_controls_size_info ();
78                 need_size_info = false;
79         }
80
81         canvas_display = new Group (*canvas.root(), 0.0, 0.0);
82         
83         selection_group = new Group (*canvas_display);
84         selection_group->hide();
85         
86         control_parent = 0;
87         display_menu = 0;
88         size_menu = 0;
89         _marked_for_display = false;
90         _hidden = false;
91         height = 0;
92         effective_height = 0;
93         parent = rent;
94         _has_state = false;
95         last_name_entry_key_press_event = 0;
96         name_packing = NamePackingBits (0);
97
98         /*
99           Create the standard LHS Controls
100           We create the top-level container and name add the name label here,
101           subclasses can add to the layout as required
102         */
103
104         name_entry.set_name ("EditorTrackNameDisplay");
105         name_entry.signal_button_release_event().connect (mem_fun (*this, &TimeAxisView::name_entry_button_release));
106         name_entry.signal_button_press_event().connect (mem_fun (*this, &TimeAxisView::name_entry_button_press));
107         name_entry.signal_key_release_event().connect (mem_fun (*this, &TimeAxisView::name_entry_key_release));
108         name_entry.signal_activate().connect (mem_fun(*this, &TimeAxisView::name_entry_activated));
109         name_entry.signal_focus_in_event().connect (mem_fun (*this, &TimeAxisView::name_entry_focus_in));
110         name_entry.signal_focus_out_event().connect (mem_fun (*this, &TimeAxisView::name_entry_focus_out));
111         Gtkmm2ext::set_size_request_to_display_given_text (name_entry, N_("gTortnam"), 10, 10); // just represents a short name
112
113         name_label.set_name ("TrackLabel");
114         name_label.set_alignment (0.0, 0.5);
115
116         /* typically, either name_label OR name_entry are visible,
117            but not both. its up to derived classes to show/hide them as they
118            wish.
119         */
120
121         name_hbox.show ();
122
123         controls_table.set_border_width (2);
124         controls_table.set_row_spacings (0);
125         controls_table.set_col_spacings (0);
126         controls_table.set_homogeneous (true);
127
128         controls_table.attach (name_hbox, 0, 4, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
129         controls_table.show_all ();
130
131         controls_vbox.pack_start (controls_table, false, false);
132         controls_vbox.show ();
133
134         controls_ebox.set_name ("TimeAxisViewControlsBaseUnselected");
135         controls_ebox.add (controls_vbox);
136         controls_ebox.add_events (BUTTON_PRESS_MASK|BUTTON_RELEASE_MASK|SCROLL_MASK);
137         controls_ebox.set_flags (CAN_FOCUS);
138
139         controls_ebox.signal_button_release_event().connect (mem_fun (*this, &TimeAxisView::controls_ebox_button_release));
140         controls_ebox.signal_scroll_event().connect (mem_fun (*this, &TimeAxisView::controls_ebox_scroll), true);
141
142         controls_lhs_pad.set_name ("TimeAxisViewControlsPadding");
143         controls_hbox.pack_start (controls_lhs_pad,false,false);
144         controls_hbox.pack_start (controls_ebox,true,true);
145         controls_hbox.show ();
146
147         controls_frame.add (controls_hbox);
148         controls_frame.set_name ("TimeAxisViewControlsBaseUnselected");
149         controls_frame.set_shadow_type (Gtk::SHADOW_OUT);
150
151         ColorChanged.connect (mem_fun (*this, &TimeAxisView::color_handler));
152 }
153
154 TimeAxisView::~TimeAxisView()
155 {
156         for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
157                 delete *i;
158         }
159
160         for (list<SelectionRect*>::iterator i = free_selection_rects.begin(); i != free_selection_rects.end(); ++i) {
161                 delete (*i)->rect;
162                 delete (*i)->start_trim;
163                 delete (*i)->end_trim;
164
165         }
166
167         for (list<SelectionRect*>::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) {
168                 delete (*i)->rect;
169                 delete (*i)->start_trim;
170                 delete (*i)->end_trim;
171         }
172
173         if (selection_group) {
174                 delete selection_group;
175                 selection_group = 0;
176         }
177
178         if (canvas_display) {
179                 delete canvas_display;
180                 canvas_display = 0;
181         }
182
183         if (display_menu) {
184                 delete display_menu;
185                 display_menu = 0;
186         }
187 }
188
189 guint32
190 TimeAxisView::show_at (double y, int& nth, VBox *parent)
191 {
192         gdouble ix1, ix2, iy1, iy2;
193         effective_height = 0;
194         
195         if (control_parent) {
196                 control_parent->reorder_child (controls_frame, nth);
197         } else {
198                 control_parent = parent;
199                 parent->pack_start (controls_frame, false, false);
200                 parent->reorder_child (controls_frame, nth);
201         }
202         controls_frame.show ();
203         controls_ebox.show ();
204         
205         /* the coordinates used here are in the system of the
206            item's parent ...
207         */
208
209         canvas_display->get_bounds (ix1, iy1, ix2, iy2);
210         Group* pg = canvas_display->property_parent();
211         pg->i2w (ix1, iy1);
212
213         if (iy1 < 0) {
214                 iy1 = 0;
215         }
216
217         canvas_display->move (0.0, y - iy1);
218         canvas_display->show();/* XXX not necessary */
219         y_position = y;
220         order = nth;
221         _hidden = false;
222         
223         effective_height = height;
224
225         /* now show children */
226         
227         for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
228                 
229                 if ((*i)->marked_for_display()) {
230                         (*i)->canvas_display->show();
231                 }
232                 
233                 if (canvas_item_visible ((*i)->canvas_display)) {
234                         ++nth;
235                         effective_height += (*i)->show_at (y + effective_height, nth, parent);
236                 }
237         }
238
239         return effective_height;
240 }
241
242 bool
243 TimeAxisView::controls_ebox_scroll (GdkEventScroll* ev)
244 {
245         switch (ev->direction) {
246         case GDK_SCROLL_UP:
247                 if (Keyboard::modifier_state_equals (ev->state, Keyboard::Shift)) {
248                         step_height (true);
249                         return true;
250                 }
251                 break;
252                 
253         case GDK_SCROLL_DOWN:
254                 if (Keyboard::modifier_state_equals (ev->state, Keyboard::Shift)) {
255                         step_height (false);
256                         return true;
257                 }
258                 break;
259
260         default:
261                 /* no handling for left/right, yet */
262                 break;
263         }
264
265         return false;
266 }
267
268 bool
269 TimeAxisView::controls_ebox_button_release (GdkEventButton* ev)
270 {
271         switch (ev->button) {
272         case 1:
273                 selection_click (ev);
274                 break;
275
276         case 3:
277                 popup_display_menu (ev->time);
278                 break;
279         }
280
281         return true;
282 }
283
284 void
285 TimeAxisView::selection_click (GdkEventButton* ev)
286 {
287         if (Keyboard::modifier_state_contains (ev->state, Keyboard::Shift)) {
288
289                 if (editor.get_selection().selected (this)) {
290                         editor.get_selection().remove (this);
291                 } else {
292                         editor.get_selection().add (this);
293                 }
294
295         } else {
296
297                 editor.get_selection().set (this);
298         }
299 }
300
301 void
302 TimeAxisView::hide ()
303 {
304         if (_hidden) {
305                 return;
306         }
307
308         canvas_display->hide();
309         controls_frame.hide ();
310
311         if (control_parent) {
312                 control_parent->remove (controls_frame);
313                 control_parent = 0;
314         }
315
316         y_position = -1;
317         _hidden = true;
318         
319         /* now hide children */
320         
321         for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
322                 (*i)->hide ();
323         }
324         
325         Hiding ();
326 }
327
328 void
329 TimeAxisView::step_height (bool bigger)
330 {
331   
332        if (height == hLargest) {
333                if (!bigger) set_height (Large);
334                return;
335        }
336        if (height == hLarge) {
337                if (bigger) set_height (Largest);
338                 else set_height (Larger);
339                return;
340        }
341        if (height == hLarger) {
342                 if (bigger) set_height (Large);
343                 else set_height (Normal);
344                return;
345        }
346        if (height == hNormal) {
347                 if (bigger) set_height (Larger);
348                 else set_height (Smaller);
349                return;
350        }
351        if (height == hSmaller) {
352                 if (bigger) set_height (Normal);
353                 else set_height (Small);
354                return;
355        }
356        if (height == hSmall) {
357                 if (bigger) set_height (Smaller);
358                return;
359        }
360 }
361
362 void
363 TimeAxisView::set_height (TrackHeight h)
364 {
365         height_style = h;
366         set_height_pixels (height_to_pixels (h));
367 }
368
369 void
370 TimeAxisView::set_height_pixels (uint32_t h)
371 {
372         height = h;
373         controls_frame.set_size_request (-1, height);
374
375         if (canvas_item_visible (selection_group)) {
376                 /* resize the selection rect */
377                 show_selection (editor.get_selection().time);
378         }
379 }
380
381 bool
382 TimeAxisView::name_entry_key_release (GdkEventKey* ev)
383 {
384         switch (ev->keyval) {
385         case GDK_Tab:
386         case GDK_Up:
387         case GDK_Down:
388                 name_entry_changed ();
389                 return true;
390
391         default:
392                 break;
393         }
394
395 #ifdef TIMEOUT_NAME_EDIT        
396         /* adapt the timeout to reflect the user's typing speed */
397
398         guint32 name_entry_timeout;
399
400         if (last_name_entry_key_press_event) {
401                 /* timeout is 1/2 second or 5 times their current inter-char typing speed */
402                 name_entry_timeout = std::max (500U, (5 * (ev->time - last_name_entry_key_press_event)));
403         } else {
404                 /* start with a 1 second timeout */
405                 name_entry_timeout = 1000;
406         }
407
408         last_name_entry_key_press_event = ev->time;
409
410         /* wait 1 seconds and if no more keys are pressed, act as if they pressed enter */
411
412         name_entry_key_timeout.disconnect();
413         name_entry_key_timeout = Glib::signal_timeout().connect (mem_fun (*this, &TimeAxisView::name_entry_key_timed_out), name_entry_timeout);
414 #endif
415
416         return false;
417 }
418
419 bool
420 TimeAxisView::name_entry_focus_in (GdkEventFocus* ev)
421 {
422         name_entry.select_region (0, -1);
423         name_entry.set_name ("EditorActiveTrackNameDisplay");
424         return false;
425 }
426
427 bool
428 TimeAxisView::name_entry_focus_out (GdkEventFocus* ev)
429 {
430         /* clean up */
431
432         last_name_entry_key_press_event = 0;
433         name_entry_key_timeout.disconnect ();
434         name_entry.set_name ("EditorTrackNameDisplay");
435         
436         /* do the real stuff */
437
438         name_entry_changed ();
439
440         return false;
441 }
442
443 bool
444 TimeAxisView::name_entry_key_timed_out ()
445 {
446         name_entry_activated();
447         return false;
448 }
449
450 void
451 TimeAxisView::name_entry_activated ()
452 {
453         controls_ebox.grab_focus();
454 }
455
456 void
457 TimeAxisView::name_entry_changed ()
458 {
459 }
460
461 bool
462 TimeAxisView::name_entry_button_press (GdkEventButton *ev)
463 {
464         if (ev->button == 3) {
465                 return true;
466         }
467         return false;
468 }
469
470 bool
471 TimeAxisView::name_entry_button_release (GdkEventButton *ev)
472 {
473         if (ev->button == 3) {
474                 popup_display_menu (ev->time);
475                 return true;
476         }
477         return false;
478 }
479
480 void
481 TimeAxisView::popup_display_menu (guint32 when)
482 {
483         if (display_menu == 0) {
484                 build_display_menu ();
485         }
486         display_menu->popup (1, when);  
487 }
488
489 gint
490 TimeAxisView::size_click (GdkEventButton *ev)
491 {
492         popup_size_menu (ev->time);
493         return TRUE;
494 }
495
496 void
497 TimeAxisView::popup_size_menu (guint32 when)
498 {
499         if (size_menu == 0) {
500                 build_size_menu ();
501         }
502         size_menu->popup (1, when);
503 }
504
505 void
506 TimeAxisView::set_selected (bool yn)
507 {
508         AxisView::set_selected (yn);
509
510         if (_selected) {
511                 controls_ebox.set_name (controls_base_selected_name);
512                 controls_frame.set_name (controls_base_selected_name);
513
514                 /* propagate any existing selection, if the mode is right */
515
516                 if (editor.current_mouse_mode() == Editing::MouseRange && !editor.get_selection().time.empty()) {
517                         show_selection (editor.get_selection().time);
518                 }
519
520         } else {
521                 controls_ebox.set_name (controls_base_unselected_name);
522                 controls_frame.set_name (controls_base_unselected_name);
523
524                 hide_selection ();
525
526                 /* children will be set for the yn=true case. but when deselecting
527                    the editor only has a list of top-level trackviews, so we
528                    have to do this here.
529                 */
530
531                 for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
532                         (*i)->set_selected (false);
533                 }
534
535                 
536         }
537 }
538
539 void
540 TimeAxisView::build_size_menu ()
541 {
542         using namespace Menu_Helpers;
543
544         size_menu = new Menu;
545         size_menu->set_name ("ArdourContextMenu");
546         MenuList& items = size_menu->items();
547         
548         items.push_back (MenuElem (_("Largest"), bind (mem_fun (*this, &TimeAxisView::set_height), Largest)));
549         items.push_back (MenuElem (_("Large"), bind (mem_fun (*this, &TimeAxisView::set_height), Large)));
550         items.push_back (MenuElem (_("Larger"), bind (mem_fun (*this, &TimeAxisView::set_height), Larger)));
551         items.push_back (MenuElem (_("Normal"), bind (mem_fun (*this, &TimeAxisView::set_height), Normal)));
552         items.push_back (MenuElem (_("Smaller"), bind (mem_fun (*this, &TimeAxisView::set_height),Smaller)));
553         items.push_back (MenuElem (_("Small"), bind (mem_fun (*this, &TimeAxisView::set_height), Small)));
554 }
555
556 void
557 TimeAxisView::build_display_menu ()
558 {
559         using namespace Menu_Helpers;
560
561         display_menu = new Menu;
562         display_menu->set_name ("ArdourContextMenu");
563
564         // Just let implementing classes define what goes into the manu
565 }
566
567 void
568 TimeAxisView::set_samples_per_unit (double spu)
569 {
570         for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
571                 (*i)->set_samples_per_unit (spu);
572         }
573 }
574
575 void
576 TimeAxisView::show_timestretch (jack_nframes_t start, jack_nframes_t end)
577 {
578         for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
579                 (*i)->show_timestretch (start, end);
580         }
581 }
582
583 void
584 TimeAxisView::hide_timestretch ()
585 {
586         for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
587                 (*i)->hide_timestretch ();
588         }
589 }
590
591 void
592 TimeAxisView::show_selection (TimeSelection& ts)
593 {
594         double x1;
595         double x2;
596         double y2;
597         SelectionRect *rect;
598
599         for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
600                 (*i)->show_selection (ts);
601         }
602
603         if (canvas_item_visible (selection_group)) {
604                 while (!used_selection_rects.empty()) {
605                         free_selection_rects.push_front (used_selection_rects.front());
606                         used_selection_rects.pop_front();
607                         free_selection_rects.front()->rect->hide();
608                         free_selection_rects.front()->start_trim->hide();
609                         free_selection_rects.front()->end_trim->hide();
610                 }
611                 selection_group->hide();
612         }
613
614         selection_group->show();
615         selection_group->raise_to_top();
616         
617         for (list<AudioRange>::iterator i = ts.begin(); i != ts.end(); ++i) {
618                 jack_nframes_t start, end, cnt;
619
620                 start = (*i).start;
621                 end = (*i).end;
622                 cnt = end - start + 1;
623
624                 rect = get_selection_rect ((*i).id);
625                 
626                 x1 = editor.frame_to_unit (start);
627                 x2 = editor.frame_to_unit (start + cnt - 1);
628                 y2 = height;
629
630                 rect->rect->property_x1() = x1;
631                 rect->rect->property_y1() = 1.0;
632                 rect->rect->property_x2() = x2;
633                 rect->rect->property_y2() = y2;
634                 
635                 // trim boxes are at the top for selections
636                 
637                 if (x2 > x1) {
638                         rect->start_trim->property_x1() = x1;
639                         rect->start_trim->property_y1() = 1.0;
640                         rect->start_trim->property_x2() = x1 + trim_handle_size;
641                         rect->start_trim->property_y2() = 1.0 + trim_handle_size;
642
643                         rect->end_trim->property_x1() = x2 - trim_handle_size;
644                         rect->end_trim->property_y1() = 1.0;
645                         rect->end_trim->property_x2() = x2;
646                         rect->end_trim->property_y2() = 1.0 + trim_handle_size;
647
648                         rect->start_trim->show();
649                         rect->end_trim->show();
650                 } else {
651                         rect->start_trim->hide();
652                         rect->end_trim->hide();
653                 }
654
655                 rect->rect->show ();
656                 used_selection_rects.push_back (rect);
657         }
658 }
659
660 void
661 TimeAxisView::reshow_selection (TimeSelection& ts)
662 {
663         cerr << name() << ": reshow selection" << endl;
664
665         show_selection (ts);
666
667         for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
668                 (*i)->show_selection (ts);
669         }
670 }
671
672 void
673 TimeAxisView::hide_selection ()
674 {
675         if (canvas_item_visible (selection_group)) {
676                 while (!used_selection_rects.empty()) {
677                         free_selection_rects.push_front (used_selection_rects.front());
678                         used_selection_rects.pop_front();
679                         free_selection_rects.front()->rect->hide();
680                         free_selection_rects.front()->start_trim->hide();
681                         free_selection_rects.front()->end_trim->hide();
682                 }
683                 selection_group->hide();
684         }
685         
686         for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
687                 (*i)->hide_selection ();
688         }
689 }
690
691 void
692 TimeAxisView::order_selection_trims (ArdourCanvas::Item *item, bool put_start_on_top)
693 {
694         /* find the selection rect this is for. we have the item corresponding to one
695            of the trim handles.
696          */
697
698         for (list<SelectionRect*>::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) {
699                 if ((*i)->start_trim == item || (*i)->end_trim == item) {
700                         
701                         /* make one trim handle be "above" the other so that if they overlap,
702                            the top one is the one last used.
703                         */
704                         
705                         (*i)->rect->raise_to_top ();
706                         (put_start_on_top ? (*i)->start_trim : (*i)->end_trim)->raise_to_top ();
707                         (put_start_on_top ? (*i)->end_trim : (*i)->start_trim)->raise_to_top ();
708                         
709                         break;
710                 }
711         }
712 }
713
714 SelectionRect *
715 TimeAxisView::get_selection_rect (uint32_t id)
716 {
717         SelectionRect *rect;
718
719         /* check to see if we already have a visible rect for this particular selection ID */
720
721         for (list<SelectionRect*>::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) {
722                 if ((*i)->id == id) {
723                         return (*i);
724                 }
725         }
726
727         /* ditto for the free rect list */
728
729         for (list<SelectionRect*>::iterator i = free_selection_rects.begin(); i != free_selection_rects.end(); ++i) {
730                 if ((*i)->id == id) {
731                         free_selection_rects.erase (i);
732                         return (*i);
733                 }
734         }
735
736         /* no existing matching rect, so go get a new one from the free list, or create one if there are none */
737         
738         if (free_selection_rects.empty()) {
739
740                 rect = new SelectionRect;
741
742                 rect->rect = new SimpleRect (*selection_group);
743                 rect->rect->property_x1() = 0.0;
744                 rect->rect->property_y1() = 0.0;
745                 rect->rect->property_x2() = 0.0;
746                 rect->rect->property_y2() = 0.0;
747                 rect->rect->property_fill_color_rgba() = color_map[cSelectionRectFill];
748                 rect->rect->property_outline_color_rgba() = color_map[cSelectionRectOutline];
749                 
750                 rect->start_trim = new SimpleRect (*selection_group);
751                 rect->start_trim->property_x1() = 0.0;
752                 rect->start_trim->property_x2() = 0.0;
753                 rect->start_trim->property_fill_color_rgba() = color_map[cSelectionStartFill];
754                 rect->start_trim->property_outline_color_rgba() = color_map[cSelectionStartOutline];
755                 
756                 rect->end_trim = new SimpleRect (*selection_group);
757                 rect->end_trim->property_x1() = 0.0;
758                 rect->end_trim->property_x2() = 0.0;
759                 rect->end_trim->property_fill_color_rgba() = color_map[cSelectionEndFill];
760                 rect->end_trim->property_outline_color_rgba() = color_map[cSelectionEndOutline];
761
762                 free_selection_rects.push_front (rect);
763
764                 rect->rect->signal_event().connect (bind (mem_fun (editor, &PublicEditor::canvas_selection_rect_event), rect->rect, rect));
765                 rect->start_trim->signal_event().connect (bind (mem_fun (editor, &PublicEditor::canvas_selection_start_trim_event), rect->rect, rect));
766                 rect->end_trim->signal_event().connect (bind (mem_fun (editor, &PublicEditor::canvas_selection_end_trim_event), rect->rect, rect));
767         } 
768
769         rect = free_selection_rects.front();
770         rect->id = id;
771         free_selection_rects.pop_front();
772         return rect;
773 }
774
775 bool
776 TimeAxisView::is_child (TimeAxisView* tav)
777 {
778         return find (children.begin(), children.end(), tav) != children.end();
779 }
780
781 void
782 TimeAxisView::add_child (TimeAxisView* child)
783 {
784         children.push_back (child);
785 }
786
787 void
788 TimeAxisView::remove_child (TimeAxisView* child)
789 {
790         vector<TimeAxisView*>::iterator i;
791
792         if ((i = find (children.begin(), children.end(), child)) != children.end()) {
793                 children.erase (i);
794         }
795 }
796
797 void
798 TimeAxisView::get_selectables (jack_nframes_t start, jack_nframes_t end, double top, double bot, list<Selectable*>& result)
799 {
800         return;
801 }
802
803 void
804 TimeAxisView::get_inverted_selectables (Selection& sel, list<Selectable*>& result)
805 {
806         return;
807 }
808
809 bool
810 TimeAxisView::touched (double top, double bot)
811 {
812         /* remember: this is X Window - coordinate space starts in upper left and moves down.
813            y_position is the "origin" or "top" of the track.
814          */
815
816         double mybot = y_position + height; // XXX need to include Editor::track_spacing; 
817         
818         return ((y_position <= bot && y_position >= top) || 
819                 ((mybot <= bot) && (top < mybot)) || 
820                 (mybot >= bot && y_position < top));
821 }               
822
823 void
824 TimeAxisView::set_parent (TimeAxisView& p)
825 {
826         parent = &p;
827 }
828
829 bool
830 TimeAxisView::has_state () const
831 {
832         return _has_state;
833 }
834
835 TimeAxisView*
836 TimeAxisView::get_parent_with_state ()
837 {
838         if (parent == 0) {
839                 return 0;
840         }
841
842         if (parent->has_state()) {
843                 return parent;
844         } 
845
846         return parent->get_parent_with_state ();
847 }               
848
849 void
850 TimeAxisView::set_state (const XMLNode& node)
851 {
852         const XMLProperty *prop;
853
854         if ((prop = node.property ("track_height")) != 0) {
855
856                 if (prop->value() == "largest") {
857                         set_height (Largest);
858                 } else if (prop->value() == "large") {
859                         set_height (Large);
860                 } else if (prop->value() == "larger") {
861                         set_height (Larger);
862                 } else if (prop->value() == "normal") {
863                         set_height (Normal);
864                 } else if (prop->value() == "smaller") {
865                         set_height (Smaller);
866                 } else if (prop->value() == "small") {
867                         set_height (Small);
868                 } else {
869                         error << string_compose(_("unknown track height name \"%1\" in XML GUI information"), prop->value()) << endmsg;
870                         set_height (Normal);
871                 }
872
873         } else {
874                 set_height (Normal);
875         }
876 }
877
878 void
879 TimeAxisView::reset_height()
880 {
881         set_height_pixels (height);
882
883         for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
884                 (*i)->set_height ((TrackHeight)(*i)->height);
885         }
886 }
887         
888 uint32_t
889 TimeAxisView::height_to_pixels (TrackHeight h)
890 {
891         switch (h) {
892         case Largest:
893                 return hLargest;
894         case Large:
895                 return hLarge;
896         case Larger:
897                 return hLarger;
898         case Normal:
899                 return hNormal;
900         case Smaller:
901                 return hSmaller;
902         case Small:
903                 return hSmall;
904         }
905         
906         // what is wrong with gcc ?
907         
908         return hNormal;
909 }
910                         
911 void
912 TimeAxisView::compute_controls_size_info ()
913 {
914         Gtk::Window window (Gtk::WINDOW_TOPLEVEL);
915         Gtk::Table two_row_table (2, 8);
916         Gtk::Table one_row_table (1, 8);
917         Button* buttons[5];
918         const int border_width = 2;
919         const int extra_height = (2 * border_width) + 2; // 2 pixels for the controls frame
920
921         window.add (one_row_table);
922
923         one_row_table.set_border_width (border_width);
924         one_row_table.set_row_spacings (0);
925         one_row_table.set_col_spacings (0);
926         one_row_table.set_homogeneous (true);
927
928         two_row_table.set_border_width (border_width);
929         two_row_table.set_row_spacings (0);
930         two_row_table.set_col_spacings (0);
931         two_row_table.set_homogeneous (true);
932
933         for (int i = 0; i < 5; ++i) {
934                 buttons[i] = manage (new Button (X_("f")));
935                 buttons[i]->set_name ("TrackMuteButton");
936         }
937
938         Gtk::Requisition req;
939
940         one_row_table.attach (*buttons[0], 6, 7, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
941         
942         one_row_table.show_all ();
943         one_row_table.size_request (req);
944
945
946         // height required to show 1 row of buttons
947
948         hSmaller = req.height + extra_height;
949
950         window.remove ();
951         window.add (two_row_table);
952
953         two_row_table.attach (*buttons[1], 5, 6, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
954         two_row_table.attach (*buttons[2], 6, 7, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
955         two_row_table.attach (*buttons[3], 7, 8, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
956         two_row_table.attach (*buttons[4], 8, 9, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
957
958         two_row_table.show_all ();
959         two_row_table.size_request (req);
960
961         // height required to show all normal buttons 
962
963         hNormal = req.height + extra_height;
964
965         // these heights are all just larger than normal. no more 
966         // elements are visible (yet).
967
968         hLarger = hNormal + 50;
969         hLarge = hNormal + 150;
970         hLargest = hNormal + 250;
971
972         // height required to show track name
973
974         hSmall = 27;
975 }
976
977 void
978 TimeAxisView::show_name_label ()
979 {
980         if (!(name_packing & NameLabelPacked)) {
981                 name_hbox.pack_start (name_label, true, true);
982                 name_packing = NamePackingBits (name_packing | NameLabelPacked);
983                 name_hbox.show ();
984                 name_label.show ();
985         }
986 }
987
988 void
989 TimeAxisView::show_name_entry ()
990 {
991         if (!(name_packing & NameEntryPacked)) {
992                 name_hbox.pack_start (name_entry, true, true);
993                 name_packing = NamePackingBits (name_packing | NameEntryPacked);
994                 name_hbox.show ();
995                 name_entry.show ();
996         }
997 }
998
999 void
1000 TimeAxisView::hide_name_label ()
1001 {
1002         if (name_packing & NameLabelPacked) {
1003                 name_hbox.remove (name_label);
1004                 name_packing = NamePackingBits (name_packing & ~NameLabelPacked);
1005         }
1006 }
1007
1008 void
1009 TimeAxisView::hide_name_entry ()
1010 {
1011         if (name_packing & NameEntryPacked) {
1012                 name_hbox.remove (name_entry);
1013                 name_packing = NamePackingBits (name_packing & ~NameEntryPacked);
1014         }
1015 }
1016
1017 void
1018 TimeAxisView::color_handler (ColorID id, uint32_t val)
1019 {
1020         switch (id) {
1021         case cSelectionRectFill:
1022                 break;
1023         case cSelectionRectOutline:
1024                 break;
1025         case cSelectionStartFill:
1026                 break;
1027         case cSelectionStartOutline:
1028                 break;
1029         case cSelectionEndFill:
1030                 break;
1031         case cSelectionEndOutline:
1032                 break;
1033         default:
1034                 break;
1035         }
1036 }