diff options
author | Gnome CVS User <gnomecvs@src.gnome.org> | 1997-11-27 04:16:39 +0000 |
---|---|---|
committer | Gnome CVS User <gnomecvs@src.gnome.org> | 1997-11-27 04:16:39 +0000 |
commit | dd34bcca5e6627c8a269c9232a8906e3bd8947df (patch) | |
tree | 5309f2ead99fbef5a4138556854079f68df48645 /gdk/gdkprivate.h | |
parent | e522ad46baaef62bb639a3a120c59203cb0af847 (diff) | |
download | gtk+-dd34bcca5e6627c8a269c9232a8906e3bd8947df.tar.gz |
Patches to support internationalized input by:
Takashi Matsuda <matsu@arch.comp.kyutech.ac.jp>
TANAKA Shinya <shinya@race.u-tokyo.ac.jp>
See ChangeLog entries for further details.
Also some small fixes to event handling in gdk/gdk.c; sending
clear events in gtk/gtkselection.c and cut-and-paste in
gtk/gtkentry.c
Diffstat (limited to 'gdk/gdkprivate.h')
-rw-r--r-- | gdk/gdkprivate.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gdk/gdkprivate.h b/gdk/gdkprivate.h index 3c1677e41f..9c0e9918d4 100644 --- a/gdk/gdkprivate.h +++ b/gdk/gdkprivate.h @@ -148,6 +148,19 @@ struct _GdkDndGlobals { }; typedef struct _GdkDndGlobals GdkDndGlobals; + +#ifdef USE_XIM + +struct _GdkICPrivate +{ + XIC xic; + GdkIMStyle style; +}; +typedef struct _GdkICPrivate GdkICPrivate; + +#endif /* USE_XIM */ + + void gdk_window_init (void); void gdk_visual_init (void); |