changes associated with save/restore of AutomationControl id's
[ardour2.git] / gtk2_ardour / time_axis_view.cc
blobb93831f69f0c3df278dff9bdb0ce3495d2343409
1 /*
2 Copyright (C) 2000 Paul Davis
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #include <cstdlib>
21 #include <cmath>
22 #include <algorithm>
23 #include <string>
24 #include <list>
26 #include <libgnomecanvasmm.h>
27 #include <libgnomecanvasmm/canvas.h>
28 #include <libgnomecanvasmm/item.h>
30 #include "pbd/error.h"
31 #include "pbd/convert.h"
33 #include <gtkmm2ext/utils.h>
34 #include <gtkmm2ext/selector.h>
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"
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 #include "editor_drag.h"
57 #include "i18n.h"
59 using namespace std;
60 using namespace Gtk;
61 using namespace Gdk;
62 using namespace ARDOUR;
63 using namespace PBD;
64 using namespace Editing;
65 using namespace ArdourCanvas;
66 using Gtkmm2ext::Keyboard;
68 const double trim_handle_size = 6.0; /* pixels */
69 uint32_t TimeAxisView::extra_height;
70 uint32_t TimeAxisView::smaller_height;
71 int const TimeAxisView::_max_order = 512;
72 PBD::Signal1<void,TimeAxisView*> TimeAxisView::CatchDeletion;
74 TimeAxisView::TimeAxisView (ARDOUR::Session* sess, PublicEditor& ed, TimeAxisView* rent, Canvas& /*canvas*/)
75 : AxisView (sess),
76 controls_table (2, 8),
77 _y_position (0),
78 _editor (ed),
79 _order (0)
81 if (extra_height == 0) {
82 compute_heights ();
85 _canvas_background = new Group (*ed.get_background_group (), 0.0, 0.0);
86 _canvas_display = new Group (*ed.get_trackview_group (), 0.0, 0.0);
87 _canvas_display->hide(); // reveal as needed
89 selection_group = new Group (*_canvas_display);
90 selection_group->set_data (X_("timeselection"), (void *) 1);
91 selection_group->hide();
93 _ghost_group = new Group (*_canvas_display);
94 _ghost_group->lower_to_bottom();
95 _ghost_group->show();
97 control_parent = 0;
98 display_menu = 0;
99 _hidden = false;
100 in_destructor = false;
101 height = 0;
102 _effective_height = 0;
103 parent = rent;
104 _has_state = false;
105 last_name_entry_key_press_event = 0;
106 name_packing = NamePackingBits (0);
107 _resize_drag_start = -1;
110 Create the standard LHS Controls
111 We create the top-level container and name add the name label here,
112 subclasses can add to the layout as required
115 name_entry.set_name ("EditorTrackNameDisplay");
116 name_entry.signal_button_release_event().connect (sigc::mem_fun (*this, &TimeAxisView::name_entry_button_release));
117 name_entry.signal_button_press_event().connect (sigc::mem_fun (*this, &TimeAxisView::name_entry_button_press));
118 name_entry.signal_key_release_event().connect (sigc::mem_fun (*this, &TimeAxisView::name_entry_key_release));
119 name_entry.signal_activate().connect (sigc::mem_fun(*this, &TimeAxisView::name_entry_activated));
120 name_entry.signal_focus_in_event().connect (sigc::mem_fun (*this, &TimeAxisView::name_entry_focus_in));
121 name_entry.signal_focus_out_event().connect (sigc::mem_fun (*this, &TimeAxisView::name_entry_focus_out));
122 Gtkmm2ext::set_size_request_to_display_given_text (name_entry, N_("gTortnam"), 10, 10); // just represents a short name
124 name_label.set_name ("TrackLabel");
125 name_label.set_alignment (0.0, 0.5);
127 /* typically, either name_label OR name_entry are visible,
128 but not both. its up to derived classes to show/hide them as they
129 wish.
132 name_hbox.show ();
134 controls_table.set_size_request (200);
135 controls_table.set_border_width (2);
136 controls_table.set_row_spacings (0);
137 controls_table.set_col_spacings (0);
138 controls_table.set_homogeneous (true);
140 controls_table.attach (name_hbox, 0, 5, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 3, 0);
141 controls_table.show_all ();
142 controls_table.set_no_show_all ();
144 resizer.set_size_request (10, 6);
145 resizer.set_name ("ResizeHandle");
146 resizer.signal_expose_event().connect (sigc::mem_fun (*this, &TimeAxisView::resizer_expose));
147 resizer.signal_button_press_event().connect (sigc::mem_fun (*this, &TimeAxisView::resizer_button_press));
148 resizer.signal_button_release_event().connect (sigc::mem_fun (*this, &TimeAxisView::resizer_button_release));
149 resizer.signal_motion_notify_event().connect (sigc::mem_fun (*this, &TimeAxisView::resizer_motion));
151 resizer.set_events (Gdk::BUTTON_PRESS_MASK|
152 Gdk::BUTTON_RELEASE_MASK|
153 Gdk::POINTER_MOTION_MASK|
154 Gdk::SCROLL_MASK);
156 resizer_box.pack_start (resizer, false, false);
157 resizer.show ();
158 resizer_box.show();
160 HSeparator* separator = manage (new HSeparator());
162 controls_vbox.pack_start (controls_table, false, false);
163 controls_vbox.pack_end (resizer_box, false, false);
164 controls_vbox.show ();
166 //controls_ebox.set_name ("TimeAxisViewControlsBaseUnselected");
167 controls_ebox.add (controls_vbox);
168 controls_ebox.add_events (BUTTON_PRESS_MASK|BUTTON_RELEASE_MASK|SCROLL_MASK);
169 controls_ebox.set_flags (CAN_FOCUS);
171 controls_ebox.signal_button_release_event().connect (sigc::mem_fun (*this, &TimeAxisView::controls_ebox_button_release));
172 controls_ebox.signal_scroll_event().connect (sigc::mem_fun (*this, &TimeAxisView::controls_ebox_scroll), true);
174 controls_hbox.pack_start (controls_ebox, false, false);
175 controls_hbox.show ();
177 time_axis_vbox.pack_start (controls_hbox, true, true);
178 time_axis_vbox.pack_end (*separator, false, false);
179 time_axis_vbox.show();
181 ColorsChanged.connect (sigc::mem_fun (*this, &TimeAxisView::color_handler));
183 GhostRegion::CatchDeletion.connect (*this, invalidator (*this), ui_bind (&TimeAxisView::erase_ghost, this, _1), gui_context());
186 TimeAxisView::~TimeAxisView()
188 in_destructor = true;
190 for (list<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
191 delete *i;
194 for (list<SelectionRect*>::iterator i = free_selection_rects.begin(); i != free_selection_rects.end(); ++i) {
195 delete (*i)->rect;
196 delete (*i)->start_trim;
197 delete (*i)->end_trim;
201 for (list<SelectionRect*>::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) {
202 delete (*i)->rect;
203 delete (*i)->start_trim;
204 delete (*i)->end_trim;
207 delete selection_group;
208 selection_group = 0;
210 delete _canvas_background;
211 _canvas_background = 0;
213 delete _canvas_display;
214 _canvas_display = 0;
216 delete display_menu;
217 display_menu = 0;
220 /** Display this TimeAxisView as the nth component of the parent box, at y.
222 * @param y y position.
223 * @param nth index for this TimeAxisView, increased if this view has children.
224 * @param parent parent component.
225 * @return height of this TimeAxisView.
227 guint32
228 TimeAxisView::show_at (double y, int& nth, VBox *parent)
230 if (control_parent) {
231 control_parent->reorder_child (time_axis_vbox, nth);
232 } else {
233 control_parent = parent;
234 parent->pack_start (time_axis_vbox, false, false);
235 parent->reorder_child (time_axis_vbox, nth);
238 _order = nth;
240 if (_y_position != y) {
241 _canvas_display->property_y () = y;
242 _canvas_background->property_y () = y;
243 /* silly canvas */
244 _canvas_display->move (0.0, 0.0);
245 _canvas_background->move (0.0, 0.0);
246 _y_position = y;
250 _canvas_background->raise_to_top ();
251 _canvas_display->raise_to_top ();
253 if (_marked_for_display) {
254 time_axis_vbox.show ();
255 controls_ebox.show ();
256 _canvas_background->show ();
259 _hidden = false;
261 _effective_height = current_height ();
263 /* now show children */
265 for (Children::iterator i = children.begin(); i != children.end(); ++i) {
266 if (canvas_item_visible ((*i)->_canvas_display)) {
267 ++nth;
268 _effective_height += (*i)->show_at (y + _effective_height, nth, parent);
272 return _effective_height;
275 void
276 TimeAxisView::clip_to_viewport ()
278 if (_marked_for_display) {
279 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()) {
280 _canvas_background->hide ();
281 _canvas_display->hide ();
282 return;
284 _canvas_background->show ();
285 _canvas_display->show ();
287 return;
290 bool
291 TimeAxisView::controls_ebox_scroll (GdkEventScroll* ev)
293 if (Keyboard::some_magic_widget_has_focus()) {
294 return false;
297 switch (ev->direction) {
298 case GDK_SCROLL_UP:
299 if (Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)) {
300 step_height (true);
301 return true;
302 } else if (Keyboard::no_modifiers_active (ev->state)) {
303 _editor.scroll_tracks_up_line();
304 return true;
306 break;
308 case GDK_SCROLL_DOWN:
309 if (Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)) {
310 step_height (false);
311 return true;
312 } else if (Keyboard::no_modifiers_active (ev->state)) {
313 _editor.scroll_tracks_down_line();
314 return true;
316 break;
318 default:
319 /* no handling for left/right, yet */
320 break;
323 return false;
326 bool
327 TimeAxisView::controls_ebox_button_release (GdkEventButton* ev)
329 switch (ev->button) {
330 case 1:
331 selection_click (ev);
332 break;
334 case 3:
335 popup_display_menu (ev->time);
336 break;
339 return true;
342 void
343 TimeAxisView::selection_click (GdkEventButton* ev)
345 Selection::Operation op = ArdourKeyboard::selection_type (ev->state);
346 _editor.set_selected_track (*this, op, false);
349 void
350 TimeAxisView::hide ()
352 if (_hidden) {
353 return;
356 _canvas_display->hide ();
357 _canvas_background->hide ();
359 if (control_parent) {
360 control_parent->remove (time_axis_vbox);
361 control_parent = 0;
364 _y_position = -1;
365 _hidden = true;
367 /* now hide children */
369 for (Children::iterator i = children.begin(); i != children.end(); ++i) {
370 (*i)->hide ();
373 /* if its hidden, it cannot be selected */
375 _editor.get_selection().remove (this);
377 Hiding ();
380 void
381 TimeAxisView::step_height (bool bigger)
383 static const uint32_t step = 25;
385 if (bigger) {
386 if (height == preset_height(HeightSmall)) {
387 set_height (preset_height(HeightSmaller));
389 else if (height == preset_height(HeightSmaller)) {
390 set_height (preset_height(HeightNormal));
392 else {
393 set_height (height + step);
396 } else {
397 if ( height == preset_height(HeightSmall)){
398 return;
401 if (height <= preset_height (HeightSmaller) && height > preset_height (HeightSmall)) {
402 set_height (preset_height(HeightSmall));
404 else if ( height <= preset_height (HeightNormal) && height > preset_height (HeightSmaller)){
405 set_height (preset_height(HeightSmaller));
407 else {
408 set_height (height - step);
413 void
414 TimeAxisView::set_heights (uint32_t h)
416 TrackSelection& ts (_editor.get_selection().tracks);
418 for (TrackSelection::iterator i = ts.begin(); i != ts.end(); ++i) {
419 (*i)->set_height (h);
423 void
424 TimeAxisView::set_height (Height h)
426 set_height (preset_height (h));
429 void
430 TimeAxisView::set_height (uint32_t h)
432 if (h < preset_height (HeightSmall)) {
433 h = preset_height (HeightSmall);
436 time_axis_vbox.property_height_request () = h;
437 height = h;
439 for (list<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
440 (*i)->set_height ();
443 if (canvas_item_visible (selection_group)) {
444 /* resize the selection rect */
445 show_selection (_editor.get_selection().time);
449 bool
450 TimeAxisView::name_entry_key_release (GdkEventKey* ev)
452 TrackViewList::iterator i;
454 switch (ev->keyval) {
455 case GDK_Escape:
456 name_entry.select_region (0,0);
457 controls_ebox.grab_focus ();
458 name_entry_changed ();
459 return true;
461 /* Shift+Tab Keys Pressed. Note that for Shift+Tab, GDK actually
462 * generates a different ev->keyval, rather than setting
463 * ev->state.
465 case GDK_ISO_Left_Tab:
466 case GDK_Tab:
468 name_entry_changed ();
469 TrackViewList const & allviews = _editor.get_track_views ();
470 TrackViewList::const_iterator i = find (allviews.begin(), allviews.end(), this);
471 if (ev->keyval == GDK_Tab) {
472 if (i != allviews.end()) {
473 do {
474 if (++i == allviews.end()) {
475 return true;
477 } while((*i)->hidden());
479 } else {
480 if (i != allviews.begin()) {
481 do {
482 if (i == allviews.begin()) {
483 return true;
485 --i;
486 } while ((*i)->hidden());
491 /* resize to show editable name display */
493 if ((*i)->current_height() <= preset_height (HeightSmaller)) {
494 (*i)->set_height (HeightSmaller);
497 (*i)->name_entry.grab_focus();
499 return true;
501 case GDK_Up:
502 case GDK_Down:
503 name_entry_changed ();
504 return true;
506 default:
507 break;
510 #ifdef TIMEOUT_NAME_EDIT
511 /* adapt the timeout to reflect the user's typing speed */
513 guint32 name_entry_timeout;
515 if (last_name_entry_key_press_event) {
516 /* timeout is 1/2 second or 5 times their current inter-char typing speed */
517 name_entry_timeout = std::max (500U, (5 * (ev->time - last_name_entry_key_press_event)));
518 } else {
519 /* start with a 1 second timeout */
520 name_entry_timeout = 1000;
523 last_name_entry_key_press_event = ev->time;
525 /* wait 1 seconds and if no more keys are pressed, act as if they pressed enter */
527 name_entry_key_timeout.disconnect();
528 name_entry_key_timeout = Glib::signal_timeout().connect (sigc::mem_fun (*this, &TimeAxisView::name_entry_key_timed_out), name_entry_timeout);
529 #endif
531 return false;
534 bool
535 TimeAxisView::name_entry_focus_in (GdkEventFocus*)
537 name_entry.select_region (0, -1);
538 name_entry.set_name ("EditorActiveTrackNameDisplay");
539 return false;
542 bool
543 TimeAxisView::name_entry_focus_out (GdkEventFocus*)
545 /* clean up */
547 last_name_entry_key_press_event = 0;
548 name_entry_key_timeout.disconnect ();
549 name_entry.set_name ("EditorTrackNameDisplay");
550 name_entry.select_region (0,0);
552 /* do the real stuff */
554 name_entry_changed ();
556 return false;
559 bool
560 TimeAxisView::name_entry_key_timed_out ()
562 name_entry_activated();
563 return false;
566 void
567 TimeAxisView::name_entry_activated ()
569 controls_ebox.grab_focus();
572 void
573 TimeAxisView::name_entry_changed ()
577 bool
578 TimeAxisView::name_entry_button_press (GdkEventButton *ev)
580 if (ev->button == 3) {
581 return true;
583 return false;
586 bool
587 TimeAxisView::name_entry_button_release (GdkEventButton *ev)
589 if (ev->button == 3) {
590 popup_display_menu (ev->time);
591 return true;
593 return false;
596 void
597 TimeAxisView::conditionally_add_to_selection ()
599 Selection& s (_editor.get_selection ());
601 if (!s.selected (this)) {
602 _editor.set_selected_track (*this, Selection::Set);
606 void
607 TimeAxisView::popup_display_menu (guint32 when)
609 if (display_menu == 0) {
610 build_display_menu ();
613 conditionally_add_to_selection ();
614 display_menu->popup (1, when);
617 void
618 TimeAxisView::set_selected (bool yn)
620 if (yn == _selected) {
621 return;
624 Selectable::set_selected (yn);
626 if (_selected) {
627 controls_ebox.set_name (controls_base_selected_name);
628 time_axis_vbox.set_name (controls_base_selected_name);
629 controls_vbox.set_name (controls_base_selected_name);
630 } else {
631 controls_ebox.set_name (controls_base_unselected_name);
632 time_axis_vbox.set_name (controls_base_unselected_name);
633 controls_vbox.set_name (controls_base_unselected_name);
634 hide_selection ();
636 /* children will be set for the yn=true case. but when deselecting
637 the editor only has a list of top-level trackviews, so we
638 have to do this here.
641 for (Children::iterator i = children.begin(); i != children.end(); ++i) {
642 (*i)->set_selected (false);
646 resizer.queue_draw ();
649 void
650 TimeAxisView::build_display_menu ()
652 using namespace Menu_Helpers;
654 delete display_menu;
656 display_menu = new Menu;
657 display_menu->set_name ("ArdourContextMenu");
659 // Just let implementing classes define what goes into the manu
662 void
663 TimeAxisView::set_samples_per_unit (double spu)
665 for (Children::iterator i = children.begin(); i != children.end(); ++i) {
666 (*i)->set_samples_per_unit (spu);
669 AnalysisFeatureList::const_iterator i;
670 list<ArdourCanvas::SimpleLine*>::iterator l;
673 void
674 TimeAxisView::show_timestretch (nframes_t start, nframes_t end)
676 for (Children::iterator i = children.begin(); i != children.end(); ++i) {
677 (*i)->show_timestretch (start, end);
681 void
682 TimeAxisView::hide_timestretch ()
684 for (Children::iterator i = children.begin(); i != children.end(); ++i) {
685 (*i)->hide_timestretch ();
689 void
690 TimeAxisView::show_selection (TimeSelection& ts)
692 double x1;
693 double x2;
694 double y2;
695 SelectionRect *rect;
697 for (Children::iterator i = children.begin(); i != children.end(); ++i) {
698 (*i)->show_selection (ts);
701 if (canvas_item_visible (selection_group)) {
702 while (!used_selection_rects.empty()) {
703 free_selection_rects.push_front (used_selection_rects.front());
704 used_selection_rects.pop_front();
705 free_selection_rects.front()->rect->hide();
706 free_selection_rects.front()->start_trim->hide();
707 free_selection_rects.front()->end_trim->hide();
709 selection_group->hide();
712 selection_group->show();
713 selection_group->raise_to_top();
715 for (list<AudioRange>::iterator i = ts.begin(); i != ts.end(); ++i) {
716 nframes_t start, end, cnt;
718 start = (*i).start;
719 end = (*i).end;
720 cnt = end - start + 1;
722 rect = get_selection_rect ((*i).id);
724 x1 = _editor.frame_to_unit (start);
725 x2 = _editor.frame_to_unit (start + cnt - 1);
726 y2 = current_height();
728 rect->rect->property_x1() = x1;
729 rect->rect->property_y1() = 1.0;
730 rect->rect->property_x2() = x2;
731 rect->rect->property_y2() = y2;
733 // trim boxes are at the top for selections
735 if (x2 > x1) {
736 rect->start_trim->property_x1() = x1;
737 rect->start_trim->property_y1() = 1.0;
738 rect->start_trim->property_x2() = x1 + trim_handle_size;
739 rect->start_trim->property_y2() = y2;
741 rect->end_trim->property_x1() = x2 - trim_handle_size;
742 rect->end_trim->property_y1() = 1.0;
743 rect->end_trim->property_x2() = x2;
744 rect->end_trim->property_y2() = y2;
746 rect->start_trim->show();
747 rect->end_trim->show();
748 } else {
749 rect->start_trim->hide();
750 rect->end_trim->hide();
753 rect->rect->show ();
754 used_selection_rects.push_back (rect);
758 void
759 TimeAxisView::reshow_selection (TimeSelection& ts)
761 show_selection (ts);
763 for (Children::iterator i = children.begin(); i != children.end(); ++i) {
764 (*i)->show_selection (ts);
768 void
769 TimeAxisView::hide_selection ()
771 if (canvas_item_visible (selection_group)) {
772 while (!used_selection_rects.empty()) {
773 free_selection_rects.push_front (used_selection_rects.front());
774 used_selection_rects.pop_front();
775 free_selection_rects.front()->rect->hide();
776 free_selection_rects.front()->start_trim->hide();
777 free_selection_rects.front()->end_trim->hide();
779 selection_group->hide();
782 for (Children::iterator i = children.begin(); i != children.end(); ++i) {
783 (*i)->hide_selection ();
787 void
788 TimeAxisView::order_selection_trims (ArdourCanvas::Item *item, bool put_start_on_top)
790 /* find the selection rect this is for. we have the item corresponding to one
791 of the trim handles.
794 for (list<SelectionRect*>::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) {
795 if ((*i)->start_trim == item || (*i)->end_trim == item) {
797 /* make one trim handle be "above" the other so that if they overlap,
798 the top one is the one last used.
801 (*i)->rect->raise_to_top ();
802 (put_start_on_top ? (*i)->start_trim : (*i)->end_trim)->raise_to_top ();
803 (put_start_on_top ? (*i)->end_trim : (*i)->start_trim)->raise_to_top ();
805 break;
810 SelectionRect *
811 TimeAxisView::get_selection_rect (uint32_t id)
813 SelectionRect *rect;
815 /* check to see if we already have a visible rect for this particular selection ID */
817 for (list<SelectionRect*>::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) {
818 if ((*i)->id == id) {
819 return (*i);
823 /* ditto for the free rect list */
825 for (list<SelectionRect*>::iterator i = free_selection_rects.begin(); i != free_selection_rects.end(); ++i) {
826 if ((*i)->id == id) {
827 SelectionRect* ret = (*i);
828 free_selection_rects.erase (i);
829 return ret;
833 /* no existing matching rect, so go get a new one from the free list, or create one if there are none */
835 if (free_selection_rects.empty()) {
837 rect = new SelectionRect;
839 rect->rect = new SimpleRect (*selection_group);
840 rect->rect->property_outline_what() = 0x0;
841 rect->rect->property_x1() = 0.0;
842 rect->rect->property_y1() = 0.0;
843 rect->rect->property_x2() = 0.0;
844 rect->rect->property_y2() = 0.0;
845 rect->rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_SelectionRect.get();
847 rect->start_trim = new SimpleRect (*selection_group);
848 rect->start_trim->property_outline_what() = 0x0;
849 rect->start_trim->property_x1() = 0.0;
850 rect->start_trim->property_x2() = 0.0;
852 rect->end_trim = new SimpleRect (*selection_group);
853 rect->end_trim->property_outline_what() = 0x0;
854 rect->end_trim->property_x1() = 0.0;
855 rect->end_trim->property_x2() = 0.0;
857 free_selection_rects.push_front (rect);
859 rect->rect->signal_event().connect (sigc::bind (sigc::mem_fun (_editor, &PublicEditor::canvas_selection_rect_event), rect->rect, rect));
860 rect->start_trim->signal_event().connect (sigc::bind (sigc::mem_fun (_editor, &PublicEditor::canvas_selection_start_trim_event), rect->rect, rect));
861 rect->end_trim->signal_event().connect (sigc::bind (sigc::mem_fun (_editor, &PublicEditor::canvas_selection_end_trim_event), rect->rect, rect));
864 rect = free_selection_rects.front();
865 rect->id = id;
866 free_selection_rects.pop_front();
867 return rect;
870 struct null_deleter { void operator()(void const *) const {} };
872 bool
873 TimeAxisView::is_child (TimeAxisView* tav)
875 return find (children.begin(), children.end(), boost::shared_ptr<TimeAxisView>(tav, null_deleter())) != children.end();
878 void
879 TimeAxisView::add_child (boost::shared_ptr<TimeAxisView> child)
881 children.push_back (child);
884 void
885 TimeAxisView::remove_child (boost::shared_ptr<TimeAxisView> child)
887 Children::iterator i;
889 if ((i = find (children.begin(), children.end(), child)) != children.end()) {
890 children.erase (i);
894 /** Get selectable things within a given range.
895 * @param start Start time in session frames.
896 * @param end End time in session frames.
897 * @param top Top y range, in trackview coordinates (ie 0 is the top of the track view)
898 * @param bot Bottom y range, in trackview coordinates (ie 0 is the top of the track view)
899 * @param result Filled in with selectable things.
901 void
902 TimeAxisView::get_selectables (framepos_t /*start*/, framepos_t /*end*/, double /*top*/, double /*bot*/, list<Selectable*>& /*result*/)
904 return;
907 void
908 TimeAxisView::get_inverted_selectables (Selection& /*sel*/, list<Selectable*>& /*result*/)
910 return;
913 void
914 TimeAxisView::add_ghost (RegionView* rv)
916 GhostRegion* gr = rv->add_ghost (*this);
918 if(gr) {
919 ghosts.push_back(gr);
923 void
924 TimeAxisView::remove_ghost (RegionView* rv)
926 rv->remove_ghost_in (*this);
929 void
930 TimeAxisView::erase_ghost (GhostRegion* gr)
932 if (in_destructor) {
933 return;
936 for (list<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
937 if ((*i) == gr) {
938 ghosts.erase (i);
939 break;
944 bool
945 TimeAxisView::touched (double top, double bot)
947 /* remember: this is X Window - coordinate space starts in upper left and moves down.
948 y_position is the "origin" or "top" of the track.
951 double mybot = _y_position + current_height();
953 return ((_y_position <= bot && _y_position >= top) ||
954 ((mybot <= bot) && (top < mybot)) ||
955 (mybot >= bot && _y_position < top));
958 void
959 TimeAxisView::set_parent (TimeAxisView& p)
961 parent = &p;
964 bool
965 TimeAxisView::has_state () const
967 return _has_state;
970 TimeAxisView*
971 TimeAxisView::get_parent_with_state ()
973 if (parent == 0) {
974 return 0;
977 if (parent->has_state()) {
978 return parent;
981 return parent->get_parent_with_state ();
985 XMLNode&
986 TimeAxisView::get_state ()
988 /* XXX: is this method used? */
990 XMLNode* node = new XMLNode ("TAV-" + name());
991 char buf[32];
993 snprintf (buf, sizeof(buf), "%u", height);
994 node->add_property ("height", buf);
995 node->add_property ("marked-for-display", (_marked_for_display ? "1" : "0"));
996 return *node;
1000 TimeAxisView::set_state (const XMLNode& node, int /*version*/)
1002 const XMLProperty *prop;
1004 /* XXX: I think this might be vestigial */
1005 if ((prop = node.property ("marked-for-display")) != 0) {
1006 _marked_for_display = (prop->value() == "1");
1009 if ((prop = node.property ("shown-editor")) != 0) {
1010 _marked_for_display = string_is_affirmative (prop->value ());
1013 if ((prop = node.property ("track-height")) != 0) {
1015 if (prop->value() == "largest") {
1016 set_height (HeightLargest);
1017 } else if (prop->value() == "large") {
1018 set_height (HeightLarge);
1019 } else if (prop->value() == "larger") {
1020 set_height (HeightLarger);
1021 } else if (prop->value() == "normal") {
1022 set_height (HeightNormal);
1023 } else if (prop->value() == "smaller") {
1024 set_height (HeightSmaller);
1025 } else if (prop->value() == "small") {
1026 set_height (HeightSmall);
1027 } else {
1028 error << string_compose(_("unknown track height name \"%1\" in XML GUI information"), prop->value()) << endmsg;
1029 set_height (HeightNormal);
1032 } else if ((prop = node.property ("height")) != 0) {
1034 set_height (atoi (prop->value()));
1036 } else {
1038 set_height (HeightNormal);
1041 return 0;
1044 void
1045 TimeAxisView::reset_height()
1047 set_height (height);
1049 for (Children::iterator i = children.begin(); i != children.end(); ++i) {
1050 (*i)->set_height ((*i)->height);
1054 void
1055 TimeAxisView::compute_heights ()
1057 Gtk::Window window (Gtk::WINDOW_TOPLEVEL);
1058 Gtk::Table two_row_table (2, 8);
1059 Gtk::Table one_row_table (1, 8);
1060 Button* buttons[5];
1061 const int border_width = 2;
1062 extra_height = (2 * border_width)
1063 //+ 2 // 2 pixels for the hseparator between TimeAxisView control areas
1064 + 6; // resizer button (3 x 2 pixel elements + 2 x 2 pixel gaps)
1066 window.add (one_row_table);
1068 one_row_table.set_border_width (border_width);
1069 one_row_table.set_row_spacings (0);
1070 one_row_table.set_col_spacings (0);
1071 one_row_table.set_homogeneous (true);
1073 two_row_table.set_border_width (border_width);
1074 two_row_table.set_row_spacings (0);
1075 two_row_table.set_col_spacings (0);
1076 two_row_table.set_homogeneous (true);
1078 for (int i = 0; i < 5; ++i) {
1079 buttons[i] = manage (new Button (X_("f")));
1080 buttons[i]->set_name ("TrackMuteButton");
1083 one_row_table.attach (*buttons[0], 6, 7, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
1085 one_row_table.show_all ();
1086 Gtk::Requisition req(one_row_table.size_request ());
1088 // height required to show 1 row of buttons
1090 smaller_height = req.height + extra_height;
1093 void
1094 TimeAxisView::show_name_label ()
1096 if (!(name_packing & NameLabelPacked)) {
1097 name_hbox.pack_start (name_label, true, true);
1098 name_packing = NamePackingBits (name_packing | NameLabelPacked);
1099 name_hbox.show ();
1100 name_label.show ();
1104 void
1105 TimeAxisView::show_name_entry ()
1107 if (!(name_packing & NameEntryPacked)) {
1108 name_hbox.pack_start (name_entry, true, true);
1109 name_packing = NamePackingBits (name_packing | NameEntryPacked);
1110 name_hbox.show ();
1111 name_entry.show ();
1115 void
1116 TimeAxisView::hide_name_label ()
1118 if (name_packing & NameLabelPacked) {
1119 name_hbox.remove (name_label);
1120 name_packing = NamePackingBits (name_packing & ~NameLabelPacked);
1124 void
1125 TimeAxisView::hide_name_entry ()
1127 if (name_packing & NameEntryPacked) {
1128 name_hbox.remove (name_entry);
1129 name_packing = NamePackingBits (name_packing & ~NameEntryPacked);
1133 void
1134 TimeAxisView::color_handler ()
1136 for (list<GhostRegion*>::iterator i=ghosts.begin(); i != ghosts.end(); i++ ) {
1137 (*i)->set_colors();
1140 for (list<SelectionRect*>::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) {
1142 (*i)->rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_SelectionRect.get();
1143 (*i)->rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1145 (*i)->start_trim->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1146 (*i)->start_trim->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1148 (*i)->end_trim->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1149 (*i)->end_trim->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1152 for (list<SelectionRect*>::iterator i = free_selection_rects.begin(); i != free_selection_rects.end(); ++i) {
1154 (*i)->rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_SelectionRect.get();
1155 (*i)->rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1157 (*i)->start_trim->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1158 (*i)->start_trim->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1160 (*i)->end_trim->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1161 (*i)->end_trim->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1165 /** @return Pair: TimeAxisView, layer index.
1166 * TimeAxisView is non-0 if this object covers y, or one of its children does.
1167 * If the covering object is a child axis, then the child is returned.
1168 * TimeAxisView is 0 otherwise.
1169 * Layer index is the layer number if the TimeAxisView is valid and is in stacked
1170 * region display mode, otherwise 0.
1172 std::pair<TimeAxisView*, layer_t>
1173 TimeAxisView::covers_y_position (double y)
1175 if (hidden()) {
1176 return std::make_pair ( (TimeAxisView *) 0, 0);
1179 if (_y_position <= y && y < (_y_position + height)) {
1181 /* work out the layer index if appropriate */
1182 layer_t l = 0;
1183 if (layer_display () == Stacked && view ()) {
1184 /* compute layer */
1185 l = layer_t ((_y_position + height - y) / (view()->child_height ()));
1186 /* clamp to max layers to be on the safe side; sometimes the above calculation
1187 returns a too-high value */
1188 if (l >= view()->layers ()) {
1189 l = view()->layers() - 1;
1193 return std::make_pair (this, l);
1196 for (Children::const_iterator i = children.begin(); i != children.end(); ++i) {
1198 std::pair<TimeAxisView*, int> const r = (*i)->covers_y_position (y);
1199 if (r.first) {
1200 return r;
1204 return std::make_pair ( (TimeAxisView *) 0, 0);
1207 bool
1208 TimeAxisView::resizer_button_press (GdkEventButton* event)
1210 _resize_drag_start = event->y_root;
1211 return true;
1214 bool
1215 TimeAxisView::resizer_button_release (GdkEventButton*)
1217 _editor.stop_canvas_autoscroll ();
1218 _resize_drag_start = -1;
1219 return true;
1222 void
1223 TimeAxisView::idle_resize (uint32_t h)
1225 set_height (h);
1228 bool
1229 TimeAxisView::resizer_motion (GdkEventMotion* ev)
1231 if (_resize_drag_start >= 0) {
1232 /* (ab)use the DragManager to do autoscrolling; adjust the event coordinates
1233 into the world coordinate space that DragManager::motion_handler is expecting,
1234 and then fake a DragManager motion event so that when maybe_autoscroll
1235 asks DragManager for the current pointer position it will get the correct
1236 answers.
1238 int tx, ty;
1239 resizer.translate_coordinates (*control_parent, ev->x, ev->y, tx, ty);
1240 ev->y = ty - _editor.get_trackview_group_vertical_offset();
1241 _editor.drags()->motion_handler ((GdkEvent *) ev, false);
1242 _editor.maybe_autoscroll (false, true);
1244 /* now do the actual TAV resize */
1245 int32_t const delta = (int32_t) floor (ev->y_root - _resize_drag_start);
1246 _editor.add_to_idle_resize (this, delta);
1247 _resize_drag_start = ev->y_root;
1250 return true;
1253 bool
1254 TimeAxisView::resizer_expose (GdkEventExpose* event)
1256 int w, h, x, y, d;
1257 Glib::RefPtr<Gdk::Window> win (resizer.get_window());
1258 Glib::RefPtr<Gdk::GC> dark (resizer.get_style()->get_fg_gc (STATE_NORMAL));
1259 Glib::RefPtr<Gdk::GC> light (resizer.get_style()->get_bg_gc (STATE_NORMAL));
1261 win->draw_rectangle (controls_ebox.get_style()->get_bg_gc(STATE_NORMAL),
1262 true,
1263 event->area.x,
1264 event->area.y,
1265 event->area.width,
1266 event->area.height);
1268 win->get_geometry (x, y, w, h, d);
1270 /* handle/line #1 */
1272 win->draw_line (dark, 0, 0, w - 2, 0);
1273 win->draw_point (dark, 0, 1);
1274 win->draw_line (light, 1, 1, w - 1, 1);
1275 win->draw_point (light, w - 1, 0);
1277 /* handle/line #2 */
1279 win->draw_line (dark, 0, 4, w - 2, 4);
1280 win->draw_point (dark, 0, 5);
1281 win->draw_line (light, 1, 5, w - 1, 5);
1282 win->draw_point (light, w - 1, 4);
1284 /* use vertical resize mouse cursor */
1285 win->set_cursor(Gdk::Cursor(Gdk::SB_V_DOUBLE_ARROW));
1287 return true;
1290 bool
1291 TimeAxisView::set_visibility (bool yn)
1293 if (yn != marked_for_display()) {
1294 if (yn) {
1295 set_marked_for_display (true);
1296 canvas_display()->show();
1297 } else {
1298 set_marked_for_display (false);
1299 hide ();
1301 return true; // things changed
1304 return false;
1307 uint32_t
1308 TimeAxisView::preset_height (Height h)
1310 switch (h) {
1311 case HeightLargest:
1312 return extra_height + 48 + 250;
1313 case HeightLarger:
1314 return extra_height + 48 + 150;
1315 case HeightLarge:
1316 return extra_height + 48 + 50;
1317 case HeightNormal:
1318 return extra_height + 48;
1319 case HeightSmall:
1320 return 27;
1321 case HeightSmaller:
1322 return smaller_height;
1325 /* NOTREACHED */
1326 return 0;
1329 /** @return Child time axis views that are not hidden */
1330 TimeAxisView::Children
1331 TimeAxisView::get_child_list ()
1333 Children c;
1335 for (Children::iterator i = children.begin(); i != children.end(); ++i) {
1336 if (!(*i)->hidden()) {
1337 c.push_back(*i);
1341 return c;