incomplete merge of master into windows (requires upcoming changes to master to be...
[ardour.git] / libs / ardour / ardour / rc_configuration.h
1 /*
2     Copyright (C) 1999 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 __ardour_rc_configuration_h__
21 #define __ardour_rc_configuration_h__
22
23 #include <map>
24 #include <string>
25
26 #include "ardour/types.h"
27 #include "ardour/utils.h"
28 #include "ardour/configuration.h"
29
30 class XMLNode;
31
32 namespace ARDOUR {
33
34 class RCConfiguration : public Configuration
35 {
36   public:
37         RCConfiguration();
38         ~RCConfiguration();
39
40         void map_parameters (boost::function<void (std::string)>&);
41         int set_state (XMLNode const &, int version);
42         XMLNode& get_state ();
43         XMLNode& get_variables ();
44         void set_variables (XMLNode const &);
45
46         int load_state ();
47         int save_state ();
48
49         /// calls Stateful::*instant_xml methods using
50         /// ARDOUR::user_config_directory for the directory argument
51         void add_instant_xml (XMLNode&);
52         XMLNode * instant_xml (const std::string& str);
53
54         XMLNode* control_protocol_state () { return _control_protocol_state; }
55
56         /* define accessor methods */
57
58 #undef  CONFIG_VARIABLE
59 #undef  CONFIG_VARIABLE_SPECIAL
60 #define CONFIG_VARIABLE(Type,var,name,value) \
61         Type get_##var () const { return var.get(); } \
62         bool set_##var (Type val) { bool ret = var.set (val); if (ret) { ParameterChanged (name); } return ret;  }
63 #define CONFIG_VARIABLE_SPECIAL(Type,var,name,value,mutator) \
64         Type get_##var () const { return var.get(); } \
65         bool set_##var (Type val) { bool ret = var.set (val); if (ret) { ParameterChanged (name); } return ret; }
66 #include "ardour/rc_configuration_vars.h"
67 #undef  CONFIG_VARIABLE
68 #undef  CONFIG_VARIABLE_SPECIAL
69
70   private:
71
72         /* declare variables */
73
74 #undef  CONFIG_VARIABLE
75 #undef  CONFIG_VARIABLE_SPECIAL
76 #define CONFIG_VARIABLE(Type,var,name,value) ConfigVariable<Type> var;
77 #define CONFIG_VARIABLE_SPECIAL(Type,var,name,value,mutator) ConfigVariableWithMutation<Type> var;
78 #include "ardour/rc_configuration_vars.h"
79 #undef  CONFIG_VARIABLE
80 #undef  CONFIG_VARIABLE_SPECIAL
81
82         XMLNode* _control_protocol_state;
83 };
84
85 /* XXX: rename this */
86 extern RCConfiguration *Config;
87 extern gain_t speed_quietning; /* see comment in configuration.cc */
88
89 } // namespace ARDOUR
90
91 #endif /* __ardour_configuration_h__ */