Gracefully handle templates that lack contents in their description or created_with...
[ardour.git] / gtk2_ardour / automation_controller.cc
index 6816bffa9344901591164bb0127e57cb777441f2..d53c61432ebcc0f06e04855d563aeb71e18fa6d2 100644 (file)
@@ -29,8 +29,8 @@
 #include "ardour/session.h"
 #include "ardour/tempo.h"
 
-#include "ardour_button.h"
-#include "ardour_knob.h"
+#include "widgets/ardour_button.h"
+#include "widgets/ardour_knob.h"
 #include "automation_controller.h"
 #include "gui_thread.h"
 #include "note_select_dialog.h"
 
 using namespace ARDOUR;
 using namespace Gtk;
+using namespace ArdourWidgets;
 
 using PBD::Controllable;
 
 AutomationBarController::AutomationBarController (
                boost::shared_ptr<AutomationControl> ac,
                Adjustment*                          adj)
-       : Gtkmm2ext::BarController(*adj, ac)
-       , _controllable(ac)
+       : ArdourWidgets::BarController (*adj, ac)
+       , _controllable (ac)
 {
 }
 
@@ -97,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));
 
@@ -197,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
@@ -343,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));
        }
 }