]> Pileus Git - ~andy/gtk/blob - gtk/gtkimcontext.h
applied patch from Andreas Persenius <ndap@swipnet.se> that updates the
[~andy/gtk] / gtk / gtkimcontext.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 2000 Red Hat Software
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __GTK_IM_CONTEXT_H__
21 #define __GTK_IM_CONTEXT_H__
22
23 #include <gdk/gdk.h>
24 #include <gtk/gtkobject.h>
25 #include <pango/pango.h>
26
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif /* __cplusplus */
31
32 #define GTK_TYPE_IM_CONTEXT              (gtk_im_context_get_type ())
33 #define GTK_IM_CONTEXT(obj)              (GTK_CHECK_CAST ((obj), GTK_TYPE_IM_CONTEXT, GtkIMContext))
34 #define GTK_IM_CONTEXT_CLASS(klass)      (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_IM_CONTEXT, GtkIMContextClass))
35 #define GTK_IS_IM_CONTEXT(obj)           (GTK_CHECK_TYPE ((obj), GTK_TYPE_IM_CONTEXT))
36 #define GTK_IS_IM_CONTEXT_CLASS(klass)   (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_IM_CONTEXT))
37 #define GTK_IM_CONTEXT_GET_CLASS(obj)    (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_IM_CONTEXT, GtkIMContextClass))
38
39
40 typedef struct _GtkIMContext       GtkIMContext;
41 typedef struct _GtkIMContextClass  GtkIMContextClass;
42
43 struct _GtkIMContext
44 {
45   GtkObject object;
46 };
47
48 struct _GtkIMContextClass
49 {
50   GtkObjectClass parent_class;
51
52   /* Signals */
53   void (*preedit_start)   (GtkIMContext *context);
54   void (*preedit_end)     (GtkIMContext *context);
55   void (*preedit_changed) (GtkIMContext *context);
56   void (*commit)          (GtkIMContext *context, const gchar *str);
57
58   /* Virtual functions */
59   void     (*set_client_window)  (GtkIMContext   *context,
60                                   GdkWindow      *window);
61   void     (*get_preedit_string) (GtkIMContext   *context,
62                                   gchar         **str,
63                                   PangoAttrList **attrs);
64   gboolean (*filter_keypress)    (GtkIMContext   *context,
65                                   GdkEventKey    *event);
66   void     (*focus_in)           (GtkIMContext   *context);
67   void     (*focus_out)          (GtkIMContext   *context);
68 };
69
70 GtkType       gtk_im_context_get_type           (void);
71
72 void          gtk_im_context_set_client_window  (GtkIMContext   *context,
73                                                  GdkWindow      *window);
74 void          gtk_im_context_get_preedit_string (GtkIMContext   *context,
75                                                  char          **str,
76                                                  PangoAttrList **attrs);
77 gboolean      gtk_im_context_filter_keypress    (GtkIMContext   *context,
78                                                  GdkEventKey    *event);
79 void          gtk_im_context_focus_in           (GtkIMContext   *context);
80 void          gtk_im_context_focus_out          (GtkIMContext   *context);
81
82 #ifdef __cplusplus
83 }
84 #endif /* __cplusplus */
85
86
87 #endif /* __GTK_IM_CONTEXT_H__ */