colinf's patch to make the cursor be the dbl vertical arrow when over the track resiz...
[ardour2.git] / gtk2_ardour / time_axis_view.cc
blob69f3e376ed0141b32d9337fe2ded55257df5cb39
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>
32 #include <gtkmm2ext/utils.h>
33 #include <gtkmm2ext/selector.h>
34 #include <gtkmm2ext/stop_signal.h>
36 #include <ardour/session.h>
37 #include <ardour/utils.h>
38 #include <ardour/ladspa_plugin.h>
39 #include <ardour/insert.h>
40 #include <ardour/location.h>
42 #include "ardour_ui.h"
43 #include "public_editor.h"
44 #include "time_axis_view.h"
45 #include "simplerect.h"
46 #include "simpleline.h"
47 #include "selection.h"
48 #include "keyboard.h"
49 #include "rgb_macros.h"
50 #include "utils.h"
52 #include "i18n.h"
54 using namespace Gtk;
55 using namespace Gdk;
56 using namespace sigc;
57 using namespace ARDOUR;
58 using namespace PBD;
59 using namespace Editing;
60 using namespace ArdourCanvas;
62 const double trim_handle_size = 6.0; /* pixels */
64 uint32_t TimeAxisView::hLargest = 0;
65 uint32_t TimeAxisView::hLarge = 0;
66 uint32_t TimeAxisView::hLarger = 0;
67 uint32_t TimeAxisView::hNormal = 0;
68 uint32_t TimeAxisView::hSmaller = 0;
69 uint32_t TimeAxisView::hSmall = 0;
70 bool TimeAxisView::need_size_info = true;
72 TimeAxisView::TimeAxisView (ARDOUR::Session& sess, PublicEditor& ed, TimeAxisView* rent, Canvas& canvas)
73 : AxisView (sess),
74 editor (ed),
75 controls_table (2, 8)
77 if (need_size_info) {
78 compute_controls_size_info ();
79 need_size_info = false;
81 canvas_background = new Group (*ed.get_background_group (), 0.0, 0.0);
82 canvas_display = new Group (*ed.get_trackview_group (), 0.0, 0.0);
84 selection_group = new Group (*canvas_display);
85 selection_group->hide();
87 control_parent = 0;
88 display_menu = 0;
89 size_menu = 0;
90 _marked_for_display = false;
91 _hidden = false;
92 height = 0;
93 effective_height = 0;
94 parent = rent;
95 _has_state = false;
96 last_name_entry_key_press_event = 0;
97 name_packing = NamePackingBits (0);
98 resize_drag_start = -1;
101 Create the standard LHS Controls
102 We create the top-level container and name add the name label here,
103 subclasses can add to the layout as required
106 name_entry.set_name ("EditorTrackNameDisplay");
107 name_entry.signal_button_release_event().connect (mem_fun (*this, &TimeAxisView::name_entry_button_release));
108 name_entry.signal_button_press_event().connect (mem_fun (*this, &TimeAxisView::name_entry_button_press));
109 name_entry.signal_key_release_event().connect (mem_fun (*this, &TimeAxisView::name_entry_key_release));
110 name_entry.signal_activate().connect (mem_fun(*this, &TimeAxisView::name_entry_activated));
111 name_entry.signal_focus_in_event().connect (mem_fun (*this, &TimeAxisView::name_entry_focus_in));
112 name_entry.signal_focus_out_event().connect (mem_fun (*this, &TimeAxisView::name_entry_focus_out));
113 Gtkmm2ext::set_size_request_to_display_given_text (name_entry, N_("gTortnam"), 10, 10); // just represents a short name
115 name_label.set_name ("TrackLabel");
116 name_label.set_alignment (0.0, 0.5);
118 /* typically, either name_label OR name_entry are visible,
119 but not both. its up to derived classes to show/hide them as they
120 wish.
123 name_hbox.show ();
125 controls_table.set_border_width (2);
126 controls_table.set_row_spacings (0);
127 controls_table.set_col_spacings (0);
128 controls_table.set_homogeneous (true);
130 controls_table.attach (name_hbox, 0, 5, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 3, 0);
131 controls_table.show_all ();
132 controls_table.set_no_show_all ();
134 resizer.set_size_request (10, 10);
135 resizer.set_name ("ResizeHandle");
136 resizer.signal_expose_event().connect (mem_fun (*this, &TimeAxisView::resizer_expose));
137 resizer.signal_button_press_event().connect (mem_fun (*this, &TimeAxisView::resizer_button_press));
138 resizer.signal_button_release_event().connect (mem_fun (*this, &TimeAxisView::resizer_button_release));
139 resizer.set_events (Gdk::BUTTON_PRESS_MASK|
140 Gdk::BUTTON_RELEASE_MASK|
141 Gdk::POINTER_MOTION_MASK|
142 Gdk::SCROLL_MASK);
144 resizer_box.pack_start (resizer, false, false);
145 resizer.show ();
146 resizer_box.show();
148 controls_vbox.pack_start (controls_table, false, false);
149 controls_vbox.pack_end (resizer_box, false, true);
150 controls_vbox.show ();
152 controls_ebox.set_name ("TimeAxisViewControlsBaseUnselected");
153 controls_ebox.add (controls_vbox);
154 controls_ebox.add_events (BUTTON_PRESS_MASK|BUTTON_RELEASE_MASK|SCROLL_MASK);
155 controls_ebox.set_flags (CAN_FOCUS);
157 controls_ebox.signal_button_release_event().connect (mem_fun (*this, &TimeAxisView::controls_ebox_button_release));
158 controls_ebox.signal_scroll_event().connect (mem_fun (*this, &TimeAxisView::controls_ebox_scroll), true);
160 controls_hbox.pack_start (controls_ebox,true,true);
161 controls_hbox.show ();
163 controls_frame.add (controls_hbox);
164 controls_frame.set_name ("TimeAxisViewControlsBaseUnselected");
165 controls_vbox.set_name ("TimeAxisViewControlsBaseUnselected");
166 controls_frame.set_shadow_type (Gtk::SHADOW_ETCHED_OUT);
168 ColorsChanged.connect (mem_fun (*this, &TimeAxisView::color_handler));
171 TimeAxisView::~TimeAxisView()
173 for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
174 delete *i;
177 for (list<SelectionRect*>::iterator i = free_selection_rects.begin(); i != free_selection_rects.end(); ++i) {
178 delete (*i)->rect;
179 delete (*i)->start_trim;
180 delete (*i)->end_trim;
184 for (list<SelectionRect*>::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) {
185 delete (*i)->rect;
186 delete (*i)->start_trim;
187 delete (*i)->end_trim;
190 for (list<SimpleLine*>::iterator i = feature_lines.begin(); i != feature_lines.end(); ++i) {
191 delete (*i);
194 if (selection_group) {
195 delete selection_group;
196 selection_group = 0;
199 if (canvas_background) {
200 delete canvas_background;
201 canvas_background = 0;
204 if (canvas_display) {
205 delete canvas_display;
206 canvas_display = 0;
209 if (display_menu) {
210 delete display_menu;
211 display_menu = 0;
215 guint32
216 TimeAxisView::show_at (double y, int& nth, VBox *parent)
218 if (control_parent) {
219 control_parent->reorder_child (controls_frame, nth);
220 } else {
221 control_parent = parent;
222 parent->pack_start (controls_frame, false, false);
223 parent->reorder_child (controls_frame, nth);
226 order = nth;
228 if (y_position != y) {
229 canvas_display->property_y () = y;
230 canvas_background->property_y () = y;
231 /* silly canvas */
232 canvas_display->move (0.0, 0.0);
233 canvas_background->move (0.0, 0.0);
234 y_position = y;
237 canvas_background->raise_to_top ();
238 canvas_display->raise_to_top ();
240 if (_marked_for_display) {
241 controls_frame.show ();
242 controls_ebox.show ();
243 canvas_background->show ();
246 _hidden = false;
248 effective_height = current_height();
250 /* now show children */
252 for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
254 if (canvas_item_visible ((*i)->canvas_display)) {
255 ++nth;
256 effective_height += (*i)->show_at (y + effective_height, nth, parent);
260 return effective_height;
263 void
264 TimeAxisView::clip_to_viewport ()
266 if (_marked_for_display) {
267 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()) {
268 canvas_background->hide ();
269 canvas_display->hide ();
270 return;
272 canvas_background->show();
273 canvas_display->show ();
275 return;
278 bool
279 TimeAxisView::controls_ebox_scroll (GdkEventScroll* ev)
281 switch (ev->direction) {
282 case GDK_SCROLL_UP:
283 if (Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)) {
284 step_height (true);
285 return true;
286 } else if (Keyboard::no_modifiers_active (ev->state)) {
287 editor.scroll_tracks_up_line();
288 return true;
290 break;
292 case GDK_SCROLL_DOWN:
293 if (Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)) {
294 step_height (false);
295 return true;
296 } else if (Keyboard::no_modifiers_active (ev->state)) {
297 editor.scroll_tracks_down_line();
298 return true;
300 break;
302 default:
303 /* no handling for left/right, yet */
304 break;
307 return false;
310 bool
311 TimeAxisView::controls_ebox_button_release (GdkEventButton* ev)
313 switch (ev->button) {
314 case 1:
315 selection_click (ev);
316 break;
318 case 3:
319 popup_display_menu (ev->time);
320 break;
323 return true;
326 void
327 TimeAxisView::selection_click (GdkEventButton* ev)
329 Selection::Operation op = Keyboard::selection_type (ev->state);
330 editor.set_selected_track (*this, op, false);
333 void
334 TimeAxisView::hide ()
336 if (_hidden) {
337 return;
340 canvas_display->hide();
341 canvas_background->hide();
342 controls_frame.hide ();
344 if (control_parent) {
345 control_parent->remove (controls_frame);
346 control_parent = 0;
349 y_position = -1;
350 _hidden = true;
352 /* now hide children */
354 for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
355 (*i)->hide ();
358 /* if its hidden, it cannot be selected */
360 editor.get_selection().remove (this);
362 Hiding ();
365 void
366 TimeAxisView::step_height (bool bigger)
368 static const uint32_t step = 20;
370 if (bigger) {
371 set_height (height + step);
372 } else {
373 if (height > step) {
374 set_height (std::max (height - step, hSmall));
375 } else if (height != hSmall) {
376 set_height (hSmall);
381 void
382 TimeAxisView::set_heights (uint32_t h)
384 TrackSelection& ts (editor.get_selection().tracks);
386 for (TrackSelection::iterator i = ts.begin(); i != ts.end(); ++i) {
387 (*i)->set_height (h);
391 void
392 TimeAxisView::set_height(uint32_t h)
394 if (h == height) {
395 return;
397 height = h;
398 controls_frame.property_height_request () = h;
400 if (canvas_item_visible (selection_group)) {
401 /* resize the selection rect */
402 show_selection (editor.get_selection().time);
405 reshow_feature_lines ();
408 bool
409 TimeAxisView::name_entry_key_release (GdkEventKey* ev)
411 PublicEditor::TrackViewList *allviews = 0;
412 PublicEditor::TrackViewList::iterator i;
414 switch (ev->keyval) {
415 case GDK_Escape:
416 name_entry.select_region (0,0);
417 controls_ebox.grab_focus ();
418 name_entry_changed ();
419 return true;
421 /* Shift+Tab Keys Pressed. Note that for Shift+Tab, GDK actually
422 * generates a different ev->keyval, rather than setting
423 * ev->state.
425 case GDK_ISO_Left_Tab:
426 case GDK_Tab:
427 name_entry_changed ();
428 allviews = editor.get_valid_views (0);
429 if (allviews != 0) {
430 i = find (allviews->begin(), allviews->end(), this);
431 if (ev->keyval == GDK_Tab) {
432 if (i != allviews->end()) {
433 do {
434 if (++i == allviews->end()) { return true; }
435 } while((*i)->hidden());
437 } else {
438 if (i != allviews->begin()) {
439 do {
440 if (--i == allviews->begin()) { return true; }
441 } while ((*i)->hidden());
446 /* resize to show editable name display */
448 if ((*i)->current_height() >= hSmall && (*i)->current_height() < hNormal) {
449 (*i)->set_height (hSmaller);
452 (*i)->name_entry.grab_focus();
454 return true;
456 case GDK_Up:
457 case GDK_Down:
458 name_entry_changed ();
459 return true;
461 default:
462 break;
465 #ifdef TIMEOUT_NAME_EDIT
466 /* adapt the timeout to reflect the user's typing speed */
468 guint32 name_entry_timeout;
470 if (last_name_entry_key_press_event) {
471 /* timeout is 1/2 second or 5 times their current inter-char typing speed */
472 name_entry_timeout = std::max (500U, (5 * (ev->time - last_name_entry_key_press_event)));
473 } else {
474 /* start with a 1 second timeout */
475 name_entry_timeout = 1000;
478 last_name_entry_key_press_event = ev->time;
480 /* wait 1 seconds and if no more keys are pressed, act as if they pressed enter */
482 name_entry_key_timeout.disconnect();
483 name_entry_key_timeout = Glib::signal_timeout().connect (mem_fun (*this, &TimeAxisView::name_entry_key_timed_out), name_entry_timeout);
484 #endif
486 return false;
489 bool
490 TimeAxisView::name_entry_focus_in (GdkEventFocus* ev)
492 name_entry.select_region (0, -1);
493 name_entry.set_name ("EditorActiveTrackNameDisplay");
494 return false;
497 bool
498 TimeAxisView::name_entry_focus_out (GdkEventFocus* ev)
500 /* clean up */
502 last_name_entry_key_press_event = 0;
503 name_entry_key_timeout.disconnect ();
504 name_entry.set_name ("EditorTrackNameDisplay");
505 name_entry.select_region (0,0);
507 /* do the real stuff */
509 name_entry_changed ();
511 return false;
514 bool
515 TimeAxisView::name_entry_key_timed_out ()
517 name_entry_activated();
518 return false;
521 void
522 TimeAxisView::name_entry_activated ()
524 controls_ebox.grab_focus();
527 void
528 TimeAxisView::name_entry_changed ()
532 bool
533 TimeAxisView::name_entry_button_press (GdkEventButton *ev)
535 if (ev->button == 3) {
536 return true;
538 return false;
541 bool
542 TimeAxisView::name_entry_button_release (GdkEventButton *ev)
544 if (ev->button == 3) {
545 popup_display_menu (ev->time);
546 return true;
548 return false;
551 void
552 TimeAxisView::conditionally_add_to_selection ()
554 Selection& s (editor.get_selection());
556 if (!s.selected (this)) {
557 editor.set_selected_track (*this, Selection::Set);
562 void
563 TimeAxisView::popup_display_menu (guint32 when)
565 if (display_menu == 0) {
566 build_display_menu ();
569 conditionally_add_to_selection ();
570 display_menu->popup (1, when);
573 gint
574 TimeAxisView::size_click (GdkEventButton *ev)
576 conditionally_add_to_selection ();
577 popup_size_menu (ev->time);
578 return TRUE;
581 void
582 TimeAxisView::popup_size_menu (guint32 when)
584 if (size_menu == 0) {
585 build_size_menu ();
587 size_menu->popup (1, when);
590 void
591 TimeAxisView::set_selected (bool yn)
593 if (yn == _selected) {
594 return;
597 Selectable::set_selected (yn);
599 if (_selected) {
600 controls_ebox.set_name (controls_base_selected_name);
601 controls_frame.set_name (controls_base_selected_name);
602 controls_vbox.set_name (controls_base_selected_name);
603 /* propagate any existing selection, if the mode is right */
605 if (editor.current_mouse_mode() == Editing::MouseRange && !editor.get_selection().time.empty()) {
606 show_selection (editor.get_selection().time);
609 } else {
610 controls_ebox.set_name (controls_base_unselected_name);
611 controls_frame.set_name (controls_base_unselected_name);
612 controls_vbox.set_name (controls_base_unselected_name);
613 hide_selection ();
615 /* children will be set for the yn=true case. but when deselecting
616 the editor only has a list of top-level trackviews, so we
617 have to do this here.
620 for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
621 (*i)->set_selected (false);
625 resizer.queue_draw ();
628 void
629 TimeAxisView::build_size_menu ()
631 using namespace Menu_Helpers;
633 size_menu = new Menu;
634 size_menu->set_name ("ArdourContextMenu");
635 MenuList& items = size_menu->items();
637 items.push_back (MenuElem (_("Largest"), bind (mem_fun (*this, &TimeAxisView::set_heights), hLargest)));
638 items.push_back (MenuElem (_("Large"), bind (mem_fun (*this, &TimeAxisView::set_heights), hLarge)));
639 items.push_back (MenuElem (_("Larger"), bind (mem_fun (*this, &TimeAxisView::set_heights), hLarger)));
640 items.push_back (MenuElem (_("Normal"), bind (mem_fun (*this, &TimeAxisView::set_heights), hNormal)));
641 items.push_back (MenuElem (_("Smaller"), bind (mem_fun (*this, &TimeAxisView::set_heights),hSmaller)));
642 items.push_back (MenuElem (_("Small"), bind (mem_fun (*this, &TimeAxisView::set_heights), hSmall)));
645 void
646 TimeAxisView::build_display_menu ()
648 using namespace Menu_Helpers;
650 display_menu = new Menu;
651 display_menu->set_name ("ArdourContextMenu");
653 // Just let implementing classes define what goes into the manu
656 void
657 TimeAxisView::set_samples_per_unit (double spu)
659 AnalysisFeatureList::const_iterator i;
660 list<ArdourCanvas::SimpleLine*>::iterator l;
662 for (i = analysis_features.begin(), l = feature_lines.begin(); i != analysis_features.end() && l != feature_lines.end(); ++i, ++l) {
663 (*l)->property_x1() = editor.frame_to_pixel (*i);
664 (*l)->property_x2() = editor.frame_to_pixel (*i);
667 for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
668 (*i)->set_samples_per_unit (spu);
672 void
673 TimeAxisView::show_timestretch (nframes_t start, nframes_t end)
675 for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
676 (*i)->show_timestretch (start, end);
680 void
681 TimeAxisView::hide_timestretch ()
683 for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
684 (*i)->hide_timestretch ();
688 void
689 TimeAxisView::show_selection (TimeSelection& ts)
691 double x1;
692 double x2;
693 double y2;
694 SelectionRect *rect;
696 for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
697 (*i)->show_selection (ts);
700 if (canvas_item_visible (selection_group)) {
701 while (!used_selection_rects.empty()) {
702 free_selection_rects.push_front (used_selection_rects.front());
703 used_selection_rects.pop_front();
704 free_selection_rects.front()->rect->hide();
705 free_selection_rects.front()->start_trim->hide();
706 free_selection_rects.front()->end_trim->hide();
708 selection_group->hide();
711 selection_group->show();
712 selection_group->raise_to_top();
714 for (list<AudioRange>::iterator i = ts.begin(); i != ts.end(); ++i) {
715 nframes_t start, end, cnt;
717 start = (*i).start;
718 end = (*i).end;
719 cnt = end - start + 1;
721 rect = get_selection_rect ((*i).id);
723 x1 = editor.frame_to_unit (start);
724 x2 = editor.frame_to_unit (start + cnt - 1);
725 y2 = current_height();
727 rect->rect->property_x1() = x1;
728 rect->rect->property_y1() = 1.0;
729 rect->rect->property_x2() = x2;
730 rect->rect->property_y2() = y2;
732 // trim boxes are at the top for selections
734 if (x2 > x1) {
735 rect->start_trim->property_x1() = x1;
736 rect->start_trim->property_y1() = 1.0;
737 rect->start_trim->property_x2() = x1 + trim_handle_size;
738 rect->start_trim->property_y2() = 1.0 + trim_handle_size;
740 rect->end_trim->property_x1() = x2 - trim_handle_size;
741 rect->end_trim->property_y1() = 1.0;
742 rect->end_trim->property_x2() = x2;
743 rect->end_trim->property_y2() = 1.0 + trim_handle_size;
745 rect->start_trim->show();
746 rect->end_trim->show();
747 } else {
748 rect->start_trim->hide();
749 rect->end_trim->hide();
752 rect->rect->show ();
753 used_selection_rects.push_back (rect);
757 void
758 TimeAxisView::reshow_selection (TimeSelection& ts)
760 show_selection (ts);
762 for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
763 (*i)->show_selection (ts);
767 void
768 TimeAxisView::hide_selection ()
770 if (canvas_item_visible (selection_group)) {
771 while (!used_selection_rects.empty()) {
772 free_selection_rects.push_front (used_selection_rects.front());
773 used_selection_rects.pop_front();
774 free_selection_rects.front()->rect->hide();
775 free_selection_rects.front()->start_trim->hide();
776 free_selection_rects.front()->end_trim->hide();
778 selection_group->hide();
781 for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
782 (*i)->hide_selection ();
786 void
787 TimeAxisView::order_selection_trims (ArdourCanvas::Item *item, bool put_start_on_top)
789 /* find the selection rect this is for. we have the item corresponding to one
790 of the trim handles.
793 for (list<SelectionRect*>::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) {
794 if ((*i)->start_trim == item || (*i)->end_trim == item) {
796 /* make one trim handle be "above" the other so that if they overlap,
797 the top one is the one last used.
800 (*i)->rect->raise_to_top ();
801 (put_start_on_top ? (*i)->start_trim : (*i)->end_trim)->raise_to_top ();
802 (put_start_on_top ? (*i)->end_trim : (*i)->start_trim)->raise_to_top ();
804 break;
809 SelectionRect *
810 TimeAxisView::get_selection_rect (uint32_t id)
812 SelectionRect *rect;
814 /* check to see if we already have a visible rect for this particular selection ID */
816 for (list<SelectionRect*>::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) {
817 if ((*i)->id == id) {
818 return (*i);
822 /* ditto for the free rect list */
824 for (list<SelectionRect*>::iterator i = free_selection_rects.begin(); i != free_selection_rects.end(); ++i) {
825 if ((*i)->id == id) {
826 SelectionRect* ret = (*i);
827 free_selection_rects.erase (i);
828 return ret;
832 /* no existing matching rect, so go get a new one from the free list, or create one if there are none */
834 if (free_selection_rects.empty()) {
836 rect = new SelectionRect;
838 rect->rect = new SimpleRect (*selection_group);
839 rect->rect->property_x1() = 0.0;
840 rect->rect->property_y1() = 0.0;
841 rect->rect->property_x2() = 0.0;
842 rect->rect->property_y2() = 0.0;
843 rect->rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_SelectionRect.get();
844 rect->rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_SelectionRect.get();
846 rect->start_trim = new SimpleRect (*selection_group);
847 rect->start_trim->property_x1() = 0.0;
848 rect->start_trim->property_x2() = 0.0;
849 rect->start_trim->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
850 rect->start_trim->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
852 rect->end_trim = new SimpleRect (*selection_group);
853 rect->end_trim->property_x1() = 0.0;
854 rect->end_trim->property_x2() = 0.0;
855 rect->end_trim->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
856 rect->end_trim->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
858 free_selection_rects.push_front (rect);
860 rect->rect->signal_event().connect (bind (mem_fun (editor, &PublicEditor::canvas_selection_rect_event), rect->rect, rect));
861 rect->start_trim->signal_event().connect (bind (mem_fun (editor, &PublicEditor::canvas_selection_start_trim_event), rect->rect, rect));
862 rect->end_trim->signal_event().connect (bind (mem_fun (editor, &PublicEditor::canvas_selection_end_trim_event), rect->rect, rect));
865 rect = free_selection_rects.front();
866 rect->id = id;
867 free_selection_rects.pop_front();
868 return rect;
871 bool
872 TimeAxisView::is_child (TimeAxisView* tav)
874 return find (children.begin(), children.end(), tav) != children.end();
877 void
878 TimeAxisView::add_child (TimeAxisView* child)
880 children.push_back (child);
883 void
884 TimeAxisView::remove_child (TimeAxisView* child)
886 vector<TimeAxisView*>::iterator i;
888 if ((i = find (children.begin(), children.end(), child)) != children.end()) {
889 children.erase (i);
893 void
894 TimeAxisView::get_selectables (nframes_t start, nframes_t end, double top, double bot, list<Selectable*>& result)
896 return;
899 void
900 TimeAxisView::get_inverted_selectables (Selection& sel, list<Selectable*>& result)
902 return;
905 bool
906 TimeAxisView::touched (double top, double bot)
908 /* remember: this is X Window - coordinate space starts in upper left and moves down.
909 y_position is the "origin" or "top" of the track.
912 double mybot = y_position + current_height();
914 return ((y_position <= bot && y_position >= top) ||
915 ((mybot <= bot) && (top < mybot)) ||
916 (mybot >= bot && y_position < top));
919 void
920 TimeAxisView::set_parent (TimeAxisView& p)
922 parent = &p;
925 bool
926 TimeAxisView::has_state () const
928 return _has_state;
931 TimeAxisView*
932 TimeAxisView::get_parent_with_state ()
934 if (parent == 0) {
935 return 0;
938 if (parent->has_state()) {
939 return parent;
942 return parent->get_parent_with_state ();
946 XMLNode&
947 TimeAxisView::get_state ()
949 XMLNode* node = new XMLNode ("TAV-" + name());
950 char buf[32];
952 snprintf (buf, sizeof(buf), "%u", height);
953 node->add_property ("height", buf);
954 node->add_property ("marked_for_display", (_marked_for_display ? "1" : "0"));
955 return *node;
959 TimeAxisView::set_state (const XMLNode& node)
961 const XMLProperty *prop;
963 if ((prop = node.property ("marked_for_display")) != 0) {
964 _marked_for_display = (prop->value() == "1");
967 if ((prop = node.property ("track_height")) != 0) {
969 if (prop->value() == "largest") {
970 set_height (hLargest);
971 } else if (prop->value() == "large") {
972 set_height (hLarge);
973 } else if (prop->value() == "larger") {
974 set_height (hLarger);
975 } else if (prop->value() == "normal") {
976 set_height (hNormal);
977 } else if (prop->value() == "smaller") {
978 set_height (hSmaller);
979 } else if (prop->value() == "small") {
980 set_height (hSmall);
981 } else {
982 error << string_compose(_("unknown track height name \"%1\" in XML GUI information"), prop->value()) << endmsg;
983 set_height (Normal);
986 } else if ((prop = node.property ("height")) != 0) {
988 set_height (atoi (prop->value()));
990 } else {
992 set_height (hNormal);
995 return 0;
998 void
999 TimeAxisView::reset_height()
1001 set_height (height);
1003 for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
1004 (*i)->set_height ((*i)->height);
1008 void
1009 TimeAxisView::compute_controls_size_info ()
1011 Gtk::Window window (Gtk::WINDOW_TOPLEVEL);
1012 Gtk::Table two_row_table (2, 8);
1013 Gtk::Table one_row_table (1, 8);
1014 Button* buttons[5];
1015 const int border_width = 2;
1016 const int extra_height = (2 * border_width) + 2 // 2 pixels for the controls frame
1017 + 10; // resizer button
1019 window.add (one_row_table);
1021 one_row_table.set_border_width (border_width);
1022 one_row_table.set_row_spacings (0);
1023 one_row_table.set_col_spacings (0);
1024 one_row_table.set_homogeneous (true);
1026 two_row_table.set_border_width (border_width);
1027 two_row_table.set_row_spacings (0);
1028 two_row_table.set_col_spacings (0);
1029 two_row_table.set_homogeneous (true);
1031 for (int i = 0; i < 5; ++i) {
1032 buttons[i] = manage (new Button (X_("f")));
1033 buttons[i]->set_name ("TrackMuteButton");
1036 one_row_table.attach (*buttons[0], 6, 7, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
1038 one_row_table.show_all ();
1039 Gtk::Requisition req(one_row_table.size_request ());
1042 // height required to show 1 row of buttons
1044 hSmaller = req.height + extra_height;
1046 window.remove ();
1047 window.add (two_row_table);
1049 two_row_table.attach (*buttons[1], 5, 6, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
1050 two_row_table.attach (*buttons[2], 6, 7, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
1051 two_row_table.attach (*buttons[3], 7, 8, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
1052 two_row_table.attach (*buttons[4], 8, 9, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
1054 two_row_table.show_all ();
1055 req = two_row_table.size_request ();
1057 // height required to show all normal buttons
1059 hNormal = req.height + extra_height;
1061 // these heights are all just larger than normal. no more
1062 // elements are visible (yet).
1064 hLarger = hNormal + 50;
1065 hLarge = hNormal + 150;
1066 hLargest = hNormal + 250;
1068 // height required to show track name
1070 hSmall = 27;
1073 void
1074 TimeAxisView::show_name_label ()
1076 if (!(name_packing & NameLabelPacked)) {
1077 name_hbox.pack_start (name_label, true, true);
1078 name_packing = NamePackingBits (name_packing | NameLabelPacked);
1079 name_hbox.show ();
1080 name_label.show ();
1084 void
1085 TimeAxisView::show_name_entry ()
1087 if (!(name_packing & NameEntryPacked)) {
1088 name_hbox.pack_start (name_entry, true, true);
1089 name_packing = NamePackingBits (name_packing | NameEntryPacked);
1090 name_hbox.show ();
1091 name_entry.show ();
1095 void
1096 TimeAxisView::hide_name_label ()
1098 if (name_packing & NameLabelPacked) {
1099 name_hbox.remove (name_label);
1100 name_packing = NamePackingBits (name_packing & ~NameLabelPacked);
1104 void
1105 TimeAxisView::hide_name_entry ()
1107 if (name_packing & NameEntryPacked) {
1108 name_hbox.remove (name_entry);
1109 name_packing = NamePackingBits (name_packing & ~NameEntryPacked);
1113 void
1114 TimeAxisView::color_handler ()
1116 for (list<SelectionRect*>::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) {
1118 (*i)->rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_SelectionRect.get();
1119 (*i)->rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1121 (*i)->start_trim->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1122 (*i)->start_trim->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1124 (*i)->end_trim->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1125 (*i)->end_trim->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1128 for (list<SelectionRect*>::iterator i = free_selection_rects.begin(); i != free_selection_rects.end(); ++i) {
1130 (*i)->rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_SelectionRect.get();
1131 (*i)->rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1133 (*i)->start_trim->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1134 (*i)->start_trim->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1136 (*i)->end_trim->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1137 (*i)->end_trim->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_Selection.get();
1141 TimeAxisView*
1142 TimeAxisView::covers_y_position (double y)
1144 if (hidden()) {
1145 return 0;
1148 if (y_position <= y && y < (y_position + height)) {
1149 return this;
1152 for (vector<TimeAxisView*>::iterator i = children.begin(); i != children.end(); ++i) {
1153 TimeAxisView* tv;
1155 if ((tv = (*i)->covers_y_position (y)) != 0) {
1156 return tv;
1160 return 0;
1163 void
1164 TimeAxisView::show_feature_lines (const AnalysisFeatureList& pos)
1166 analysis_features = pos;
1167 reshow_feature_lines ();
1171 void
1172 TimeAxisView::hide_feature_lines ()
1174 list<ArdourCanvas::SimpleLine*>::iterator l;
1176 for (l = feature_lines.begin(); l != feature_lines.end(); ++l) {
1177 (*l)->hide();
1181 void
1182 TimeAxisView::reshow_feature_lines ()
1184 while (feature_lines.size()< analysis_features.size()) {
1185 ArdourCanvas::SimpleLine* l = new ArdourCanvas::SimpleLine (*canvas_display);
1186 l->property_color_rgba() = (guint) ARDOUR_UI::config()->canvasvar_ZeroLine.get();
1187 feature_lines.push_back (l);
1190 while (feature_lines.size() > analysis_features.size()) {
1191 ArdourCanvas::SimpleLine *line = feature_lines.back();
1192 feature_lines.pop_back ();
1193 delete line;
1196 AnalysisFeatureList::const_iterator i;
1197 list<ArdourCanvas::SimpleLine*>::iterator l;
1199 for (i = analysis_features.begin(), l = feature_lines.begin(); i != analysis_features.end() && l != feature_lines.end(); ++i, ++l) {
1200 (*l)->property_x1() = editor.frame_to_pixel (*i);
1201 (*l)->property_x2() = editor.frame_to_pixel (*i);
1202 (*l)->property_y1() = 0;
1203 (*l)->property_y2() = current_height();
1204 (*l)->show ();
1208 bool
1209 TimeAxisView::resizer_button_press (GdkEventButton* event)
1211 resize_drag_start = event->y_root;
1212 resize_idle_target = current_height();
1213 editor.start_resize_line_ops ();
1214 if (resizer_motion_signal) {
1215 resizer_motion_signal.disconnect ();
1217 resizer_motion_signal = resizer.signal_motion_notify_event().connect (mem_fun (*this, &TimeAxisView::resizer_motion));
1218 return true;
1221 bool
1222 TimeAxisView::resizer_button_release (GdkEventButton* ev)
1224 resize_drag_start = -1;
1225 editor.end_resize_line_ops ();
1226 resizer_motion_signal.disconnect ();
1227 return true;
1230 void
1231 TimeAxisView::idle_resize (uint32_t h)
1233 set_height (h);
1236 bool
1237 TimeAxisView::resizer_motion (GdkEventMotion* ev)
1239 if (resize_drag_start < 0) {
1240 return true;
1243 int32_t delta = (int32_t) floor (resize_drag_start - ev->y_root);
1244 int32_t target = resize_idle_target - delta;
1246 resize_idle_target = std::max (target, (int) hSmall);
1247 editor.add_to_idle_resize (this, resize_idle_target);
1248 if (target >= (int) hSmall ) {
1249 resize_drag_start = ev->y_root;
1252 return true;
1255 bool
1256 TimeAxisView::resizer_expose (GdkEventExpose* event)
1258 int w, h, x, y, d;
1259 Glib::RefPtr<Gdk::Window> win (resizer.get_window());
1260 Glib::RefPtr<Gdk::GC> dark (resizer.get_style()->get_fg_gc (STATE_NORMAL));
1261 Glib::RefPtr<Gdk::GC> light (resizer.get_style()->get_bg_gc (STATE_NORMAL));
1263 win->draw_rectangle (controls_ebox.get_style()->get_bg_gc(STATE_NORMAL),
1264 true,
1265 event->area.x,
1266 event->area.y,
1267 event->area.width,
1268 event->area.height);
1270 win->get_geometry (x, y, w, h, d);
1272 /* handle/line #1 */
1274 win->draw_line (dark, 0, 0, w - 2, 0);
1275 win->draw_point (dark, 0, 1);
1276 win->draw_line (light, 1, 1, w - 1, 1);
1277 win->draw_point (light, w - 1, 0);
1279 /* handle/line #2 */
1281 win->draw_line (dark, 0, 4, w - 2, 4);
1282 win->draw_point (dark, 0, 5);
1283 win->draw_line (light, 1, 5, w - 1, 5);
1284 win->draw_point (light, w - 1, 4);
1286 /* handle/line #3 */
1288 win->draw_line (dark, 0, 8, w - 2, 8);
1289 win->draw_point (dark, 0, 9);
1290 win->draw_line (light, 1, 9, w - 1, 9);
1291 win->draw_point (light, w - 1, 8);
1293 /* use vertical resize mouse cursor */
1294 win->set_cursor(Gdk::Cursor(Gdk::SB_V_DOUBLE_ARROW));
1296 return true;