Added Catalan translation
[ukeyboard.git] / cpanel / prefs.h
blob9fd73d555dd5a46654e24c714cf57d1ae3228d6f
1 /*
2 * Copyright (c) 2008 Jiri Benc <jbenc@upir.cz>
3 * Copyright (c) 2009 Roman Moravcik <roman.moravcik@gmail.com>
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.
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.
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
19 #ifndef _PREFS_H
20 #define _PREFS_H
22 #define _HL(str) dgettext("hildon-libs",str)
23 #define _TI(str) dgettext("osso-applet-textinput",str)
25 #define IM_CONF_DIR "/apps/osso/inputmethod"
27 struct prefs {
28 GtkWidget *(*start)(GConfClient *, GtkWidget *, void **);
29 void (*action)(GConfClient *, void *);
30 void (*stop)(GConfClient *, void *);
31 char *name;
34 typedef void (*init_func)(struct prefs *);
36 extern gboolean internal_kbd;
37 extern gboolean inside_scratchbox;
39 gboolean get_bool(GConfClient *client, char *key);
40 void set_bool(GConfClient *client, char *key, gboolean val);
41 gint get_int(GConfClient *client, char *key);
42 void set_int(GConfClient *client, char *key, gint val);
43 gchar *get_str(GConfClient *client, char *key);
44 void set_str(GConfClient *client, char *key, gchar *val);
46 #endif