Add a PianoKeyboard to GenericUI (on a MIDI track)
[ardour.git] / gtk2_ardour / automation_controller.cc
index 5fc86e92766c118fbcea25ecf1a58b3a52a8ab92..d53c61432ebcc0f06e04855d563aeb71e18fa6d2 100644 (file)
@@ -47,8 +47,8 @@ using PBD::Controllable;
 AutomationBarController::AutomationBarController (
                boost::shared_ptr<AutomationControl> ac,
                Adjustment*                          adj)
-       : Gtkmm2ext::BarController(*adj, ac)
-       , _controllable(ac)
+       : ArdourWidgets::BarController (*adj, ac)
+       , _controllable (ac)
 {
 }
 
@@ -98,6 +98,8 @@ AutomationController::AutomationController(boost::shared_ptr<AutomationControl>
                knob->set_controllable (ac);
                knob->set_name("processor control knob");
                _widget = knob;
+               knob->StartGesture.connect(sigc::mem_fun(*this, &AutomationController::start_touch));
+               knob->StopGesture.connect(sigc::mem_fun(*this, &AutomationController::end_touch));
        } else {
                AutomationBarController* bar = manage(new AutomationBarController(ac, adj));
 
@@ -198,20 +200,7 @@ AutomationController::start_touch()
 void
 AutomationController::end_touch ()
 {
-       if (_controllable->automation_state() == Touch) {
-
-               bool mark = false;
-               double when = 0;
-
-               if (_controllable->session().transport_rolling()) {
-                       mark = true;
-                       when = _controllable->session().transport_frame();
-               }
-
-               _controllable->stop_touch (mark, when);
-       } else {
-               _controllable->stop_touch (false, _controllable->session().transport_frame());
-       }
+       _controllable->stop_touch (_controllable->session().transport_frame());
 }
 
 bool
@@ -344,7 +333,6 @@ AutomationController::disable_vertical_scroll ()
        AutomationBarController* bar = dynamic_cast<AutomationBarController*>(_widget);
        if (bar) {
                bar->set_tweaks (
-                       Gtkmm2ext::PixFader::Tweaks(bar->tweaks() |
-                                                   Gtkmm2ext::PixFader::NoVerticalScroll));
+                       ArdourWidgets::ArdourFader::Tweaks(bar->tweaks() | ArdourWidgets::ArdourFader::NoVerticalScroll));
        }
 }