the mega-properties/SequenceProperty patch. split is broken at present (right hand...
[ardour.git] / libs / pbd / pbd / property_list.h
1 /*
2     Copyright (C) 2010 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __pbd_property_list_h__
21 #define __pbd_property_list_h__
22
23 #include <map>
24
25 #include "pbd/property_basics.h"
26
27 class XMLNode;
28
29 namespace PBD {
30 class PropertyList : public std::map<PropertyID, PropertyBase*>
31 {
32 public:
33         PropertyList();
34         
35         virtual ~PropertyList();
36
37         void add_history_state (XMLNode* before);
38
39         /** Add a property (of some kind) to the list. Used when
40             constructing PropertyList's that describe a change/operation.
41         */
42         bool add (PropertyBase* prop);
43
44         /* Code that is constructing a property list for use
45          * in setting the state of an object uses this.
46          *
47          * Defined below, once we have Property<T>
48          */
49         template<typename T, typename V> bool add (PropertyDescriptor<T> pid, const V& v);
50
51 protected:
52         bool _property_owner;
53 };
54
55 /** A variant of PropertyList that does not delete its
56  *  property list in its destructor. Objects with their
57  *  own Properties store them in an OwnedPropertyList
58  *  to avoid having them deleted at the wrong time.
59  */
60 class OwnedPropertyList : public PropertyList
61 {
62 public:
63         OwnedPropertyList();
64
65         /* Classes that own property lists use this to add their
66          * property members to their plists. Note that it takes
67          * a reference argument rather than a pointer like
68          * one of the add() methods in PropertyList.
69          */
70         bool add (PropertyBase& p);
71 };
72
73 }
74
75 #endif /* __pbd_property_list_h__ */