Fix a couple of minor typos.
[ardour2.git] / gtk2_ardour / gui_object.h
blob849665670f2c60a8e99842108d11fc657c2d6171
1 /*
2 Copyright (C) 2011 Paul Davis
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.
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.
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.
20 #ifndef __gtk_ardour_gui_object_h__
21 #define __gtk_ardour_gui_object_h__
23 #include <map>
24 #include <string>
26 #include <boost/variant.hpp>
28 #include "pbd/xml++.h"
29 #include "pbd/id.h"
31 class GUIObjectState {
32 private:
33 typedef boost::variant<int64_t,std::string> Variant;
34 typedef std::map<std::string,Variant> PropertyMap;
36 public:
37 typedef std::map<std::string,PropertyMap> StringPropertyMap;
39 ~GUIObjectState();
41 StringPropertyMap::const_iterator begin () const;
42 StringPropertyMap::const_iterator end () const;
44 XMLNode& get_state () const;
45 int set_state (const XMLNode&);
47 static const std::string xml_node_name;
48 void load (const XMLNode&);
50 GUIObjectState& operator= (const GUIObjectState& other);
52 std::string get_string (const std::string& id, const std::string& prop_name, bool* empty = 0);
54 template<typename T> void set (const std::string& id, const std::string& prop_name, const T& val) {
55 StringPropertyMap::iterator i = _property_maps.find (id);
57 if (i != _property_maps.end()) {
58 i->second[prop_name] = val;
59 } else {
60 _property_maps[id] = PropertyMap();
61 _property_maps[id][prop_name] = val;
64 private:
65 StringPropertyMap _property_maps;
67 void clear_maps ();
71 #endif /* __gtk_ardour_gui_object_h__ */