- 论坛徽章:
- 0
|
-
- #include <stdio.h>
- #include <stdlib.h>
- #include <X11/Xlib.h>
- #include <X11/keysym.h>
- #include <X11/Xutil.h>
- #include <X11/extensions/XShm.h>
- #include <X11/Xlocale.h>
- #include <time.h>
- #include <sys/time.h>
- #define W 300
- #define H 300
- XFontSet createFontSet (Display* dpy, XIM im)
- {
- XFontSet fontset;
- char **missing_charsets;
- int num_missing_charsets = 0;
- char *default_string;
- int i;
- fontset = XCreateFontSet(dpy,
- "-adobe-helvetica-medium-r-normal--14-*-*-*-*-*-iso8859-*,\
- -*-song-medium-r-normal--14-*-*-*-*-*-gb2312.1980-0",
- &missing_charsets, &num_missing_charsets,
- &default_string);
- /*
- * if there are charsets for which no fonts can
- * be found, print a warning message.
- */
- if (num_missing_charsets > 0) {
- fprintf(stderr, "The following charsets are missing:\n");
- for(i=0; i < num_missing_charsets; i++)
- {
- fprintf(stderr, "%s\n", missing_charsets[i]);
- }
- fprintf(stderr, "The string %s will be used in place of "
- "any characters from those sets.", default_string);
- XFreeStringList(missing_charsets);
- }
- return fontset;
- }
- XIMStyle ChooseBetterStyle(XIMStyle style1, XIMStyle style2)
- {
- XIMStyle s,t;
- XIMStyle preedit = XIMPreeditArea | XIMPreeditCallbacks |
- XIMPreeditPosition | XIMPreeditNothing | XIMPreeditNone;
- XIMStyle status = XIMStatusArea | XIMStatusCallbacks |
- XIMStatusNothing | XIMStatusNone;
- if (style1 == 0) return style2;
- if (style2 == 0) return style1;
- if ((style1 & (preedit | status)) == (style2 & (preedit | status)))
- return style1;
- s = style1 & preedit;
- t = style2 & preedit;
- if (s != t) {
- int st = (s | t);
- if (st & XIMPreeditCallbacks)
- return (s == XIMPreeditCallbacks)?style1:style2;
- else if (st & XIMPreeditPosition)
- return (s == XIMPreeditPosition)?style1:style2;
- else if (st & XIMPreeditArea)
- return (s == XIMPreeditArea)?style1:style2;
- else if (st & XIMPreeditNothing)
- return (s == XIMPreeditNothing)?style1:style2;
- }
- else { /* if preedit flags are the same, compare status flags */
- s = style1 & status;
- t = style2 & status;
- int st = (s | t);
- if (st & XIMStatusCallbacks)
- return (s == XIMStatusCallbacks)?style1:style2;
- else if (st & XIMStatusArea)
- return (s == XIMStatusArea)?style1:style2;
- else if (st & XIMStatusNothing)
- return (s == XIMStatusNothing)?style1:style2;
- }
- return 0;
- }
- XIC createInputContext (Display* dpy, Window win, XIM im)
- {
- XFontSet fontset;
- XIC ic;
- XIMStyles *im_supported_styles;
- XIMStyle app_supported_styles;
- XIMStyle style;
- XIMStyle best_style;
- XVaNestedList list;
- int i;
- fontset = createFontSet (dpy, im);
- /* figure out which styles the IM can support */
- XGetIMValues (im, XNQueryInputStyle, &im_supported_styles, NULL);
- /* set flags for the styles our application can support */
- app_supported_styles = XIMPreeditNone | XIMPreeditNothing | XIMPreeditArea;
- app_supported_styles |= XIMStatusNone | XIMStatusNothing | XIMStatusArea;
- /*
- * now look at each of the IM supported styles, and
- * chose the "best" one that we can support.
- */
- best_style = 0;
- for(i=0; i < im_supported_styles->count_styles; i++) {
- style = im_supported_styles->supported_styles[i];
- if ((style & app_supported_styles) == style) /* if we can handle it */
- best_style = ChooseBetterStyle(style, best_style);
- }
- /* if we couldn't support any of them, print an error and exit */
- if (best_style == 0) {
- (void)fprintf(stderr, "application and program do not share a "
- "commonly supported interaction style.\n");
- exit(1);
- }
- XFree(im_supported_styles);
- /*
- * Now go create an IC using the style we chose.
- * Also set the window and fontset attributes now.
- */
- list = XVaCreateNestedList(0, XNFontSet, fontset, NULL);
- printf ("list = %p\n", list);
- ic = XCreateIC(im, XNInputStyle, best_style,
- XNClientWindow, win,
- XNPreeditAttributes, list,
- // XNPreeditAttributes, NULL,
- XNStatusAttributes, list,
- //XNStatusAttributes, NULL,
- NULL);
- printf ("ic = %p\n", ic);
- XFree(list);
- return ic;
- }
- #define FALSE 0
- #define TRUE 1
- int main (int argc, char **argv)
- {
- Display *dpy;
- int screen;
- Window w;
- fd_set fdset;
- XIM im;
- XIC ic;
- struct timeval now, timePoint, waitTime;
- int delay;
- XEvent xev;
- int status;
- KeySym keysym;
- if (setlocale(LC_ALL, "zh_CN.utf-8") == NULL) {
- fprintf(stderr, "cannot set locale.\n");
- exit(1);
- }
- if (!XSupportsLocale()) {
- fprintf(stderr, "X does not support locale %s.\n", setlocale(LC_ALL, NULL));
- exit(1);
- }
- dpy = XOpenDisplay (NULL);
- if (XSetLocaleModifiers("") == NULL) {
- fprintf(stderr, "Warning: cannot set locale modifiers.\n");
- exit(1);
- }
- if ((im = XOpenIM(dpy, NULL, NULL, NULL)) == NULL) {
- fprintf(stderr, "Couldn't open input method\n");
- exit(1);
- }
- screen = DefaultScreen (dpy);
- w = XCreateSimpleWindow (dpy, RootWindow (dpy, screen),
- 0, 0, W, H, 0,
- BlackPixel (dpy, screen), WhitePixel (dpy, screen));
- XSelectInput (dpy, w,
- PointerMotionMask | ButtonReleaseMask
- | ExposureMask | StructureNotifyMask
- | ButtonPressMask | KeyPressMask);
- XMapWindow (dpy, w);
- ic = createInputContext (dpy, w, im);
- printf ("ic = %p\n", ic);
- FD_ZERO(&fdset);
- XSync(dpy, FALSE);
- gettimeofday (&timePoint, NULL);
- while (1)
- {
- FD_SET (ConnectionNumber(dpy),&fdset);
- gettimeofday (&now, NULL);
- delay = (timePoint.tv_sec-now.tv_sec)*1000 + (timePoint.tv_usec-now.tv_usec)/1000;
- if (delay < 0) {
- delay = 0;
- }
- waitTime.tv_sec = delay / 1000;
- waitTime.tv_usec = (delay % 1000) * 1000;
- status = XPending (dpy);
- if (status == 0)
- {
- status = select (ConnectionNumber(dpy)+1, &fdset, 0, 0, &waitTime);
- }
- if (status == 0) {
- timePoint.tv_usec += 83*1000;
- if (timePoint.tv_usec > 1000000)
- {
- timePoint.tv_usec -= 1000000;
- timePoint.tv_sec ++;
- }
- /*TODO: ....*/
- }
- else if (status > 0)
- {
- XNextEvent (dpy, &xev);
- if (xev.xany.window == w)
- {
- switch (xev.xany.type)
- {
- case ButtonPress:
- printf(" butun press\n");
- break;
- case MotionNotify:
- printf(" mouse move press\n");
- break;
- case KeyPress:
- {
- printf(" key press\n");
- int strBufLen = 100;
- char strBuf [strBufLen];
- Status statRet;
- /* Get characters until you encounter a
- * carriage return; deal with backspaces, etc. */
- if (XFilterEvent (&xev, w))
- {
- printf ("filtered key event\n");
- continue;
- }
- XmbLookupString (ic, &(xev.xkey), strBuf, strBufLen,
- &keysym, &statRet);
- printf ("statRet = %d\n", statRet);
- printf ("char is :%s\n", strBuf);
- //XLookupString(&(xev.xkey), NULL, 0, &keysym, 0);
- }
- break;
- default:
- printf(" other event\n");
- break;
- }
- }
- }
- }
- XCloseDisplay (dpy);
- return 0;
- }
复制代码
运行后,用ctrl+space可以控制 fcitx的输入提示框显示/隐藏,但只能输入英文。不知道怎么回事,大家帮帮忙! |
|