]> Pileus Git - ~andy/gtk/blob - modules/input/immultipress.c
Change FSF Address
[~andy/gtk] / modules / input / immultipress.c
1 /* Copyright (C) 2006 Openismus GmbH
2  * 
3  * This library is free software; you can redistribute it and/or
4  * modify it under the terms of the GNU Lesser 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  * Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public
14  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
15  */
16
17 #include "gtkimcontextmultipress.h"
18 #include <gtk/gtkimmodule.h> /* For GtkIMContextInfo */
19 #include <config.h>
20 #include <glib/gi18n.h>
21 #include <string.h> /* For strcmp() */
22
23 #define CONTEXT_ID "multipress"
24  
25 /** NOTE: Change the default language from "" to "*" to enable this input method by default for all locales.
26  */
27 static const GtkIMContextInfo info = { 
28   CONTEXT_ID,              /* ID */
29   N_("Multipress"),     /* Human readable name */
30   GETTEXT_PACKAGE,         /* Translation domain. Defined in configure.ac */
31   MULTIPRESS_LOCALEDIR,    /* Dir for bindtextdomain (not strictly needed for "gtk+"). Defined in the Makefile.am */
32   ""                       /* Languages for which this module is the default */
33 };
34
35 static const GtkIMContextInfo *info_list[] = {
36   &info
37 };
38
39 #ifndef INCLUDE_IM_multipress
40 #define MODULE_ENTRY(type, function) G_MODULE_EXPORT type im_module_ ## function
41 #else
42 #define MODULE_ENTRY(type, function) type _gtk_immodule_multipress_ ## function
43 #endif
44
45 MODULE_ENTRY (void, init) (GTypeModule *module)
46 {
47   gtk_im_context_multipress_register_type(module);
48 }
49
50 MODULE_ENTRY (void, exit) (void)
51 {
52 }
53
54 MODULE_ENTRY (void, list) (const GtkIMContextInfo ***contexts,
55                            int                      *n_contexts)
56 {
57   *contexts = info_list;
58   *n_contexts = G_N_ELEMENTS (info_list);
59 }
60
61 MODULE_ENTRY (GtkIMContext *, create) (const gchar *context_id)
62 {
63   if (strcmp (context_id, CONTEXT_ID) == 0)
64   {
65     GtkIMContext* imcontext = GTK_IM_CONTEXT(g_object_new (GTK_TYPE_IM_CONTEXT_MULTIPRESS, NULL));
66     return imcontext;
67   }
68   else
69     return NULL;
70 }