1fd2e71f179a21783d79be873afdcd4002bd6be1
[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 #ifdef HAVE_MAEMO5
23 #define _HL(str) dgettext("hildon-libs",str)
24 #endif
25
26 struct prefs {
27         GtkWidget *(*start)(GConfClient *, GtkWidget *, void **);
28         void (*action)(GConfClient *, void *);
29         void (*stop)(GConfClient *, void *);
30         char *name;
31 };
32
33 typedef void (*init_func)(struct prefs *);
34
35 extern gboolean internal_kbd;
36
37 gboolean get_bool(GConfClient *client, char *key);
38 void set_bool(GConfClient *client, char *key, gboolean val);
39 gint get_int(GConfClient *client, char *key);
40 void set_int(GConfClient *client, char *key, gint val);
41 gchar *get_str(GConfClient *client, char *key);
42 void set_str(GConfClient *client, char *key, gchar *val);
43
44 #endif