977ec20351125d081a5a3aa3809e9aac7243eb1d
[ardour.git] / gtk2_ardour / ui_config.h
1 /*
2     Copyright (C) 2000-2007 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_ui_configuration_h__
21 #define __ardour_ui_configuration_h__
22
23 #include <sstream>
24 #include <ostream>
25 #include <iostream>
26
27 #include <boost/function.hpp>
28 #include <boost/bind.hpp>
29
30 #include "ardour/types.h" // required for opeators used in pbd/configuration_variable.h
31
32 #include "pbd/stateful.h"
33 #include "pbd/xml++.h"
34 #include "pbd/configuration_variable.h"
35
36 #include "canvas/colors.h"
37
38 #include "utils.h"
39
40 class UIConfiguration : public PBD::Stateful
41 {
42 private:
43         UIConfiguration();
44         ~UIConfiguration();
45
46     public:
47         static UIConfiguration& instance();
48
49         static std::string color_file_suffix;
50
51         void load_rc_file (bool themechange, bool allow_own = true);
52
53         int load_state ();
54         int save_state ();
55         int load_defaults ();
56         int load_color_theme (bool allow_own);
57
58         int set_state (const XMLNode&, int version);
59         XMLNode& get_state (void);
60         XMLNode& get_variables (std::string);
61         void set_variables (const XMLNode&);
62
63         std::string  color_file_name (bool use_my, bool with_version) const;
64
65         typedef std::map<std::string,ArdourCanvas::Color> Colors;
66         typedef std::map<std::string,std::string> ColorAliases;
67         typedef std::map<std::string,ArdourCanvas::SVAModifier> Modifiers;
68
69         Colors         colors;
70         ColorAliases   color_aliases;
71         Modifiers      modifiers;
72
73         void set_alias (std::string const & name, std::string const & alias);
74         void set_color (const std::string& name, ArdourCanvas::Color);
75         void set_modifier (std::string const &, ArdourCanvas::SVAModifier svam);
76
77         std::string color_as_alias (ArdourCanvas::Color c);
78         ArdourCanvas::Color quantized (ArdourCanvas::Color) const;
79
80         ArdourCanvas::Color color (const std::string&, bool* failed = 0) const;
81         ArdourCanvas::Color color_mod (std::string const & color, std::string const & modifier) const;
82         ArdourCanvas::Color color_mod (const ArdourCanvas::Color& color, std::string const & modifier) const;
83         ArdourCanvas::HSV  color_hsv (const std::string&) const;
84         ArdourCanvas::SVAModifier modifier (const std::string&) const;
85
86         static std::string color_to_hex_string (ArdourCanvas::Color c);
87         static std::string color_to_hex_string_no_alpha (ArdourCanvas::Color c);
88
89         sigc::signal<void>  ColorsChanged;
90
91         void reset_dpi ();
92
93         float get_ui_scale ();
94
95         sigc::signal<void>  DPIReset;
96
97         sigc::signal<void,std::string> ParameterChanged;
98         void map_parameters (boost::function<void (std::string)>&);
99
100         void parameter_changed (std::string);
101
102         /** called before initializing any part of the GUI. Sets up
103          *  any runtime environment required to make the GUI work
104          *  in specific ways.
105          */
106         int pre_gui_init ();
107
108         /** called after the GUI toolkit has been initialized.
109          */
110         UIConfiguration* post_gui_init ();
111
112 #undef UI_CONFIG_VARIABLE
113 #define UI_CONFIG_VARIABLE(Type,var,name,value) \
114         Type get_##var () const { return var.get(); } \
115         bool set_##var (Type val) { bool ret = var.set (val); if (ret) { ParameterChanged (name); } return ret;  }
116 #include "ui_config_vars.h"
117 #undef  UI_CONFIG_VARIABLE
118 #define CANVAS_FONT_VARIABLE(var,name) \
119         Pango::FontDescription get_##var () const { return ARDOUR_UI_UTILS::sanitized_font (var.get()); } \
120         bool set_##var (const std::string& val) { bool ret = var.set (val); if (ret) { ParameterChanged (name); } return ret;  }
121 #include "canvas_vars.h"
122 #undef CANVAS_FONT_VARIABLE
123
124   private:
125         /* declare variables */
126
127 #undef  UI_CONFIG_VARIABLE
128 #define UI_CONFIG_VARIABLE(Type,var,name,value) PBD::ConfigVariable<Type> var;
129 #include "ui_config_vars.h"
130 #undef UI_CONFIG_VARIABLE
131
132 #define CANVAS_FONT_VARIABLE(var,name) PBD::ConfigVariable<std::string> var;
133 #include "canvas_vars.h"
134 #undef CANVAS_FONT_VARIABLE
135
136         XMLNode& state ();
137         bool _dirty;
138         bool aliases_modified;
139         bool colors_modified;
140         bool modifiers_modified;
141
142         int  store_color_theme ();
143         void load_color_aliases (XMLNode const &);
144         void load_colors (XMLNode const &);
145         void load_modifiers (XMLNode const &);
146         void reset_gtk_theme ();
147         int  load_color_file (std::string const &);
148         void colors_changed ();
149
150         uint32_t block_save;
151 };
152
153 #endif /* __ardour_ui_configuration_h__ */