consistent API name for region-list
[ardour.git] / libs / ardour / ardour / pan_controllable.h
index 9abbec42ab82277fe9af408549410d514390a245..82aa60fe106afd5fdc79aa052970c8a42f2ff6a9 100644 (file)
@@ -36,17 +36,22 @@ class Pannable;
 
 class LIBARDOUR_API PanControllable : public AutomationControl
 {
-public:
+  public:
        PanControllable (Session& s, std::string name, Pannable* o, Evoral::Parameter param)
-               : AutomationControl (s, param, boost::shared_ptr<AutomationList>(new AutomationList(param)), name)
+               : AutomationControl (s,
+                                    param,
+                                    ParameterDescriptor(param),
+                                    boost::shared_ptr<AutomationList>(new AutomationList(param)),
+                                    name)
                , owner (o)
        {}
 
        double lower () const;
-       void set_value (double);
+       std::string get_user_string () const;
 
-private:
+  private:
        Pannable* owner;
+       void actually_set_value (double, PBD::Controllable::GroupControlDisposition group_override);
 };
 
 } // namespace