merge fix
[ardour.git] / gtk2_ardour / time_axis_view_item.cc
1 /*
2     Copyright (C) 2003 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <utility>
21
22 #include "pbd/error.h"
23 #include "pbd/stacktrace.h"
24
25 #include "ardour/types.h"
26 #include "ardour/ardour.h"
27
28 #include "gtkmm2ext/utils.h"
29 #include "gtkmm2ext/gui_thread.h"
30
31 #include "canvas/container.h"
32 #include "canvas/rectangle.h"
33 #include "canvas/debug.h"
34 #include "canvas/text.h"
35 #include "canvas/colors.h"
36
37 #include "ardour/profile.h"
38
39 #include "ardour_ui.h"
40 /*
41  * ardour_ui.h was moved up in the include list
42  * due to a conflicting definition of 'Rect' between
43  * Apple's MacTypes.h file and GTK
44  */
45
46 #include "public_editor.h"
47 #include "time_axis_view_item.h"
48 #include "time_axis_view.h"
49 #include "utils.h"
50 #include "rgb_macros.h"
51
52 #include "i18n.h"
53
54 using namespace std;
55 using namespace Editing;
56 using namespace Glib;
57 using namespace PBD;
58 using namespace ARDOUR;
59 using namespace ARDOUR_UI_UTILS;
60 using namespace Gtkmm2ext;
61
62 Pango::FontDescription TimeAxisViewItem::NAME_FONT;
63 const double TimeAxisViewItem::NAME_X_OFFSET = 15.0;
64 const double TimeAxisViewItem::GRAB_HANDLE_TOP = 0.0;
65 const double TimeAxisViewItem::GRAB_HANDLE_WIDTH = 10.0;
66
67 int    TimeAxisViewItem::NAME_HEIGHT;
68 double TimeAxisViewItem::NAME_Y_OFFSET;
69 double TimeAxisViewItem::NAME_HIGHLIGHT_SIZE;
70 double TimeAxisViewItem::NAME_HIGHLIGHT_THRESH;
71
72 void
73 TimeAxisViewItem::set_constant_heights ()
74 {
75         NAME_FONT = Pango::FontDescription (ARDOUR_UI::config()->get_SmallFont());
76
77         Gtk::Window win;
78         Gtk::Label foo;
79         win.add (foo);
80
81         Glib::RefPtr<Pango::Layout> layout = foo.create_pango_layout (X_("Hg")); /* ascender + descender */
82         int width = 0;
83         int height = 0;
84
85         layout->set_font_description (NAME_FONT);
86         get_pixel_size (layout, width, height);
87
88         layout = foo.create_pango_layout (X_("H")); /* just the ascender */
89
90         NAME_HEIGHT = height;
91
92         /* Config->get_show_name_highlight) == true: 
93                 Y_OFFSET is measured from bottom of the time axis view item.
94            Config->get_show_name_highlight) == false: 
95                 Y_OFFSET is measured from the top of the time axis view item.
96         */
97
98         if (ARDOUR_UI::config()->get_show_name_highlight()) {
99                 NAME_Y_OFFSET = height + 1;
100                 NAME_HIGHLIGHT_SIZE = height + 2;
101         } else {
102                 NAME_Y_OFFSET = 3;
103                 NAME_HIGHLIGHT_SIZE = 0;
104         }
105         NAME_HIGHLIGHT_THRESH = NAME_HIGHLIGHT_SIZE * 3;
106 }
107
108 /**
109  * Construct a new TimeAxisViewItem.
110  *
111  * @param it_name the unique name of this item
112  * @param parent the parent canvas group
113  * @param tv the TimeAxisView we are going to be added to
114  * @param spu samples per unit
115  * @param base_color
116  * @param start the start point of this item
117  * @param duration the duration of this item
118  * @param recording true if this is a recording region view
119  * @param automation true if this is an automation region view
120  */
121 TimeAxisViewItem::TimeAxisViewItem(
122         const string & it_name, ArdourCanvas::Item& parent, TimeAxisView& tv, double spu, uint32_t base_color,
123         framepos_t start, framecnt_t duration, bool recording, bool automation, Visibility vis
124         )
125         : trackview (tv)
126         , frame_position (-1)
127         , item_name (it_name)
128         , selection_frame (0)
129         , _height (1.0)
130         , _recregion (recording)
131         , _automation (automation)
132         , _dragging (false)
133         , _width (0.0)
134 {
135         init (&parent, spu, base_color, start, duration, vis, true, true);
136 }
137
138 TimeAxisViewItem::TimeAxisViewItem (const TimeAxisViewItem& other)
139         : trackable (other)
140         , Selectable (other)
141         , PBD::ScopedConnectionList()
142         , trackview (other.trackview)
143         , frame_position (-1)
144         , item_name (other.item_name)
145         , selection_frame (0)
146         , _height (1.0)
147         , _recregion (other._recregion)
148         , _automation (other._automation)
149         , _dragging (other._dragging)
150         , _width (0.0)
151 {
152         /* share the other's parent, but still create a new group */
153
154         ArdourCanvas::Item* parent = other.group->parent();
155         
156         _selected = other._selected;
157         
158         init (parent, other.samples_per_pixel, other.fill_color, other.frame_position,
159               other.item_duration, other.visibility, other.wide_enough_for_name, other.high_enough_for_name);
160 }
161
162 void
163 TimeAxisViewItem::init (ArdourCanvas::Item* parent, double fpp, uint32_t base_color, 
164                         framepos_t start, framepos_t duration, Visibility vis, 
165                         bool wide, bool high)
166 {
167         group = new ArdourCanvas::Container (parent);
168         CANVAS_DEBUG_NAME (group, string_compose ("TAVI group for %1", get_item_name()));
169         group->Event.connect (sigc::mem_fun (*this, &TimeAxisViewItem::canvas_group_event));
170
171         fill_color = base_color;
172         fill_color_name = "time axis view item base";
173         samples_per_pixel = fpp;
174         frame_position = start;
175         item_duration = duration;
176         name_connected = false;
177         position_locked = false;
178         max_item_duration = ARDOUR::max_framepos;
179         min_item_duration = 0;
180         show_vestigial = true;
181         visibility = vis;
182         _sensitive = true;
183         name_text_width = 0;
184         last_item_width = 0;
185         wide_enough_for_name = wide;
186         high_enough_for_name = high;
187         vestigial_frame = 0;
188
189         if (duration == 0) {
190                 warning << "Time Axis Item Duration == 0" << endl;
191         }
192
193         if (visibility & ShowFrame) {
194                 frame = new ArdourCanvas::Rectangle (group, 
195                                                      ArdourCanvas::Rect (0.0, 0.0, 
196                                                                          trackview.editor().sample_to_pixel(duration), 
197                                                                          trackview.current_height()));
198                 
199                 frame->set_outline_what (ArdourCanvas::Rectangle::What (ArdourCanvas::Rectangle::LEFT|ArdourCanvas::Rectangle::RIGHT));
200
201                 CANVAS_DEBUG_NAME (frame, string_compose ("frame for %1", get_item_name()));
202
203                 if (_recregion) {
204                         frame->set_outline_color (ARDOUR_UI::config()->color ("recording rect"));
205                 } else {
206                         frame->set_outline_color (ARDOUR_UI::config()->color ("time axis frame"));
207                 }
208         }
209         
210         if (ARDOUR_UI::config()->get_show_name_highlight() && (visibility & ShowNameHighlight)) {
211
212                 /* rectangle size will be set in ::manage_name_highlight() */
213                 name_highlight = new ArdourCanvas::Rectangle (group);
214                 CANVAS_DEBUG_NAME (name_highlight, string_compose ("name highlight for %1", get_item_name()));
215                 name_highlight->set_data ("timeaxisviewitem", this);
216                 name_highlight->set_outline_what (ArdourCanvas::Rectangle::TOP);
217                 name_highlight->set_outline_color (RGBA_TO_UINT (0,0,0,255)); // this should use a theme color
218
219         } else {
220                 name_highlight = 0;
221         }
222
223         if (visibility & ShowNameText) {
224                 name_text = new ArdourCanvas::Text (group);
225                 CANVAS_DEBUG_NAME (name_text, string_compose ("name text for %1", get_item_name()));
226                 if (ARDOUR_UI::config()->get_show_name_highlight()) {
227                         name_text->set_position (ArdourCanvas::Duple (NAME_X_OFFSET, trackview.current_height() - NAME_Y_OFFSET));
228                 } else {
229                         name_text->set_position (ArdourCanvas::Duple (NAME_X_OFFSET, NAME_Y_OFFSET));
230                 }
231                 name_text->set_font_description (NAME_FONT);
232                 name_text->set_ignore_events (true);
233         } else {
234                 name_text = 0;
235         }
236
237         /* create our grab handles used for trimming/duration etc */
238         if (!_recregion && !_automation) {
239                 double top   = TimeAxisViewItem::GRAB_HANDLE_TOP;
240                 double width = TimeAxisViewItem::GRAB_HANDLE_WIDTH;
241
242                 frame_handle_start = new ArdourCanvas::Rectangle (group, ArdourCanvas::Rect (0.0, top, width, trackview.current_height()));
243                 CANVAS_DEBUG_NAME (frame_handle_start, "TAVI frame handle start");
244                 frame_handle_start->set_outline (false);
245                 frame_handle_start->set_fill (false);
246                 frame_handle_start->Event.connect (sigc::bind (sigc::mem_fun (*this, &TimeAxisViewItem::frame_handle_crossing), frame_handle_start));
247
248                 frame_handle_end = new ArdourCanvas::Rectangle (group, ArdourCanvas::Rect (0.0, top, width, trackview.current_height()));
249                 CANVAS_DEBUG_NAME (frame_handle_end, "TAVI frame handle end");
250                 frame_handle_end->set_outline (false);
251                 frame_handle_end->set_fill (false);
252                 frame_handle_end->Event.connect (sigc::bind (sigc::mem_fun (*this, &TimeAxisViewItem::frame_handle_crossing), frame_handle_end));
253         } else {
254                 frame_handle_start = frame_handle_end = 0;
255         }
256
257         set_color (base_color);
258
259         set_duration (item_duration, this);
260         set_position (start, this);
261
262         Config->ParameterChanged.connect (*this, invalidator (*this), boost::bind (&TimeAxisViewItem::parameter_changed, this, _1), gui_context ());
263         ARDOUR_UI::config()->ParameterChanged.connect (sigc::mem_fun (*this, &TimeAxisViewItem::parameter_changed));
264 }
265
266 TimeAxisViewItem::~TimeAxisViewItem()
267 {
268         delete group;
269 }
270
271 bool
272 TimeAxisViewItem::canvas_group_event (GdkEvent* /*ev*/)
273 {
274         return false;
275 }
276
277 /**
278  * Set the position of this item on the timeline.
279  *
280  * @param pos the new position
281  * @param src the identity of the object that initiated the change
282  * @return true on success
283  */
284
285 bool
286 TimeAxisViewItem::set_position(framepos_t pos, void* src, double* delta)
287 {
288         if (position_locked) {
289                 return false;
290         }
291
292         frame_position = pos;
293
294         double new_unit_pos = trackview.editor().sample_to_pixel (pos);
295
296         if (delta) {
297                 (*delta) = new_unit_pos - group->position().x;
298                 if (*delta == 0.0) {
299                         return true;
300                 }
301         } else {
302                 if (new_unit_pos == group->position().x) {
303                         return true;
304                 }
305         }
306
307         group->set_x_position (new_unit_pos);
308         PositionChanged (frame_position, src); /* EMIT_SIGNAL */
309
310         return true;
311 }
312
313 /** @return position of this item on the timeline */
314 framepos_t
315 TimeAxisViewItem::get_position() const
316 {
317         return frame_position;
318 }
319
320 /**
321  * Set the duration of this item.
322  *
323  * @param dur the new duration of this item
324  * @param src the identity of the object that initiated the change
325  * @return true on success
326  */
327
328 bool
329 TimeAxisViewItem::set_duration (framecnt_t dur, void* src)
330 {
331         if ((dur > max_item_duration) || (dur < min_item_duration)) {
332                 warning << string_compose (
333                                 P_("new duration %1 frame is out of bounds for %2", "new duration of %1 frames is out of bounds for %2", dur),
334                                 get_item_name(), dur)
335                         << endmsg;
336                 return false;
337         }
338
339         if (dur == 0) {
340                 group->hide();
341         }
342
343         item_duration = dur;
344
345         double end_pixel = trackview.editor().sample_to_pixel (frame_position + dur);
346         double first_pixel = trackview.editor().sample_to_pixel (frame_position);
347
348         reset_width_dependent_items (end_pixel - first_pixel);
349
350         DurationChanged (dur, src); /* EMIT_SIGNAL */
351         return true;
352 }
353
354 /** @return duration of this item */
355 framepos_t
356 TimeAxisViewItem::get_duration() const
357 {
358         return item_duration;
359 }
360
361 /**
362  * Set the maximum duration that this item can have.
363  *
364  * @param dur the new maximum duration
365  * @param src the identity of the object that initiated the change
366  */
367 void
368 TimeAxisViewItem::set_max_duration(framecnt_t dur, void* src)
369 {
370         max_item_duration = dur;
371         MaxDurationChanged(max_item_duration, src); /* EMIT_SIGNAL */
372 }
373
374 /** @return the maximum duration that this item may have */
375 framecnt_t
376 TimeAxisViewItem::get_max_duration() const
377 {
378         return max_item_duration;
379 }
380
381 /**
382  * Set the minimum duration that this item may have.
383  *
384  * @param the minimum duration that this item may be set to
385  * @param src the identity of the object that initiated the change
386  */
387 void
388 TimeAxisViewItem::set_min_duration(framecnt_t dur, void* src)
389 {
390         min_item_duration = dur;
391         MinDurationChanged(max_item_duration, src); /* EMIT_SIGNAL */
392 }
393
394 /** @return the minimum duration that this item mey have */
395 framecnt_t
396 TimeAxisViewItem::get_min_duration() const
397 {
398         return min_item_duration;
399 }
400
401 /**
402  * Set whether this item is locked to its current position.
403  * Locked items cannot be moved until the item is unlocked again.
404  *
405  * @param yn true to lock this item to its current position
406  * @param src the identity of the object that initiated the change
407  */
408 void
409 TimeAxisViewItem::set_position_locked(bool yn, void* src)
410 {
411         position_locked = yn;
412         set_trim_handle_colors();
413         PositionLockChanged (position_locked, src); /* EMIT_SIGNAL */
414 }
415
416 /** @return true if this item is locked to its current position */
417 bool
418 TimeAxisViewItem::get_position_locked() const
419 {
420         return position_locked;
421 }
422
423 /**
424  * Set whether the maximum duration constraint is active.
425  *
426  * @param active set true to enforce the max duration constraint
427  * @param src the identity of the object that initiated the change
428  */
429 void
430 TimeAxisViewItem::set_max_duration_active (bool active, void* /*src*/)
431 {
432         max_duration_active = active;
433 }
434
435 /** @return true if the maximum duration constraint is active */
436 bool
437 TimeAxisViewItem::get_max_duration_active() const
438 {
439         return max_duration_active;
440 }
441
442 /**
443  * Set whether the minimum duration constraint is active.
444  *
445  * @param active set true to enforce the min duration constraint
446  * @param src the identity of the object that initiated the change
447  */
448
449 void
450 TimeAxisViewItem::set_min_duration_active (bool active, void* /*src*/)
451 {
452         min_duration_active = active;
453 }
454
455 /** @return true if the maximum duration constraint is active */
456 bool
457 TimeAxisViewItem::get_min_duration_active() const
458 {
459         return min_duration_active;
460 }
461
462 /**
463  * Set the name of this item.
464  *
465  * @param new_name the new name of this item
466  * @param src the identity of the object that initiated the change
467  */
468
469 void
470 TimeAxisViewItem::set_item_name(std::string new_name, void* src)
471 {
472         if (new_name != item_name) {
473                 std::string temp_name = item_name;
474                 item_name = new_name;
475                 NameChanged (item_name, temp_name, src); /* EMIT_SIGNAL */
476         }
477 }
478
479 /** @return the name of this item */
480 std::string
481 TimeAxisViewItem::get_item_name() const
482 {
483         return item_name;
484 }
485
486 /**
487  * Set selection status.
488  *
489  * @param yn true if this item is currently selected
490  */
491 void
492 TimeAxisViewItem::set_selected(bool yn)
493 {
494         if (_selected == yn) {
495                 return;
496         }
497         
498         Selectable::set_selected (yn);
499         set_frame_color ();
500         set_name_text_color ();
501
502         if (_selected && frame) {
503                 if (!selection_frame) {
504                         selection_frame = new ArdourCanvas::Rectangle (group);
505                         selection_frame->set_fill (false);
506                         selection_frame->set_outline_color (ARDOUR_UI::config()->color ("selected time axis frame"));
507                         selection_frame->set_ignore_events (true);
508                 }
509                 selection_frame->set (frame->get().shrink (1.0));
510                 selection_frame->show ();
511         } else {
512                 if (selection_frame) {
513                         selection_frame->hide ();
514                 }
515         }
516 }
517
518 /** @return the TimeAxisView that this item is on */
519 TimeAxisView&
520 TimeAxisViewItem::get_time_axis_view () const
521 {
522         return trackview;
523 }
524
525 /**
526  * Set the displayed item text.
527  * This item is the visual text name displayed on the canvas item, this can be different to the name of the item.
528  *
529  * @param new_name the new name text to display
530  */
531
532 void
533 TimeAxisViewItem::set_name_text(const string& new_name)
534 {
535         if (!name_text) {
536                 return;
537         }
538
539         name_text_width = pixel_width (new_name, NAME_FONT) + 2;
540         name_text->set (new_name);
541
542 }
543
544 /**
545  * Set the height of this item.
546  *
547  * @param h new height
548  */
549 void
550 TimeAxisViewItem::set_height (double height)
551 {
552         _height = height;
553
554         manage_name_highlight ();
555
556         if (visibility & ShowNameText) {
557                 if (ARDOUR_UI::config()->get_show_name_highlight()) {
558                         name_text->set_y_position (height - NAME_Y_OFFSET); 
559                 } else {
560                         name_text->set_y_position (NAME_Y_OFFSET); 
561                 }
562         }
563
564         if (frame) {
565                 
566                 frame->set_y0 (0.0);
567                 frame->set_y1 (height);
568
569                 if (frame_handle_start) {
570                         frame_handle_start->set_y1 (height);
571                         frame_handle_end->set_y1 (height);
572                 }
573
574                 if (selection_frame) {
575                         selection_frame->set (frame->get().shrink (1.0));
576                 }
577         }
578
579         if (vestigial_frame) {
580                 vestigial_frame->set_y0 (0.0);
581                 vestigial_frame->set_y1 (height);
582         }
583
584         set_colors ();
585 }
586
587 void
588 TimeAxisViewItem::manage_name_highlight ()
589 {
590         if (!name_highlight) {
591                 return;
592         }
593
594         if (_height < NAME_HIGHLIGHT_THRESH) {
595                 high_enough_for_name = false;
596         } else {
597                 high_enough_for_name = true;
598         }
599
600         if (_width < 2.0) {
601                 wide_enough_for_name = false;
602         } else {
603                 wide_enough_for_name = true;
604         }
605
606         if (name_highlight && wide_enough_for_name && high_enough_for_name) {
607
608                 name_highlight->show();
609                 // name_highlight->set_x_position (1.0);
610                 name_highlight->set (ArdourCanvas::Rect (0.0, (double) _height - NAME_HIGHLIGHT_SIZE,  _width - 2.0, _height));
611                         
612         } else {
613                 name_highlight->hide();
614         }
615
616         manage_name_text ();
617 }
618
619 void
620 TimeAxisViewItem::set_color (uint32_t base_color)
621 {
622         fill_color = base_color;
623         set_colors ();
624 }
625
626 ArdourCanvas::Item*
627 TimeAxisViewItem::get_canvas_frame()
628 {
629         return frame;
630 }
631
632 ArdourCanvas::Item*
633 TimeAxisViewItem::get_canvas_group()
634 {
635         return group;
636 }
637
638 ArdourCanvas::Item*
639 TimeAxisViewItem::get_name_highlight()
640 {
641         return name_highlight;
642 }
643
644 /**
645  * Convenience method to set the various canvas item colors
646  */
647 void
648 TimeAxisViewItem::set_colors()
649 {
650         set_frame_color ();
651
652         if (name_highlight) {
653                 name_highlight->set_fill_color (fill_color);
654         }
655
656         set_name_text_color ();
657         set_trim_handle_colors();
658 }
659
660 void
661 TimeAxisViewItem::set_name_text_color ()
662 {
663         if (!name_text) {
664                 return;
665         }
666         
667
668         uint32_t f;
669         
670         if (ARDOUR_UI::config()->get_show_name_highlight()) {
671                 /* name text will always be on top of name highlight, which
672                    will always use our fill color.
673                 */
674                 f = fill_color;
675         } else {
676                 /* name text will be on top of the item, whose color
677                    may vary depending on various conditions.
678                 */
679                 f = get_fill_color ();
680         }
681
682         name_text->set_color (ArdourCanvas::contrasting_text_color (f));
683 }
684
685 ArdourCanvas::Color
686 TimeAxisViewItem::get_fill_color () const
687 {
688         const std::string mod_name = (_dragging ? "dragging region" : fill_color_name);
689
690         if (_selected) {
691                 return ARDOUR_UI::config()->color_mod ("selected region base", mod_name);
692         } else if (_recregion) {
693                 return ARDOUR_UI::config()->color ("recording rect");
694         } else if ((!ARDOUR_UI::config()->get_show_name_highlight() || high_enough_for_name) &&
695                    !ARDOUR_UI::config()->get_color_regions_using_track_color()) {
696                 return ARDOUR_UI::config()->color_mod (fill_color_name, mod_name);
697         }
698         return ARDOUR_UI::config()->color_mod (fill_color, mod_name);
699 }
700
701 /**
702  * Sets the frame color depending on whether this item is selected
703  */
704 void
705 TimeAxisViewItem::set_frame_color()
706 {
707         if (!frame) {
708                 return;
709         }
710
711         frame->set_fill_color (get_fill_color());
712         set_frame_gradient ();
713
714         if (!_recregion) {
715                 frame->set_outline_color (ARDOUR_UI::config()->color ("time axis frame"));
716         }
717 }
718
719 void
720 TimeAxisViewItem::set_frame_gradient ()
721 {
722         if (ARDOUR_UI::config()->get_timeline_item_gradient_depth() == 0.0) {
723                 frame->set_gradient (ArdourCanvas::Fill::StopList (), 0);
724                 return;
725         }
726                 
727         ArdourCanvas::Fill::StopList stops;
728         double r, g, b, a;
729         double h, s, v;
730         ArdourCanvas::Color f (get_fill_color());
731
732         /* need to get alpha value */
733         ArdourCanvas::color_to_rgba (f, r, g, b, a);
734         
735         stops.push_back (std::make_pair (0.0, f));
736         
737         /* now a darker version */
738         
739         ArdourCanvas::color_to_hsv (f, h, s, v);
740
741         v = min (1.0, v * (1.0 - ARDOUR_UI::config()->get_timeline_item_gradient_depth()));
742         
743         ArdourCanvas::Color darker = ArdourCanvas::hsva_to_color (h, s, v, a);
744         stops.push_back (std::make_pair (1.0, darker));
745         
746         frame->set_gradient (stops, true);
747 }
748
749 /**
750  * Set the colors of the start and end trim handle depending on object state
751  */
752 void
753 TimeAxisViewItem::set_trim_handle_colors()
754 {
755 #if 1
756         /* Leave them transparent for now */
757         if (frame_handle_start) {
758                 frame_handle_start->set_fill_color (0x00000000);
759                 frame_handle_end->set_fill_color (0x00000000);
760         }
761 #else
762         if (frame_handle_start) {
763                 if (position_locked) {
764                         frame_handle_start->set_fill_color (ARDOUR_UI::config()->get_TrimHandleLocked());
765                         frame_handle_end->set_fill_color (ARDOUR_UI::config()->get_TrimHandleLocked());
766                 } else {
767                         frame_handle_start->set_fill_color (ARDOUR_UI::config()->get_TrimHandle());
768                         frame_handle_end->set_fill_color (ARDOUR_UI::config()->get_TrimHandle());
769                 }
770         }
771 #endif
772 }
773
774 bool
775 TimeAxisViewItem::frame_handle_crossing (GdkEvent* ev, ArdourCanvas::Rectangle* item)
776 {
777         switch (ev->type) {
778         case GDK_LEAVE_NOTIFY:
779                 /* always hide the handle whenever we leave, no matter what mode */
780                 item->set_fill (false);
781                 break;
782         case GDK_ENTER_NOTIFY:
783                 if (trackview.editor().effective_mouse_mode() == Editing::MouseObject) {
784                         /* Never set this to be visible in other modes.  Note, however,
785                            that we do need to undo visibility (LEAVE_NOTIFY case above) no
786                            matter what the mode is. */
787                         item->set_fill (true);
788                 }
789                 break;
790         default:
791                 break;
792         }
793         return false;
794 }
795
796 /** @return the frames per pixel */
797 double
798 TimeAxisViewItem::get_samples_per_pixel () const
799 {
800         return samples_per_pixel;
801 }
802
803 /** Set the frames per pixel of this item.
804  *  This item is used to determine the relative visual size and position of this item
805  *  based upon its duration and start value.
806  *
807  *  @param fpp the new frames per pixel
808  */
809 void
810 TimeAxisViewItem::set_samples_per_pixel (double fpp)
811 {
812         samples_per_pixel = fpp;
813         set_position (this->get_position(), this);
814
815         double end_pixel = trackview.editor().sample_to_pixel (frame_position + get_duration());
816         double first_pixel = trackview.editor().sample_to_pixel (frame_position);
817
818         reset_width_dependent_items (end_pixel - first_pixel);
819 }
820
821 void
822 TimeAxisViewItem::reset_width_dependent_items (double pixel_width)
823 {
824         _width = pixel_width;
825
826         manage_name_highlight ();
827         manage_name_text ();
828
829         if (pixel_width < 2.0) {
830
831                 if (show_vestigial) {
832
833                         if (!vestigial_frame) {
834                                 vestigial_frame = new ArdourCanvas::Rectangle (group, ArdourCanvas::Rect (0.0, 0.0, 2.0, trackview.current_height()));
835                                 CANVAS_DEBUG_NAME (vestigial_frame, string_compose ("vestigial frame for %1", get_item_name()));
836                                 vestigial_frame->set_outline_color (ARDOUR_UI::config()->color ("vestigial frame"));
837                                 vestigial_frame->set_fill_color (ARDOUR_UI::config()->color ("vestigial frame"));
838                                 vestigial_frame->set_outline_what (ArdourCanvas::Rectangle::What (ArdourCanvas::Rectangle::LEFT|ArdourCanvas::Rectangle::RIGHT));
839                         }
840
841                         vestigial_frame->show();
842                 }
843
844                 if (frame) {
845                         frame->hide();
846                 }
847
848                 if (frame_handle_start) {
849                         frame_handle_start->hide();
850                         frame_handle_end->hide();
851                 }
852
853         } else {
854                 if (vestigial_frame) {
855                         vestigial_frame->hide();
856                 }
857
858                 if (frame) {
859                         frame->show();
860                         /* Note: x0 is always zero - the position is defined by
861                          * the position of the group, not the frame.
862                          */
863                         frame->set_x1 (pixel_width);
864
865                         if (selection_frame) {
866                                 selection_frame->set (frame->get().shrink (1.0));
867                         }
868                 }
869
870                 if (frame_handle_start) {
871                         if (pixel_width < (3 * TimeAxisViewItem::GRAB_HANDLE_WIDTH)) {
872                                 /*
873                                  * there's less than GRAB_HANDLE_WIDTH of the region between 
874                                  * the right-hand end of frame_handle_start and the left-hand
875                                  * end of frame_handle_end, so disable the handles
876                                  */
877
878                                 frame_handle_start->hide();
879                                 frame_handle_end->hide();
880                         } else {
881                                 frame_handle_start->show();
882                                 frame_handle_end->set_x0 (pixel_width - (TimeAxisViewItem::GRAB_HANDLE_WIDTH));
883                                 frame_handle_end->set_x1 (pixel_width);
884                                 frame_handle_end->show();
885                         }
886                 }
887         }
888 }
889
890 void
891 TimeAxisViewItem::manage_name_text ()
892 {
893         int visible_name_width;
894
895         if (!name_text) {
896                 return;
897         }
898
899         if (!wide_enough_for_name || !high_enough_for_name) {
900                 name_text->hide ();
901                 return;
902         }
903                 
904         if (name_text->text().empty()) {
905                 name_text->hide ();
906         }
907
908         visible_name_width = name_text_width;
909
910         if (visible_name_width > _width - NAME_X_OFFSET) {
911                 visible_name_width = _width - NAME_X_OFFSET;
912         }
913
914         if (visible_name_width < 1) {
915                 name_text->hide ();
916         } else {
917                 name_text->clamp_width (visible_name_width);
918                 name_text->show ();
919         }
920 }
921
922 /**
923  * Callback used to remove this time axis item during the gtk idle loop.
924  * This is used to avoid deleting the obejct while inside the remove_this_item
925  * method.
926  *
927  * @param item the TimeAxisViewItem to remove.
928  * @param src the identity of the object that initiated the change.
929  */
930 gint
931 TimeAxisViewItem::idle_remove_this_item(TimeAxisViewItem* item, void* src)
932 {
933         item->ItemRemoved (item->get_item_name(), src); /* EMIT_SIGNAL */
934         delete item;
935         item = 0;
936         return false;
937 }
938
939 void
940 TimeAxisViewItem::set_y (double y)
941 {
942         group->set_y_position (y);
943 }
944
945 void
946 TimeAxisViewItem::parameter_changed (string p)
947 {
948         if (p == "color-regions-using-track-color") {
949                 set_colors ();
950         } else if (p == "timeline-item-gradient-depth") {
951                 set_frame_gradient ();
952         }
953 }
954
955 void
956 TimeAxisViewItem::drag_start ()
957 {
958         _dragging = true;
959         set_frame_color ();
960 }
961
962 void
963 TimeAxisViewItem::drag_end ()
964 {
965         _dragging = false;
966         set_frame_color ();
967 }