]> Pileus Git - ~andy/gtk/blob - modules/input/immultipress.c
Include "config.h" instead of <config.h> Command used: find -name
[~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, write to the
15  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16  * Boston, MA 02111-1307, USA.
17  */
18
19 #include "gtkimcontextmultipress.h"
20 #include <gtk/gtkimmodule.h> /* For GtkIMContextInfo */
21 #include "config.h"
22 #include <glib/gi18n.h>
23 #include <string.h> /* For strcmp() */
24
25 #define CONTEXT_ID "multipress"
26  
27 /** NOTE: Change the default language from "" to "*" to enable this input method by default for all locales.
28  */
29 static const GtkIMContextInfo info = { 
30   CONTEXT_ID,              /* ID */
31   N_("Multipress"),     /* Human readable name */
32   GETTEXT_PACKAGE,         /* Translation domain. Defined in configure.ac */
33   MULTIPRESS_LOCALEDIR,    /* Dir for bindtextdomain (not strictly needed for "gtk+"). Defined in the Makefile.am */
34   ""                       /* Languages for which this module is the default */
35 };
36
37 static const GtkIMContextInfo *info_list[] = {
38   &info
39 };
40
41 #ifndef INCLUDE_IM_multipress
42 #define MODULE_ENTRY(type, function) G_MODULE_EXPORT type im_module_ ## function
43 #else
44 #define MODULE_ENTRY(type, function) type _gtk_immodule_multipress_ ## function
45 #endif
46
47 MODULE_ENTRY (void, init) (GTypeModule *module)
48 {
49   gtk_im_context_multipress_register_type(module);
50 }
51
52 MODULE_ENTRY (void, exit) (void)
53 {
54 }
55
56 MODULE_ENTRY (void, list) (const GtkIMContextInfo ***contexts,
57                            int                      *n_contexts)
58 {
59   *contexts = info_list;
60   *n_contexts = G_N_ELEMENTS (info_list);
61 }
62
63 MODULE_ENTRY (GtkIMContext *, create) (const gchar *context_id)
64 {
65   if (strcmp (context_id, CONTEXT_ID) == 0)
66   {
67     GtkIMContext* imcontext = GTK_IM_CONTEXT(g_object_new (GTK_TYPE_IM_CONTEXT_MULTIPRESS, NULL));
68     return imcontext;
69   }
70   else
71     return NULL;
72 }