]> Pileus Git - ~andy/gtk/blob - modules/input/imthai.c
Bug 99192 - Add --with-include-input-modules
[~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   "gtk+",          /* 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(function) G_MODULE_EXPORT im_module_ ## function
47 #else
48 #define MODULE_ENTRY(function) _gtk_immodule_thai_ ## function
49 #endif
50
51 void
52 MODULE_ENTRY (init) (GTypeModule *module)
53 {
54   gtk_im_context_thai_register_type (module);
55 }
56
57 void 
58 MODULE_ENTRY (exit) (void)
59 {
60 }
61
62 void 
63 MODULE_ENTRY (list) (const GtkIMContextInfo ***contexts,
64                      int                      *n_contexts)
65 {
66   *contexts = info_list;
67   *n_contexts = G_N_ELEMENTS (info_list);
68 }
69
70 GtkIMContext *
71 MODULE_ENTRY (create) (const gchar *context_id)
72 {
73   if (strcmp (context_id, "thai") == 0)
74     return gtk_im_context_thai_new ();
75   else
76     return NULL;
77 }