enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.h
[ardour.git] / gtk2_ardour / automation_region_view.cc
index ab13a99c16034819b243c41f62627e268ff3e4fc..963fe63c01caf99dee30a4b10cc4066c3f3975b3 100644 (file)
 #include "gui_thread.h"
 #include "midi_automation_line.h"
 #include "public_editor.h"
+#include "ui_config.h"
 
-#include "i18n.h"
+#include "pbd/i18n.h"
 
-AutomationRegionView::AutomationRegionView (ArdourCanvas::Container*                      parent,
-                                           AutomationTimeAxisView&                   time_axis,
-                                           boost::shared_ptr<ARDOUR::Region>         region,
-                                           const Evoral::Parameter&                  param,
-                                           boost::shared_ptr<ARDOUR::AutomationList> list,
-                                           double                                    spu,
-                                           uint32_t                                  basic_color)
+AutomationRegionView::AutomationRegionView (ArdourCanvas::Container*                  parent,
+                                            AutomationTimeAxisView&                   time_axis,
+                                            boost::shared_ptr<ARDOUR::Region>         region,
+                                            const Evoral::Parameter&                  param,
+                                            boost::shared_ptr<ARDOUR::AutomationList> list,
+                                            double                                    spu,
+                                            uint32_t                                  basic_color)
        : RegionView(parent, time_axis, region, spu, basic_color, true)
+       , _region_relative_time_converter(region->session().tempo_map(), region->position())
+       , _source_relative_time_converter(region->session().tempo_map(), region->position() - region->start())
        , _parameter(param)
 {
        if (list) {
@@ -55,6 +58,10 @@ AutomationRegionView::AutomationRegionView (ArdourCanvas::Container*
        }
 
        group->raise_to_top();
+
+       trackview.editor().MouseModeChanged.connect(_mouse_mode_connection, invalidator (*this),
+                                                   boost::bind (&AutomationRegionView::mouse_mode_changed, this),
+                                                   gui_context ());
 }
 
 AutomationRegionView::~AutomationRegionView ()
@@ -73,6 +80,7 @@ AutomationRegionView::init (bool /*wfd*/)
 
        set_height (trackview.current_height());
 
+       fill_color_name = "midi frame base";
        set_colors ();
 
        _enable_display = true;
@@ -88,12 +96,33 @@ AutomationRegionView::create_line (boost::shared_ptr<ARDOUR::AutomationList> lis
                                _parameter,
                                &_source_relative_time_converter));
        _line->set_colors();
-       _line->set_height ((uint32_t)rint(trackview.current_height() - NAME_HIGHLIGHT_SIZE));
+       _line->set_height ((uint32_t)rint(trackview.current_height() - 2.5 - NAME_HIGHLIGHT_SIZE));
        _line->set_visibility (AutomationLine::VisibleAspects (AutomationLine::Line|AutomationLine::ControlPoints));
        _line->set_maximum_time (_region->length());
        _line->set_offset (_region->start ());
 }
 
