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