Lines Matching defs:status

112     Window   w;                /*status window id        */
125 int statusW, statusH; /*status window's w, h */
128 char status[MAX_STATUS_LEN]; /*status text */
131 Bool on; /*if the status window on*/
150 StatusWindow *statusWindow; /* our own status window */
153 Widget statusWidget; /* IM status window widget */
515 Status status;
560 pX11IMData->lookup_buf_len - 1, &keysym, &status);
566 if (status == XBufferOverflow) {
576 pX11IMData->lookup_buf_len - 1, &keysym, &status);
592 switch (status) {
609 printf("lookupString: status=XLookupChars, type=%d, state=%x, keycode=%x, keysym=%x\n",
629 printf("lookupString: status=XLookupKeySym, type=%d, state=%x, keycode=%x, keysym=%x\n",
642 printf("lookupString: status=XLookupNone, type=%d, state=%x, keycode=%x, keysym=%x\n",
662 Window status;
749 status = XCreateWindow(dpy,
758 XSelectInput(dpy, status,
766 statusWindow->w = status;
788 statusWindow->lightGC = XCreateGC(dpy, status, valuemask, &values);
790 statusWindow->dimGC = XCreateGC(dpy, status, valuemask, &values);
792 statusWindow->fgGC = XCreateGC(dpy, status, valuemask, &values);
794 statusWindow->bgGC = XCreateGC(dpy, status, valuemask, &values);
799 /* This method is to turn off or turn on the status window. */
893 statusWindow->status,
894 strlen(statusWindow->status));
1021 XVaNestedList status = NULL;
1040 * If the parent window has one or more TextComponents, the status
1042 * root-window style status is used.
1057 at the same time, so use StatusCallback to draw the status
1071 * If the parent window has one or more TextComponents, the status
1073 * root-window style status is used.
1076 XVaNestedList status = NULL;
1077 status = awt_motif_getXICStatusAreaList(w, tc);
1078 if (status != NULL){
1080 XFree(status);
1140 status = (XVaNestedList)XVaCreateNestedList(0,
1146 if (status == NULL)
1154 XNStatusAttributes, status,
1156 XFree((void *)status);
1163 status = awt_motif_getXICStatusAreaList(w, tc);
1164 if (status == NULL)
1172 XNStatusAttributes, status,
1174 XFree((void *)status);
1392 strcpy(statusWindow->status, text->string.multi_byte);
1396 strcpy(statusWindow->status, mbstr);
1404 /*just turnoff the status window
1863 XVaNestedList status;
1877 status = awt_motif_getXICStatusAreaList(pX11IMData->statusWidget, tc);
1878 if (status != (XVaNestedList)NULL) {
1880 XNStatusAttributes, status,
1882 XFree((void *)status);