8bddb59858fe56a79ad8e9fd36de31048b41f80e
[slovak-l10n] / ukeyboard / cpanel / prefs.h
1 /*
2  *  Copyright (c) 2008 Jiri Benc <jbenc@upir.cz>
3  *  Copyright (c) 2009 Roman Moravcik <roman.moravcik@gmail.com>
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License version 2 as
7  *  published by the Free Software Foundation.
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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18
19 #ifndef _PREFS_H
20 #define _PREFS_H
21
22 #define _HL(str) dgettext("hildon-libs",str)
23
24 struct prefs {
25         GtkWidget *(*start)(GConfClient *, GtkWidget *, void **);
26         void (*action)(GConfClient *, void *);
27         void (*stop)(GConfClient *, void *);
28         char *name;
29 };
30
31 typedef void (*init_func)(struct prefs *);
32
33 extern gboolean internal_kbd;
34
35 gboolean get_bool(GConfClient *client, char *key);
36 void set_bool(GConfClient *client, char *key, gboolean val);
37 gint get_int(GConfClient *client, char *key);
38 void set_int(GConfClient *client, char *key, gint val);
39 gchar *get_str(GConfClient *client, char *key);
40 void set_str(GConfClient *client, char *key, gchar *val);
41
42 #endif