~ubuntu-branches/ubuntu/precise/gnome-do/precise-proposed

« back to all changes in this revision

Viewing changes to Do/src/GconfPreferencesBackend.cs

  • Committer: Bazaar Package Importer
  • Author(s): Christopher James Halse Rogers
  • Date: 2008-09-14 10:09:40 UTC
  • mto: (0.1.8 sid)
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: james.westby@ubuntu.com-20080914100940-kyghudg7py14bu2z
Tags: upstream-0.6.0.0
ImportĀ upstreamĀ versionĀ 0.6.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GconfPreferencesBackend.cs
 
2
 *
 
3
 * GNOME Do is the legal property of its developers. Please refer to the
 
4
 * COPYRIGHT file distributed with this
 
5
 * source distribution.
 
6
 *
 
7
 * This program is free software: you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation, either version 3 of the License, or
 
10
 * (at your option) any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
 */
 
20
 
 
21
using System;
 
22
 
 
23
namespace Do
 
24
{       
 
25
        public class GconfPreferencesBackend : IPreferencesBackend
 
26
        {
 
27
                const string GConfRootPath = "/apps/gnome-do/preferences";
 
28
 
 
29
                string name;
 
30
                GConf.Client client;
 
31
 
 
32
                public GconfPreferencesBackend (string name)
 
33
                {
 
34
                        this.name = name;
 
35
                        client = new GConf.Client();
 
36
                }
 
37
 
 
38
                /// <summary>
 
39
                /// If key contains an absolute path, return it; otherwise, return
 
40
                /// an absolute path for the key by appending it to Do's root gconf path.
 
41
                /// </summary>
 
42
                /// <param name="key">
 
43
                /// A <see cref="System.String"/> gconf key, containing either an
 
44
                /// absolute path or a key relative to Do's root path (e.g "key_binding"
 
45
                /// or "ui/color").
 
46
                /// </param>
 
47
                /// <returns>
 
48
                /// A <see cref="System.String"/> containing an absolute gconf path.
 
49
                /// </returns>
 
50
                private string MakeKeyPath (string key)
 
51
                {
 
52
                        if (key.StartsWith ("/")) return key;
 
53
                        return string.Format ("{0}/{1}/{2}", GConfRootPath, name, key);
 
54
                }
 
55
                
 
56
                public bool Set<T> (string key, T val)
 
57
                {
 
58
                        bool success;
 
59
 
 
60
                        success = true;
 
61
                        try {
 
62
                                client.Set (MakeKeyPath (key), val);
 
63
                        } catch {
 
64
                                success = false;
 
65
                        }
 
66
                        return success;
 
67
                }
 
68
 
 
69
                public bool TryGet<T> (string key, out T val)
 
70
                {
 
71
                        bool success;
 
72
 
 
73
                        success = true;
 
74
                        try {
 
75
                                val = (T) client.Get (MakeKeyPath (key));
 
76
                        } catch {
 
77
                                success = false;
 
78
                        }
 
79
                        return success;
 
80
                }
 
81
        }
 
82
}