Hiroyuki Ikezoe
ikezo****@users*****
2006年 11月 27日 (月) 11:58:39 JST
Index: libtomoe-gtk/ChangeLog diff -u libtomoe-gtk/ChangeLog:1.168 libtomoe-gtk/ChangeLog:1.169 --- libtomoe-gtk/ChangeLog:1.168 Sat Nov 25 22:28:45 2006 +++ libtomoe-gtk/ChangeLog Mon Nov 27 11:58:38 2006 @@ -1,3 +1,10 @@ +2006-11-27 Hiroyuki Ikezoe <poinc****@ikezo*****> + + * configure.ac: Add --enable-dumpstroke option. + * src/tomoe-canvas.[ch]: Add tomoe_canvas_get_candidates(). + * src/tomoe-stroke-search.c: Add the button to dump stroke data if + --enable-dumpstroke. + 2006-11-25 Takuro Ashie <ashie****@homa*****> * src/tomoe-canvas.c: Add "drawing" flag to avoid confusion. Index: libtomoe-gtk/configure.ac diff -u libtomoe-gtk/configure.ac:1.11 libtomoe-gtk/configure.ac:1.12 --- libtomoe-gtk/configure.ac:1.11 Thu Nov 23 16:15:49 2006 +++ libtomoe-gtk/configure.ac Mon Nov 27 11:58:38 2006 @@ -76,6 +76,12 @@ fi fi +# for dump stroke data +AC_ARG_ENABLE(dumpstroke, [ --enable-dumpstroke Enable dump of stroke data]) +if test x"$enable_dumpstroke" = "xyes"; then + AC_DEFINE(ENABLE_DUMPSTROKE, 1, [Define dumping stroke data]) +fi + # pkg-config PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.4.0]) AC_SUBST(GTK2_CFLAGS)