1bf922793943b3bbf755438ec874eeb71b30a1f0
[synfig.git] / synfig-studio / src / synfigapp / settings.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file settings.h
3 **      \brief Template Header
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
10 **      This package is free software; you can redistribute it and/or
11 **      modify it under the terms of the GNU General Public License as
12 **      published by the Free Software Foundation; either version 2 of
13 **      the License, or (at your option) any later version.
14 **
15 **      This package is distributed in the hope that it will be useful,
16 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
17 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 **      General Public License for more details.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === S T A R T =========================================================== */
24
25 #ifndef __SYNFIG_SETTINGS_H
26 #define __SYNFIG_SETTINGS_H
27
28 /* === H E A D E R S ======================================================= */
29
30 #include <synfig/string.h>
31 #include <map>
32 #include <list>
33 #include <ETL/stringf>
34 #include <string.h>
35
36 /* === M A C R O S ========================================================= */
37
38 #define SETTINGS_LOCALE_SAFE_AND_BACKUP                                                                         \
39         char * old_locale;                                                                                                              \
40         old_locale=strdup(setlocale(LC_NUMERIC, NULL));                                                 \
41         setlocale(LC_NUMERIC, "C");
42
43 #define SETTINGS_LOCALE_RESTORE                                                                                         \
44         setlocale(LC_NUMERIC,old_locale);
45
46 /* === T Y P E D E F S ===================================================== */
47
48 /* === C L A S S E S & S T R U C T S ======================================= */
49
50 namespace synfigapp {
51
52 class Settings
53 {
54 public:
55
56         typedef std::list<synfig::String> KeyList;
57         typedef std::map<synfig::String,synfig::String> ValueBaseMap;
58         typedef std::map<synfig::String,Settings*> DomainMap;
59
60 private:
61         ValueBaseMap simple_value_map;
62
63         DomainMap domain_map;
64
65 public:
66         Settings();
67         virtual ~Settings();
68
69         virtual bool get_value(const synfig::String& key, synfig::String& value)const;
70         virtual bool set_value(const synfig::String& key,const synfig::String& value);
71         virtual KeyList get_key_list()const;
72
73         synfig::String get_value(const synfig::String& key)const;
74         void add_domain(Settings* domain, const synfig::String& name);
75         void remove_domain(const synfig::String& name);
76
77         bool load_from_string(const synfig::String& data);
78         bool save_to_string(synfig::String& data);
79
80         bool load_from_file(const synfig::String& filename);
81         bool save_to_file(const synfig::String& filename)const;
82 }; // END of class Settings
83
84 }; // END of namespace synfigapp
85
86 /* === E N D =============================================================== */
87
88 #endif