Comment #35 on issue 74 by neoedmund: java 程序当中无法做到光标跟随
http://code.google.com/p/ibus/issues/detail?id=74

实际上客户端可以设定光标的位置。 和ibus应该没有太大关系。
例如, 但是Java Swing 好像在这方面做的还不好。SWT, GTK+做到就不错。
[code]
void SetPos(ic, spot)
        XIC ic;XPoint* spot; {
        XVaNestedList list;
        list = XVaCreateNestedList(0, XNSpotLocation, spot, NULL);
        XSetICValues(ic, XNPreeditAttributes, list, NULL);
        XFree(list);
}
[/code]

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
--
You received this message because you are subscribed to the Google
Groups "ibus-devel" group.
iBus project web page: http://code.google.com/p/ibus/
iBus dev group: http://groups.google.com/group/ibus-devel?hl=en
--- You received this message because you are subscribed to the Google Groups "ibus-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

回复