aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-canvas.h
diff options
context:
space:
mode:
authorJody Goldberg <jgoldberg@home.com>2000-06-30 06:56:51 +0800
committerJody Goldberg <jody@src.gnome.org>2000-06-30 06:56:51 +0800
commit72c913ff20b2e03a338cd50fc302d18a7a95f72f (patch)
tree04c88d623129472f955280e1ee572240dd2dfe29 /e-util/e-canvas.h
parent9815b1b69b1c70add1bff85928f302f7caae71db (diff)
downloadgsoc2013-evolution-72c913ff20b2e03a338cd50fc302d18a7a95f72f.tar
gsoc2013-evolution-72c913ff20b2e03a338cd50fc302d18a7a95f72f.tar.gz
gsoc2013-evolution-72c913ff20b2e03a338cd50fc302d18a7a95f72f.tar.bz2
gsoc2013-evolution-72c913ff20b2e03a338cd50fc302d18a7a95f72f.tar.lz
gsoc2013-evolution-72c913ff20b2e03a338cd50fc302d18a7a95f72f.tar.xz
gsoc2013-evolution-72c913ff20b2e03a338cd50fc302d18a7a95f72f.tar.zst
gsoc2013-evolution-72c913ff20b2e03a338cd50fc302d18a7a95f72f.zip
Add simple deadkey support.
2000-06-29 Jody Goldberg <jgoldberg@home.com> * e-canvas.c (e_canvas_init) : Init the InputContext members (e_canvas_class_init) : Add a handler for unrealize. (e_canvas_focus_in) : enable the input context. (e_canvas_focus_out) : enable the input context. (e_canvas_realize) : Create an input context. (e_canvas_unrealize) : New function to release the input context. svn path=/trunk/; revision=3817
Diffstat (limited to 'e-util/e-canvas.h')
-rw-r--r--e-util/e-canvas.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/e-util/e-canvas.h b/e-util/e-canvas.h
index 06e3768e12..b13a9dd2ab 100644
--- a/e-util/e-canvas.h
+++ b/e-util/e-canvas.h
@@ -78,6 +78,10 @@ struct _ECanvas
int idle_id;
GList *selection;
ECanvasSelectionInfo *cursor;
+
+ /* Input context for dead key support */
+ GdkIC *ic;
+ GdkICAttr *ic_attr;
};
struct _ECanvasClass