Remove no-longer used file.
[ardour.git] / libs / ardour / ardour / automation_control.h
index 7878077a98348da392382873b9bf34aea96e2f46..006e74346f734d8a7fd4efd9ff82f41cedffb242 100644 (file)
 #define __ardour_automation_control_h__
 
 #include <boost/shared_ptr.hpp>
-#include <pbd/controllable.h>
-#include <ardour/parameter.h>
-#include <evoral/Control.hpp>
-#include <ardour/automation_list.h>
+#include "pbd/controllable.h"
+#include "evoral/Control.hpp"
+#include "ardour/automation_list.h"
 
 namespace ARDOUR {
 
-class AutomationList;
 class Session;
 class Automatable;
 
@@ -40,42 +38,55 @@ class AutomationControl : public PBD::Controllable, public Evoral::Control
 {
 public:
        AutomationControl(ARDOUR::Session&,
-                       const Parameter& parameter,
+                       const Evoral::Parameter& parameter,
                        boost::shared_ptr<ARDOUR::AutomationList> l=boost::shared_ptr<ARDOUR::AutomationList>(),
-                       const string& name="");
-       
-       boost::shared_ptr<AutomationList> alist() const { return boost::dynamic_pointer_cast<AutomationList>(_list); }
+                       const std::string& name="");
+
+       boost::shared_ptr<AutomationList> alist() const {
+               return boost::dynamic_pointer_cast<AutomationList>(_list);
+       }
 
        void set_list(boost::shared_ptr<Evoral::ControlList>);
 
        inline bool automation_playback() const {
                return ((ARDOUR::AutomationList*)_list.get())->automation_playback();
        }
-       
+
        inline bool automation_write() const {
                return ((ARDOUR::AutomationList*)_list.get())->automation_write();
        }
-       
+
        inline AutoState automation_state() const {
                return ((ARDOUR::AutomationList*)_list.get())->automation_state();
        }
-       
-       inline void start_touch() {
-               return ((ARDOUR::AutomationList*)_list.get())->start_touch();
+
+       inline void set_automation_state(AutoState as) {
+               return ((ARDOUR::AutomationList*)_list.get())->set_automation_state(as);
+       }
+
+       inline void start_touch(double when) {
+               set_touching (true);
+               return ((ARDOUR::AutomationList*)_list.get())->start_touch(when);
        }
-       
-       inline void stop_touch() {
-               return ((ARDOUR::AutomationList*)_list.get())->stop_touch();
+
+       inline void stop_touch(bool mark, double when) {
+               set_touching (false);
+               return ((ARDOUR::AutomationList*)_list.get())->stop_touch(mark, when);
        }
 
        /** Set the value and do the right thing based on automation state
         * (e.g. record if necessary, etc.)
         */
-       void set_value(float val);
+       void set_value(double val);
 
        /** Get the current effective value based on automation state.
         */
-       float get_value() const;
+       double get_value() const;
+
+        double lower() const { return parameter().min(); }
+        double upper() const { return parameter().max(); }
+
+        const ARDOUR::Session& session() const { return _session; }
 
 protected:
        ARDOUR::Session& _session;