]> Pileus Git - ~andy/gtk/blob - modules/input/imthai.c
gail: Add back get_name for menu items
[~andy/gtk] / modules / input / imthai.c
1 /* GTK - The GIMP Toolkit
2  *
3  * This library is free software; you can redistribute it and/or
4  * modify it under the terms of the GNU Library General Public
5  * License as published by the Free Software Foundation; either
6  * version 2 of the License, or (at your option) any later version.
7  *
8  * This library is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * Library General Public License for more details.
12  *
13  * You should have received a copy of the GNU Library General Public
14  * License along with this library; if not, write to the
15  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16  * Boston, MA 02111-1307, USA.
17  *
18  * Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
19  *
20  */
21
22 #include "config.h"
23 #include <string.h>
24
25 #include <gdk/gdkkeysyms.h>
26
27 #include "gtk/gtkintl.h"
28 #include "gtk/gtkimmodule.h"
29 #include "gtkimcontextthai.h"
30
31 GType type_thai = 0;
32
33 static const GtkIMContextInfo thai_info = { 
34   "thai",          /* ID */
35   N_("Thai-Lao"),  /* Human readable name */
36   GETTEXT_PACKAGE, /* Translation domain */
37   GTK_LOCALEDIR,   /* Dir for bindtextdomain (not strictly needed for "gtk+") */
38   "lo:th"          /* Languages for which this module is the default */
39 };
40
41 static const GtkIMContextInfo *info_list[] = {
42   &thai_info
43 };
44
45 #ifndef INCLUDE_IM_thai
46 #define MODULE_ENTRY(type, function) G_MODULE_EXPORT type im_module_ ## function
47 #else
48 #define MODULE_ENTRY(type, function) type _gtk_immodule_thai_ ## function
49 #endif
50
51 MODULE_ENTRY (void, init) (GTypeModule *module)
52 {
53   gtk_im_context_thai_register_type (module);
54 }
55
56 MODULE_ENTRY (void, exit) (void)
57 {
58 }
59
60 MODULE_ENTRY (void, list) (const GtkIMContextInfo ***contexts,
61                            int                      *n_contexts)
62 {
63   *contexts = info_list;
64   *n_contexts = G_N_ELEMENTS (info_list);
65 }
66
67 MODULE_ENTRY (GtkIMContext *, create) (const gchar *context_id)
68 {
69   if (strcmp (context_id, "thai") == 0)
70     return gtk_im_context_thai_new ();
71   else
72     return NULL;
73 }