auto-re-connect ALSA seq ports at startup, if they were connected; may break OS X...
[ardour.git] / libs / ardour / ardour / 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_configuration_h__
21 #define __ardour_configuration_h__
22
23 #include <map>
24 #include <vector>
25
26 #include <sys/types.h>
27 #include <string>
28
29 #include <pbd/stateful.h> 
30
31 #include <ardour/types.h>
32 #include <ardour/utils.h>
33 #include <ardour/configuration_variable.h>
34
35 class XMLNode;
36
37 namespace ARDOUR {
38
39 class Configuration : public Stateful
40 {
41   public:
42         Configuration();
43         virtual ~Configuration();
44
45         std::map<std::string,XMLNode> midi_ports;
46
47         void map_parameters (sigc::slot<void,const char*> theSlot);
48
49         int load_state ();
50         int save_state ();
51
52         int set_state (const XMLNode&);
53         XMLNode& get_state (void);
54         XMLNode& get_variables (sigc::slot<bool,ConfigVariableBase::Owner>);
55         void set_variables (const XMLNode&, ConfigVariableBase::Owner owner);
56
57         void set_current_owner (ConfigVariableBase::Owner);
58
59         XMLNode* control_protocol_state () { return _control_protocol_state; }
60
61         sigc::signal<void,const char*> ParameterChanged;
62
63         /* define accessor methods */
64
65 #undef  CONFIG_VARIABLE
66 #undef  CONFIG_VARIABLE_SPECIAL
67 #define CONFIG_VARIABLE(Type,var,name,value) \
68         Type get_##var () const { return var.get(); } \
69         bool set_##var (Type val) { bool ret = var.set (val, current_owner); if (ret) { ParameterChanged (name); } return ret;  }
70 #define CONFIG_VARIABLE_SPECIAL(Type,var,name,value,mutator) \
71         Type get_##var () const { return var.get(); } \
72         bool set_##var (Type val) { bool ret = var.set (val, current_owner); if (ret) { ParameterChanged (name); } return ret; }
73 #include "ardour/configuration_vars.h"
74 #undef  CONFIG_VARIABLE
75 #undef  CONFIG_VARIABLE_SPECIAL
76         
77   private:
78
79         /* declare variables */
80
81 #undef  CONFIG_VARIABLE
82 #undef  CONFIG_VARIABLE_SPECIAL 
83 #define CONFIG_VARIABLE(Type,var,name,value) ConfigVariable<Type> var;
84 #define CONFIG_VARIABLE_SPECIAL(Type,var,name,value,mutator) ConfigVariableWithMutation<Type> var;
85 #include "ardour/configuration_vars.h"
86 #undef  CONFIG_VARIABLE
87 #undef  CONFIG_VARIABLE_SPECIAL 
88
89         ConfigVariableBase::Owner current_owner;
90         XMLNode* _control_protocol_state;
91
92         XMLNode& state (sigc::slot<bool,ConfigVariableBase::Owner>);
93         bool     save_config_options_predicate (ConfigVariableBase::Owner owner);
94 };
95
96 extern Configuration *Config;
97 extern gain_t speed_quietning; /* see comment in configuration.cc */
98
99 } // namespace ARDOUR
100
101 #endif /* __ardour_configuration_h__ */