Version bump (2.3-7)
[ukeyboard.git] / cpanel / langset.h
blob1dfc0f1c9610ecf764f52b606ba07aea6a7c8464
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 _LANGSET_H
20 #define _LANGSET_H
22 gboolean get_l_bool(GConfClient *client, char *lang, char *key);
23 void set_l_bool(GConfClient *client, char *lang, char *key, gboolean val);
24 gchar *get_l_str(GConfClient *client, char *lang, char *key);
25 void set_l_str(GConfClient *client, char *lang, char *key, gchar *val);
26 GList *get_dicts(GList *langs);
27 void fill_dict(HildonTouchSelector *combo, GList *langs, gchar *deflang);
29 #endif