Reverse parameters to CPPUNIT_ASSERT_EQUAL so its assert
[ardour.git] / libs / ardour / ardour / automation_list.h
index 9b899e8cd1b025982fee03cd7156e33c51fcd6a5..58d1fe4acf92352634e6d36e76d284e66125b7a9 100644 (file)
@@ -24,7 +24,6 @@
 #include <list>
 #include <cmath>
 
-#include <sigc++/signal.h>
 #include <glibmm/thread.h>
 
 #include "pbd/undo.h"
@@ -51,36 +50,35 @@ class AutomationList : public PBD::StatefulDestructible, public Evoral::ControlL
        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;
+       PBD::Signal0<void> StateChanged;
 
-       static sigc::signal<void, AutomationList*> AutomationListCreated;
-       mutable sigc::signal<void> Dirty;
+       static PBD::Signal1<void,AutomationList*> AutomationListCreated;
 
-       void start_touch ();
-       void stop_touch ();
-       bool touching() const { return _touching; }
+       void start_touch (double when);
+       void stop_touch (bool mark, double when);
+       bool touching() const { return g_atomic_int_get (&_touching); }
+       bool writing() const { return _state == Write; }
+       bool touch_enabled() const { return _state == Touch; }
 
-       XMLNode& get_state(void);
-       int set_state (const XMLNode &s);
+       XMLNode& get_state ();
+       int set_state (const XMLNode &, int version);
        XMLNode& state (bool full);
        XMLNode& serialize_events ();
 
@@ -90,9 +88,9 @@ class AutomationList : public PBD::StatefulDestructible, public Evoral::ControlL
 
        void maybe_signal_changed ();
 
-       AutoState _state;
-       AutoStyle _style;
-       bool      _touching;
+       AutoState    _state;
+       AutoStyle    _style;
+       gint         _touching;
 };
 
 } // namespace