+uint32_t
+AutomationRegionView::get_fill_color() const
+{
+       const std::string mod_name = (_dragging ? "dragging region" :
+                                     trackview.editor().internal_editing() ? "editable region" :
+                                     "midi frame base");
+       if (_selected) {
+               return UIConfiguration::instance().color_mod ("selected region base", mod_name);
+       } else if (high_enough_for_name || !UIConfiguration::instance().get_color_regions_using_track_color()) {
+               return UIConfiguration::instance().color_mod ("midi frame base", mod_name);
+       }
+       return UIConfiguration::instance().color_mod (fill_color, mod_name);
+}
+
+void
+AutomationRegionView::mouse_mode_changed ()
+{
+       // Adjust frame colour (become more transparent for internal tools)
+       set_frame_color();
+}
+
 bool
 AutomationRegionView::canvas_group_event (GdkEvent* ev)
 {
@@ -103,25 +132,10 @@ AutomationRegionView::canvas_group_event (GdkEvent* ev)
 
        PublicEditor& e = trackview.editor ();
 
-       if (ev->type == GDK_BUTTON_PRESS && e.current_mouse_mode() == Editing::MouseObject) {
-
-               /* XXX: icky dcast to Editor */
-               e.drags()->set (new EditorRubberbandSelectDrag (dynamic_cast<Editor*> (&e), group), ev);
-               e.drags()->start_grab (ev);
-               return true;
-
-       } else if (ev->type == GDK_MOTION_NOTIFY && e.drags()->active()) {
-               /* we probably shouldn't have to handle this here, but... */
-               e.drags()->motion_handler(ev, false);
-               return true;
-
-       } else if (ev->type == GDK_BUTTON_RELEASE) {
-               if (e.drags()->end_grab (ev)) {
-                       return true;
-               } else if (e.current_mouse_mode() != Editing::MouseObject &&
-                          e.current_mouse_mode() == Editing::MouseDraw) {
-                       return false;
-               }
+       if (trackview.editor().internal_editing() &&
+           ev->type == GDK_BUTTON_RELEASE &&
+           e.current_mouse_mode() == Editing::MouseDraw &&
+           !e.drags()->active()) {
 
                double x = ev->button.x;
                double y = ev->button.y;
@@ -139,7 +153,7 @@ AutomationRegionView::canvas_group_event (GdkEvent* ev)
                return true;
        }
 
-       return false;
+       return RegionView::canvas_group_event (ev);
 }
 
 /** @param when Position in frames, where 0 is the start of the region.
@@ -173,17 +187,18 @@ AutomationRegionView::add_automation_event (GdkEvent *, framepos_t when, double
        double when_d = when;
        _line->view_to_model_coord (when_d, y);
 
-       view->session()->begin_reversible_command (_("add automation event"));
        XMLNode& before = _line->the_list()->get_state();
 
-       _line->the_list()->add (when_d, y, with_guard_points, false);
+       if (_line->the_list()->editor_add (when_d, y, with_guard_points)) {
+               view->editor().begin_reversible_command (_("add automation event"));
 
-       XMLNode& after = _line->the_list()->get_state();
+               XMLNode& after = _line->the_list()->get_state();
 
-       view->session()->commit_reversible_command (
-               new MementoCommand<ARDOUR::AutomationList> (_line->memento_command_binder(), &before, &after));
+               view->session()->add_command (new MementoCommand<ARDOUR::AutomationList> (_line->memento_command_binder(), &before, &after));
+               view->editor().commit_reversible_command ();
 
-       view->session()->set_dirty ();
+               view->session()->set_dirty ();
+       }
 }
 
 bool
@@ -202,9 +217,10 @@ AutomationRegionView::paste (framepos_t                                      pos
 
        /* add multi-paste offset if applicable */
        pos += view->editor().get_paste_offset(
-               pos, paste_count, _line->time_converter().to(slist->length()));
+               pos, paste_count, _source_relative_time_converter.to(slist->length()));
 
-       const double model_pos = _line->time_converter().from(pos - _line->time_converter().origin_b());
+       const double model_pos = _source_relative_time_converter.from(
+               pos - _source_relative_time_converter.origin_b());
 
        XMLNode& before = my_list->get_state();
        my_list->paste(*slist, model_pos, times);
@@ -220,7 +236,7 @@ AutomationRegionView::set_height (double h)
        RegionView::set_height(h);
 
        if (_line) {
-               _line->set_height ((uint32_t)rint(h - NAME_HIGHLIGHT_SIZE));
+               _line->set_height ((uint32_t)rint(h - 2.5 - NAME_HIGHLIGHT_SIZE));
        }
 }
 
@@ -251,6 +267,15 @@ AutomationRegionView::region_resized (const PBD::PropertyChange& what_changed)
 {
        RegionView::region_resized (what_changed);
 
+       if (what_changed.contains (ARDOUR::Properties::position)) {
+               _region_relative_time_converter.set_origin_b(_region->position());
+       }
+
+       if (what_changed.contains (ARDOUR::Properties::start) ||
+           what_changed.contains (ARDOUR::Properties::position)) {
+               _source_relative_time_converter.set_origin_b (_region->position() - _region->start());
+       }
+
        if (!_line) {
                return;
        }
@@ -266,7 +291,7 @@ AutomationRegionView::region_resized (const PBD::PropertyChange& what_changed)
 
 
 void
-AutomationRegionView::entered (bool)
+AutomationRegionView::entered ()
 {
        if (_line) {
                _line->track_entered();