Update Headers.
[ibus.git] / gtk2 / ibusimcontext.h
blob074d1e6bc2258fa9699a2fc37cc2c7319c04629c
1 /* vim:set et ts=4: */
2 /* IBus - The Input Bus
3 * Copyright (C) 2008-2009 Huang Peng <shawn.p.huang@gmail.com>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
20 #ifndef __IBUS_IM_CONTEXT_H_
21 #define __IBUS_IM_CONTEXT_H_
23 #include <gtk/gtk.h>
26 * Type macros.
29 G_BEGIN_DECLS
30 typedef struct _IBusIMContext IBusIMContext;
31 typedef struct _IBusIMContextClass IBusIMContextClass;
32 typedef struct _IBusIMContextPrivate IBusIMContextPrivate;
34 struct _IBusIMContext {
35 GtkIMContext parent;
36 /* instance members */
37 IBusIMContextPrivate *priv;
40 struct _IBusIMContextClass {
41 GtkIMContextClass parent;
42 /* class members */
45 GtkIMContext *ibus_im_context_new (void);
46 void ibus_im_context_register_type (GTypeModule *type_module);
47 void ibus_im_context_shutdown (void);
49 G_END_DECLS
50 #endif