ardour
gui_object.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2011 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 __gtk_ardour_gui_object_h__
21 #define __gtk_ardour_gui_object_h__
22 
23 #include <map>
24 #include <string>
25 
26 #include <boost/variant.hpp>
27 
28 #include "pbd/xml++.h"
29 #include "pbd/id.h"
30 
32 {
33 public:
34  GUIObjectState ();
35 
36  XMLNode& get_state () const;
37  int set_state (const XMLNode&);
38 
39  static const std::string xml_node_name;
40  void load (const XMLNode&);
41 
42  std::string get_string (const std::string& id, const std::string& prop_name, bool* empty = 0);
43 
44  template<typename T> void set_property (const std::string& id, const std::string& prop_name, const T& val) {
45  XMLNode* child = get_or_add_node (id);
46  std::stringstream s;
47  s << val;
48  child->add_property (prop_name.c_str(), s.str());
49  }
50 
51  std::list<std::string> all_ids () const;
52 
53  static XMLNode* get_node (const XMLNode *, const std::string &);
54  XMLNode* get_or_add_node (const std::string &);
55  static XMLNode* get_or_add_node (XMLNode *, const std::string &);
56 
57  void remove_node (const std::string& id);
58 
59  private:
61 };
62 
63 
64 #endif /* __gtk_ardour_gui_object_h__ */
std::string get_string(const std::string &id, const std::string &prop_name, bool *empty=0)
Definition: gui_object.cc:92
static XMLNode * get_node(const XMLNode *, const std::string &)
Definition: gui_object.cc:37
static const std::string xml_node_name
Definition: gui_object.h:39
XMLNode * get_or_add_node(const std::string &)
void remove_node(const std::string &id)
Definition: gui_object.cc:79
XMLNode _state
Definition: gui_object.h:60
XMLProperty * add_property(const char *name, const std::string &value)
Definition: xml++.h:95
void load(const XMLNode &)
Definition: gui_object.cc:136
void set_property(const std::string &id, const std::string &prop_name, const T &val)
Definition: gui_object.h:44
std::list< std::string > all_ids() const
Definition: gui_object.cc:142
int set_state(const XMLNode &)
Definition: gui_object.cc:125
XMLNode & get_state() const
Definition: gui_object.cc:119