Part 1 of loading 2.X sessions; some things work, some things don't, hacks a-plenty.
[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
39         void map_parameters (sigc::slot<void, std::string>);
40         int set_state (XMLNode const &, int version = 3000);
41         XMLNode& get_state ();
42         XMLNode& get_variables ();
43         void set_variables (XMLNode const &);
44
45         std::map<std::string, XMLNode> midi_ports;
46
47         int load_state ();
48         int save_state ();
49
50         /// calls Stateful::*instant_xml methods using
51         /// ARDOUR::user_config_directory for the directory argument
52         void add_instant_xml (XMLNode&);
53         XMLNode * instant_xml (const std::string& str);
54
55         XMLNode* control_protocol_state () { return _control_protocol_state; }
56
57         /* define accessor methods */
58
59 #undef  CONFIG_VARIABLE
60 #undef  CONFIG_VARIABLE_SPECIAL
61 #define CONFIG_VARIABLE(Type,var,name,value) \
62         Type get_##var () const { return var.get(); } \
63         bool set_##var (Type val) { bool ret = var.set (val); if (ret) { ParameterChanged (name); } return ret;  }
64 #define CONFIG_VARIABLE_SPECIAL(Type,var,name,value,mutator) \
65         Type get_##var () const { return var.get(); } \
66         bool set_##var (Type val) { bool ret = var.set (val); if (ret) { ParameterChanged (name); } return ret; }
67 #include "ardour/rc_configuration_vars.h"
68 #undef  CONFIG_VARIABLE
69 #undef  CONFIG_VARIABLE_SPECIAL
70
71   private:
72
73         /* declare variables */
74
75 #undef  CONFIG_VARIABLE
76 #undef  CONFIG_VARIABLE_SPECIAL
77 #define CONFIG_VARIABLE(Type,var,name,value) ConfigVariable<Type> var;
78 #define CONFIG_VARIABLE_SPECIAL(Type,var,name,value,mutator) ConfigVariableWithMutation<Type> var;
79 #include "ardour/rc_configuration_vars.h"
80 #undef  CONFIG_VARIABLE
81 #undef  CONFIG_VARIABLE_SPECIAL
82
83         XMLNode* _control_protocol_state;
84 };
85
86 /* XXX: rename this */
87 extern RCConfiguration *Config;
88 extern gain_t speed_quietning; /* see comment in configuration.cc */
89
90 } // namespace ARDOUR
91
92 #endif /* __ardour_configuration_h__ */