]> Pileus Git - ~andy/gtk/blob - modules/input/imthai.c
Create enum PrinterStateLevel
[~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, see <http://www.gnu.org/licenses/>.
15  *
16  * Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
17  *
18  */
19
20 #include "config.h"
21 #include <string.h>
22
23 #include <gdk/gdkkeysyms.h>
24
25 #include "gtk/gtkintl.h"
26 #include "gtk/gtkimmodule.h"
27 #include "gtkimcontextthai.h"
28
29 GType type_thai = 0;
30
31 static const GtkIMContextInfo thai_info = { 
32   "thai",          /* ID */
33   N_("Thai-Lao"),  /* Human readable name */
34   GETTEXT_PACKAGE, /* Translation domain */
35   GTK_LOCALEDIR,   /* Dir for bindtextdomain (not strictly needed for "gtk+") */
36   "lo:th"          /* Languages for which this module is the default */
37 };
38
39 static const GtkIMContextInfo *info_list[] = {
40   &thai_info
41 };
42
43 #ifndef INCLUDE_IM_thai
44 #define MODULE_ENTRY(type, function) G_MODULE_EXPORT type im_module_ ## function
45 #else
46 #define MODULE_ENTRY(type, function) type _gtk_immodule_thai_ ## function
47 #endif
48
49 MODULE_ENTRY (void, init) (GTypeModule *module)
50 {
51   gtk_im_context_thai_register_type (module);
52 }
53
54 MODULE_ENTRY (void, exit) (void)
55 {
56 }
57
58 MODULE_ENTRY (void, list) (const GtkIMContextInfo ***contexts,
59                            int                      *n_contexts)
60 {
61   *contexts = info_list;
62   *n_contexts = G_N_ELEMENTS (info_list);
63 }
64
65 MODULE_ENTRY (GtkIMContext *, create) (const gchar *context_id)
66 {
67   if (strcmp (context_id, "thai") == 0)
68     return gtk_im_context_thai_new ();
69   else
70     return NULL;
71 }