removed (will replace) rgb_macros.h
[ardour.git] / gtk2_ardour / automation_controller.cc
index 3af5f3444511d277810f62c9d74c3d84d4b8b512..5c00d5a779296f52362775104e60b7c17986fa27 100644 (file)
@@ -19,6 +19,7 @@
 */
 
 #include <iomanip>
+#include <cmath>
 
 #include "pbd/error.h"
 
@@ -27,6 +28,7 @@
 #include "ardour/event_type_map.h"
 #include "ardour/automatable.h"
 #include "ardour/panner.h"
+#include "ardour/pan_controllable.h"
 #include "ardour/session.h"
 
 #include "ardour_ui.h"
 using namespace ARDOUR;
 using namespace Gtk;
 
-
-AutomationController::AutomationController(boost::shared_ptr<AutomationControl> ac, Adjustment* adj)
+AutomationController::AutomationController(boost::shared_ptr<Automatable> owner, boost::shared_ptr<AutomationControl> ac, Adjustment* adj)
        : BarController (*adj, ac)
        , _ignore_change(false)
+        , _owner (owner)
        , _controllable(ac)
        , _adjustment(adj)
 {
@@ -79,32 +81,19 @@ AutomationController::create(
        } else {
                assert(ac->parameter() == param);
        }
-       return boost::shared_ptr<AutomationController>(new AutomationController(ac, adjustment));
+       return boost::shared_ptr<AutomationController>(new AutomationController(parent, ac, adjustment));
 }
 
 std::string
-AutomationController::get_label (int&)
+AutomationController::get_label (double& xpos)
 {
-       std::stringstream s;
-
-       // Hack to display CC rounded to int
-       if (_controllable->parameter().type() == MidiCCAutomation) {
-               s << (int)_controllable->get_value();
-       } else if (_controllable->parameter().type() == PanAutomation) {
-               s << Panner::value_as_string (_controllable->get_value ());
-       } else {
-               s << std::fixed << std::setprecision(3) << _controllable->get_value();
-       }
-
-       return s.str ();
+        xpos = 0.5;
+        return _owner->value_as_string (_controllable);
 }
 
 void
 AutomationController::display_effective_value()
 {
-       //if ( ! _controllable->list()->automation_playback())
-       //      return;
-
        float value = _controllable->get_value();
 
        if (_adjustment->get_value() != value) {