Maybe fix typename / no-typename problems better.
[ardour.git] / libs / pbd / pbd / stateful.h
index af26caab07855a8eee72d50f1ac9820ebae56126..506d05877337ff96089336e9a8993cd628999556 100644 (file)
@@ -49,7 +49,7 @@ class Stateful {
        virtual XMLNode& get_state (void) = 0;
        virtual int set_state (const XMLNode&, int version) = 0;
 
-       virtual bool apply_change (PropertyBase const &);
+       virtual bool apply_changes (PropertyBase const &);
        PropertyChange apply_changes (PropertyList const &);
        
         const OwnedPropertyList& properties() const { return *_properties; }
@@ -61,16 +61,20 @@ class Stateful {
         */
 
        void add_extra_xml (XMLNode&);
-       XMLNode *extra_xml (const std::string& str);
+       XMLNode *extra_xml (const std::string& str, bool add_if_missing = false);
+       void save_extra_xml (const XMLNode&);
 
        const PBD::ID& id() const { return _id; }
+       bool set_id (const XMLNode&);
+       void set_id (const std::string&);
+       void reset_id ();
 
         /* history management */
 
-       void clear_history ();
-       virtual void clear_owned_history ();
-        void diff (PropertyList&, PropertyList&, Command*) const;
-       virtual void rdiff (std::vector<StatefulDiffCommand*> &) const;
+       void clear_changes ();
+       virtual void clear_owned_changes ();
+        PropertyList* get_changes_as_properties (Command *) const;
+       virtual void rdiff (std::vector<Command*> &) const;
         bool changed() const;
 
         /* create a property list from an XMLNode
@@ -87,9 +91,8 @@ class Stateful {
        virtual void suspend_property_changes ();
        virtual void resume_property_changes ();
 
-       void unlock_property_changes () { _no_property_changes = false; }
-       void block_property_changes () { _no_property_changes = true; }
-       
+        bool property_changes_suspended() const { return g_atomic_int_get (&_stateful_frozen) > 0; }
+        
   protected:
 
        void add_instant_xml (XMLNode&, const sys::path& directory_path);
@@ -102,13 +105,10 @@ class Stateful {
           of property values after either a PropertyList or XML 
           driven property change.
        */
-       virtual void post_set () { };
+       virtual void post_set (const PropertyChange&) { };
 
        XMLNode *_extra_xml;
        XMLNode *_instant_xml;
-       PBD::ID  _id;
-        int32_t  _frozen;
-        bool     _no_property_changes;
        PBD::PropertyChange     _pending_changed;
         Glib::Mutex _lock;
 
@@ -120,7 +120,10 @@ class Stateful {
             within thaw() just before send_change() is called.
         */
         virtual void mid_thaw (const PropertyChange&) { }
-        bool property_changes_suspended() const { return g_atomic_int_get (&_frozen) > 0; }
+
+  private:
+       PBD::ID  _id;
+        int32_t  _stateful_frozen;
 };
 
 } // namespace PBD