NOOP, remove trailing tabs/whitespace.
[ardour.git] / libs / ardour / ardour / automation_list.h
index cae8d3cbbae8f2ce5669b371ae827c75a8810fea..bc47f2fe0672d520996b8cb6cdb0e6ebb6d16646 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2002 Paul Davis 
+    Copyright (C) 2002 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 #define __ardour_automation_event_h__
 
 #include <stdint.h>
+#include <cstdlib>
 #include <list>
 #include <cmath>
 
-#include <sigc++/signal.h>
-#include <glibmm/thread.h>
+#include <glibmm/threads.h>
 
-#include <pbd/undo.h>
-#include <pbd/xml++.h>
-#include <pbd/statefuldestructible.h> 
+#include "evoral/ControlList.hpp"
+#include "evoral/Parameter.hpp"
 
-#include <ardour/ardour.h>
-#include <ardour/parameter.h>
+#include "pbd/undo.h"
+#include "pbd/xml++.h"
+#include "pbd/statefuldestructible.h"
+#include "pbd/properties.h"
 
-#include <evoral/ControlList.hpp>
-
-using Evoral::ControlEvent;
+#include "ardour/ardour.h"
 
 namespace ARDOUR {
 
-class AutomationList : public PBD::StatefulDestructible, public Evoral::ControlList
+class AutomationList;
+
+/** A SharedStatefulProperty for AutomationLists */
+class LIBARDOUR_API AutomationListProperty : public PBD::SharedStatefulProperty<AutomationList>
 {
-  public:
-       AutomationList (Parameter id);
-       AutomationList (const XMLNode&, Parameter id);
-       ~AutomationList();
+public:
+       AutomationListProperty (PBD::PropertyDescriptor<boost::shared_ptr<AutomationList> > d, Ptr p)
+               : PBD::SharedStatefulProperty<AutomationList> (d.property_id, p)
+       {}
+
+       AutomationListProperty (PBD::PropertyDescriptor<boost::shared_ptr<AutomationList> > d, Ptr o, Ptr c)
+               : PBD::SharedStatefulProperty<AutomationList> (d.property_id, o, c)
+       {}
 
-       virtual boost::shared_ptr<Evoral::ControlList> create(Evoral::Parameter id);
+       PBD::PropertyBase* clone () const;
 
+private:
+       /* No copy-construction nor assignment */
+       AutomationListProperty (AutomationListProperty const &);
+       AutomationListProperty& operator= (AutomationListProperty const &);
+};
+
+class LIBARDOUR_API AutomationList : public PBD::StatefulDestructible, public Evoral::ControlList
+{
+  public:
+       AutomationList (const Evoral::Parameter& id, const Evoral::ParameterDescriptor& desc);
+       AutomationList (const Evoral::Parameter& id);
+       AutomationList (const XMLNode&, Evoral::Parameter id);
        AutomationList (const AutomationList&);
        AutomationList (const AutomationList&, double start, double end);
+       ~AutomationList();
+
+       virtual boost::shared_ptr<ControlList> create(const Evoral::Parameter&           id,
+                                                     const Evoral::ParameterDescriptor& desc);
+
        AutomationList& operator= (const AutomationList&);
-       bool operator== (const AutomationList&);
-       
-       void freeze();
+
        void thaw ();
-       void mark_dirty () const;
 
        void set_automation_state (AutoState);
        AutoState automation_state() const { return _state; }
-       sigc::signal<void> automation_state_changed;
+       PBD::Signal1<void, AutoState> automation_state_changed;
 
        void set_automation_style (AutoStyle m);
        AutoStyle automation_style() const { return _style; }
-       sigc::signal<void> automation_style_changed;
+       PBD::Signal0<void> automation_style_changed;
 
        bool automation_playback() const {
-               return (_state & Play) || ((_state & Touch) && !_touching);
+               return (_state & Play) || ((_state & Touch) && !touching());
        }
        bool automation_write () const {
-               return (_state & Write) || ((_state & Touch) && _touching);
+               return ((_state & Write) || ((_state & Touch) && touching()));
        }
-       
-       sigc::signal<void> StateChanged;
-       
-       static sigc::signal<void, AutomationList*> AutomationListCreated;
-       mutable sigc::signal<void> Dirty;
-
-       void start_touch ();
-       void stop_touch ();
-       bool touching() const { return _touching; }
-
-       XMLNode& get_state(void); 
-       int set_state (const XMLNode &s);
+
+       PBD::Signal0<void> StateChanged;
+
+       static PBD::Signal1<void,AutomationList*> AutomationListCreated;
+
+       void start_touch (double when);
+       void stop_touch (bool mark, double when);
+        bool touching() const { return g_atomic_int_get (const_cast<gint*>(&_touching)); }
+       bool writing() const { return _state == Write; }
+       bool touch_enabled() const { return _state == Touch; }
+
+       XMLNode& get_state ();
+       int set_state (const XMLNode &, int version);
        XMLNode& state (bool full);
        XMLNode& serialize_events ();
 
+       bool operator!= (const AutomationList &) const;
+
   private:
+       void create_curve_if_necessary ();
        int deserialize_events (const XMLNode&);
-       
+
        void maybe_signal_changed ();
-       
-       AutoState _state;
-       AutoStyle _style;
-       bool      _touching;
+
+       AutoState    _state;
+       AutoStyle    _style;
+       gint         _touching;
+
+       bool operator== (const AutomationList&) const { /* not called */ abort(); return false; }
 };
 
 } // namespace