reinstate context menu on stereo panner
[ardour.git] / gtk2_ardour / time_axis_view_item.cc
index 309b4dd1cb88510f03413ef5c7a25e389d0f0828..495efd578cbbf493e2f1591cc7e7feb4b60bfd3c 100644 (file)
@@ -23,7 +23,8 @@
 #include "ardour/types.h"
 #include "ardour/ardour.h"
 
-#include <gtkmm2ext/utils.h>
+#include "gtkmm2ext/utils.h"
+#include "gtkmm2ext/gui_thread.h"
 
 #include "ardour_ui.h"
 /*
@@ -47,6 +48,7 @@ using namespace Editing;
 using namespace Glib;
 using namespace PBD;
 using namespace ARDOUR;
+using namespace Gtkmm2ext;
 
 Pango::FontDescription* TimeAxisViewItem::NAME_FONT = 0;
 const double TimeAxisViewItem::NAME_X_OFFSET = 15.0;
@@ -94,7 +96,7 @@ TimeAxisViewItem::set_constant_heights ()
  */
 TimeAxisViewItem::TimeAxisViewItem(
        const string & it_name, ArdourCanvas::Group& parent, TimeAxisView& tv, double spu, Gdk::Color const & base_color,
-       nframes64_t start, nframes64_t duration, bool recording, bool automation, Visibility vis
+       framepos_t start, framecnt_t duration, bool recording, bool automation, Visibility vis
        )
        : trackview (tv)
        , _height (1.0)
@@ -136,17 +138,16 @@ TimeAxisViewItem::TimeAxisViewItem (const TimeAxisViewItem& other)
 
 void
 TimeAxisViewItem::init (
-       const string& it_name, double spu, Gdk::Color const & base_color, nframes64_t start, nframes64_t duration, Visibility vis, bool wide, bool high)
+       const string& it_name, double spu, Gdk::Color const & base_color, framepos_t start, framepos_t duration, Visibility vis, bool wide, bool high)
 {
        item_name = it_name;
        samples_per_unit = spu;
-       should_show_selection = true;
        frame_position = start;
        item_duration = duration;
        name_connected = false;
        fill_opacity = 60;
        position_locked = false;
-       max_item_duration = ARDOUR::max_frames;
+       max_item_duration = ARDOUR::max_framepos;
        min_item_duration = 0;
        show_vestigial = true;
        visibility = vis;
@@ -155,6 +156,7 @@ TimeAxisViewItem::init (
        last_item_width = 0;
        wide_enough_for_name = wide;
        high_enough_for_name = high;
+        rect_visible = true;
 
        if (duration == 0) {
                warning << "Time Axis Item Duration == 0" << endl;
@@ -187,12 +189,15 @@ TimeAxisViewItem::init (
        if (visibility & ShowNameHighlight) {
                
                if (visibility & FullWidthNameHighlight) {
-                       name_highlight = new ArdourCanvas::SimpleRect (*group, 0.0, trackview.editor().frame_to_pixel(item_duration), trackview.current_height() - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE, trackview.current_height() - 1);
+                       name_highlight = new ArdourCanvas::SimpleRect (*group, 0.0, trackview.editor().frame_to_pixel(item_duration), trackview.current_height() - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE, trackview.current_height());
                } else {
-                       name_highlight = new ArdourCanvas::SimpleRect (*group, 1.0, trackview.editor().frame_to_pixel(item_duration) - 1, trackview.current_height() - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE, trackview.current_height() - 1);
+                       name_highlight = new ArdourCanvas::SimpleRect (*group, 1.0, trackview.editor().frame_to_pixel(item_duration) - 1, trackview.current_height() - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE, trackview.current_height());
                }
                
                name_highlight->set_data ("timeaxisviewitem", this);
+                name_highlight->property_outline_what() = 0x4;
+                /* we should really use a canvas color property here */
+               name_highlight->property_outline_color_rgba() = RGBA_TO_UINT (0,0,0,255);
 
        } else {
                name_highlight = 0;
@@ -221,6 +226,8 @@ TimeAxisViewItem::init (
 
        set_duration (item_duration, this);
        set_position (start, this);
+
+       Config->ParameterChanged.connect (*this, invalidator (*this), ui_bind (&TimeAxisViewItem::parameter_changed, this, _1), gui_context ());
 }
 
 TimeAxisViewItem::~TimeAxisViewItem()
@@ -228,6 +235,30 @@ TimeAxisViewItem::~TimeAxisViewItem()
        delete group;
 }
 
+void
+TimeAxisViewItem::hide_rect ()
+{
+        rect_visible = false;
+        set_frame_color ();
+
+        if (name_highlight) {
+                name_highlight->property_outline_what() = 0x0;
+                name_highlight->property_fill_color_rgba() = UINT_RGBA_CHANGE_A(fill_color,64);
+        }
+}
+
+void
+TimeAxisViewItem::show_rect ()
+{
+        rect_visible = true;
+        set_frame_color ();
+
+        if (name_highlight) {
+                name_highlight->property_outline_what() = 0x4;
+                name_highlight->property_fill_color_rgba() = fill_color;
+        }
+}
+
 
 /**
  * Set the position of this item on the timeline.
@@ -238,7 +269,7 @@ TimeAxisViewItem::~TimeAxisViewItem()
  */
 
 bool
-TimeAxisViewItem::set_position(nframes64_t pos, void* src, double* delta)
+TimeAxisViewItem::set_position(framepos_t pos, void* src, double* delta)
 {
        if (position_locked) {
                return false;
@@ -274,7 +305,7 @@ TimeAxisViewItem::set_position(nframes64_t pos, void* src, double* delta)
 }
 
 /** @return position of this item on the timeline */
-nframes64_t
+framepos_t
 TimeAxisViewItem::get_position() const
 {
        return frame_position;
@@ -289,7 +320,7 @@ TimeAxisViewItem::get_position() const
  */
 
 bool
-TimeAxisViewItem::set_duration (nframes64_t dur, void* src)
+TimeAxisViewItem::set_duration (framepos_t dur, void* src)
 {
        if ((dur > max_item_duration) || (dur < min_item_duration)) {
                warning << string_compose (_("new duration %1 frames is out of bounds for %2"), get_item_name(), dur)
@@ -310,7 +341,7 @@ TimeAxisViewItem::set_duration (nframes64_t dur, void* src)
 }
 
 /** @return duration of this item */
-nframes64_t
+framepos_t
 TimeAxisViewItem::get_duration() const
 {
        return item_duration;
@@ -323,14 +354,14 @@ TimeAxisViewItem::get_duration() const
  * @param src the identity of the object that initiated the change
  */
 void
-TimeAxisViewItem::set_max_duration(nframes64_t dur, void* src)
+TimeAxisViewItem::set_max_duration(framecnt_t dur, void* src)
 {
        max_item_duration = dur;
        MaxDurationChanged(max_item_duration, src); /* EMIT_SIGNAL */
 }
 
 /** @return the maximum duration that this item may have */
-nframes64_t
+framecnt_t
 TimeAxisViewItem::get_max_duration() const
 {
        return max_item_duration;
@@ -343,14 +374,14 @@ TimeAxisViewItem::get_max_duration() const
  * @param src the identity of the object that initiated the change
  */
 void
-TimeAxisViewItem::set_min_duration(nframes64_t dur, void* src)
+TimeAxisViewItem::set_min_duration(framecnt_t dur, void* src)
 {
        min_item_duration = dur;
        MinDurationChanged(max_item_duration, src); /* EMIT_SIGNAL */
 }
 
 /** @return the minimum duration that this item mey have */
-nframes64_t
+framecnt_t
 TimeAxisViewItem::get_min_duration() const
 {
        return min_item_duration;
@@ -455,24 +486,9 @@ TimeAxisViewItem::set_selected(bool yn)
        }
 }
 
-/**
- * Set whether an item should show its selection status.
- *
- * @param yn true if this item should show its selected status
- */
-
-void
-TimeAxisViewItem::set_should_show_selection (bool yn)
-{
-       if (should_show_selection != yn) {
-               should_show_selection = yn;
-               set_frame_color ();
-       }
-}
-
 /** @return the TimeAxisView that this item is on */
 TimeAxisView&
-TimeAxisViewItem::get_time_axis_view()
+TimeAxisViewItem::get_time_axis_view () const
 {
        return trackview;
 }
@@ -485,7 +501,7 @@ TimeAxisViewItem::get_time_axis_view()
  */
 
 void
-TimeAxisViewItem::set_name_text(const ustring& new_name)
+TimeAxisViewItem::set_name_text(const string& new_name)
 {
        if (!name_pixbuf) {
                return;
@@ -493,7 +509,7 @@ TimeAxisViewItem::set_name_text(const ustring& new_name)
 
        last_item_width = trackview.editor().frame_to_pixel(item_duration);
        name_pixbuf_width = pixel_width (new_name, *NAME_FONT) + 2;
-       name_pixbuf->property_pixbuf() = pixbuf_from_ustring(new_name, NAME_FONT, name_pixbuf_width, NAME_HEIGHT, Gdk::Color ("#000000"));
+       name_pixbuf->property_pixbuf() = pixbuf_from_string(new_name, NAME_FONT, name_pixbuf_width, NAME_HEIGHT, Gdk::Color ("#000000"));
 }
 
 
@@ -519,7 +535,7 @@ TimeAxisViewItem::set_height (double height)
 
                if (height > NAME_HIGHLIGHT_SIZE) {
                        name_highlight->property_y1() = (double) height - 1 - NAME_HIGHLIGHT_SIZE;
-                       name_highlight->property_y2() = (double) height - 2;
+                       name_highlight->property_y2() = (double) height - 1;
                }
                else {
                        /* it gets hidden now anyway */
@@ -543,6 +559,7 @@ TimeAxisViewItem::set_height (double height)
        vestigial_frame->property_y2() = height - 1;
 
        update_name_pixbuf_visibility ();
+       set_colors ();
 }
 
 void
@@ -680,7 +697,6 @@ TimeAxisViewItem::set_colors()
 
        if (name_highlight) {
                name_highlight->property_fill_color_rgba() = fill_color;
-               name_highlight->property_outline_color_rgba() = fill_color;
        }
        set_trim_handle_colors();
 }
@@ -691,22 +707,57 @@ TimeAxisViewItem::set_colors()
 void
 TimeAxisViewItem::set_frame_color()
 {
-       if (frame) {
-               uint32_t r,g,b,a;
+        uint32_t f = 0;
+
+       if (!frame) {
+               return;
+       }
+       
+       if (_selected) {
+
+                f = ARDOUR_UI::config()->canvasvar_SelectedFrameBase.get();
+
+               if (fill_opacity) {
+                        f = UINT_RGBA_CHANGE_A (f, fill_opacity);
+               } 
+
+                if (!rect_visible) {
+                        f = UINT_RGBA_CHANGE_A (f, 0);
+                }
 
-               if (_selected && should_show_selection) {
-                       UINT_TO_RGBA(ARDOUR_UI::config()->canvasvar_SelectedFrameBase.get(), &r, &g, &b, &a);
-                       frame->property_fill_color_rgba() = RGBA_TO_UINT(r, g, b, a);
+       } else {
+
+               if (_recregion) {
+                       f = ARDOUR_UI::config()->canvasvar_RecordingRect.get();
                } else {
-                       if (_recregion) {
-                               UINT_TO_RGBA(ARDOUR_UI::config()->canvasvar_RecordingRect.get(), &r, &g, &b, &a);
-                               frame->property_fill_color_rgba() = RGBA_TO_UINT(r, g, b, a);
+                        
+                       if (high_enough_for_name && !Config->get_color_regions_using_track_color()) {
+                               f = ARDOUR_UI::config()->canvasvar_FrameBase.get();
                        } else {
-                               UINT_TO_RGBA(ARDOUR_UI::config()->canvasvar_FrameBase.get(), &r, &g, &b, &a);
-                               frame->property_fill_color_rgba() = RGBA_TO_UINT(r, g, b, fill_opacity ? fill_opacity : a);
+                               f = fill_color;
                        }
-               }
+
+                       if (fill_opacity) {
+                               f = UINT_RGBA_CHANGE_A (f, fill_opacity);
+                       }
+
+                        if (!rect_visible) {
+                                f = UINT_RGBA_CHANGE_A (f, 0);
+                        }
+                }
        }
+
+        frame->property_fill_color_rgba() = f;
+
+        if (!_recregion) {
+                f = ARDOUR_UI::config()->canvasvar_TimeAxisFrame.get();
+                
+                if (!rect_visible) {
+                        f = UINT_RGBA_CHANGE_A (f, 64);
+                }
+                
+                frame->property_outline_color_rgba() = f;
+        }
 }
 
 /**
@@ -797,12 +848,7 @@ TimeAxisViewItem::reset_width_dependent_items (double pixel_width)
                                high_enough_for_name = true;
                        }
                         
-                       if (visibility & FullWidthNameHighlight) {
-                               name_highlight->property_x2() = pixel_width;
-                       } else {
-                               name_highlight->property_x2() = pixel_width - 1.0;
-                       }
-
+                       name_highlight->property_x2() = pixel_width;
                }
 
                if (frame) {
@@ -862,7 +908,7 @@ TimeAxisViewItem::reset_name_width (double /*pixel_width*/)
 
        update_name_pixbuf_visibility ();
        if (pb_width > 0) {
-               name_pixbuf->property_pixbuf() = pixbuf_from_ustring(item_name, NAME_FONT, pb_width, NAME_HEIGHT, Gdk::Color ("#000000"));
+               name_pixbuf->property_pixbuf() = pixbuf_from_string(item_name, NAME_FONT, pb_width, NAME_HEIGHT, Gdk::Color ("#000000"));
        }
 }
 
@@ -906,3 +952,10 @@ TimeAxisViewItem::update_name_pixbuf_visibility ()
        }
 }
 
+void
+TimeAxisViewItem::parameter_changed (string p)
+{
+       if (p == "color-regions-using-track-color") {
+               set_frame_color ();
+       }
+}