/[rdesktop]/sourceforge.net/trunk/rdesktop/xwin.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/trunk/rdesktop/xwin.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 70 by astrand, Sat Jul 27 23:09:32 2002 UTC revision 82 by astrand, Tue Jul 30 07:18:48 2002 UTC
# Line 25  Line 25 
25  #define XK_MISCELLANY  #define XK_MISCELLANY
26  #include <X11/keysymdef.h>  #include <X11/keysymdef.h>
27  #include "rdesktop.h"  #include "rdesktop.h"
28    #include "scancodes.h"
29    
30  extern int width;  extern int width;
31  extern int height;  extern int height;
32  extern BOOL sendmotion;  extern BOOL sendmotion;
33  extern BOOL fullscreen;  extern BOOL fullscreen;
34    extern BOOL grab_keyboard;
35    
36  Display *display = NULL;  Display *display = NULL;
37  static int x_socket;  static int x_socket;
# Line 215  init_inputmethod(void) Line 217  init_inputmethod(void)
217             It seems to work alright anyway, though. */             It seems to work alright anyway, though. */
218          if (IC != NULL)          if (IC != NULL)
219          {          {
220                  if (XGetICValues(IC, XNFilterEvents, &filtered_events, NULL)                  if (XGetICValues(IC, XNFilterEvents, &filtered_events, NULL) != NULL)
                     != NULL)  
221                  {                  {
222                          error("Failed to obtain XNFilterEvents value from IC\n");                          error("Failed to obtain XNFilterEvents value from IC\n");
223                          filtered_events = 0;                          filtered_events = 0;
# Line 239  close_inputmethod(void) Line 240  close_inputmethod(void)
240          }          }
241  }  }
242    
243    BOOL
244    ui_init()
245    {
246            Screen *screen;
247            display = XOpenDisplay(NULL);
248            if (display == NULL)
249            {
250                    error("Failed to open display\n");
251                    return False;
252            }
253            if (fullscreen)
254            {
255                    screen = DefaultScreenOfDisplay(display);
256                    width = WidthOfScreen(screen);
257                    height = HeightOfScreen(screen);
258            }
259            return True;
260    }
261    
262  BOOL  BOOL
263  ui_create_window(char *title)  ui_create_window(char *title)
# Line 252  ui_create_window(char *title) Line 271  ui_create_window(char *title)
271          uint16 test;          uint16 test;
272          int i;          int i;
273    
         display = XOpenDisplay(NULL);  
   
         if (display == NULL)  
         {  
                 error("Failed to open display\n");  
                 return False;  
         }  
   
274          x_socket = ConnectionNumber(display);          x_socket = ConnectionNumber(display);
275          screen = DefaultScreenOfDisplay(display);          screen = DefaultScreenOfDisplay(display);
276          visual = DefaultVisualOfScreen(screen);          visual = DefaultVisualOfScreen(screen);
# Line 272  ui_create_window(char *title) Line 283  ui_create_window(char *title)
283                     desirable, e.g. 24 bits->32 bits. */                     desirable, e.g. 24 bits->32 bits. */
284                  while (i--)                  while (i--)
285                  {                  {
286                          if ((pfm[i].depth == depth)                          if ((pfm[i].depth == depth) && (pfm[i].bits_per_pixel > bpp))
                             && (pfm[i].bits_per_pixel > bpp))  
287                          {                          {
288                                  bpp = pfm[i].bits_per_pixel;                                  bpp = pfm[i].bits_per_pixel;
289                          }                          }
# Line 320  ui_create_window(char *title) Line 330  ui_create_window(char *title)
330          wnd = XCreateWindow(display, RootWindowOfScreen(screen),          wnd = XCreateWindow(display, RootWindowOfScreen(screen),
331                              0, 0, width, height, 0, CopyFromParent,                              0, 0, width, height, 0, CopyFromParent,
332                              InputOutput, CopyFromParent,                              InputOutput, CopyFromParent,
333                              CWBackingStore | CWBackPixel | CWOverrideRedirect,                              CWBackingStore | CWBackPixel | CWOverrideRedirect, &attribs);
                             &attribs);  
334    
335          XStoreName(display, wnd, title);          XStoreName(display, wnd, title);
336    
# Line 345  ui_create_window(char *title) Line 354  ui_create_window(char *title)
354    
355          xkeymap_init2();          xkeymap_init2();
356    
357          input_mask =          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask;
358                  KeyPressMask | KeyReleaseMask | ButtonPressMask |          if (grab_keyboard)
359                  ButtonReleaseMask | EnterWindowMask | LeaveWindowMask;                  input_mask |= EnterWindowMask | LeaveWindowMask;
360          if (sendmotion)          if (sendmotion)
361                  input_mask |= PointerMotionMask;                  input_mask |= PointerMotionMask;
362    
# Line 425  xwin_process_events() Line 434  xwin_process_events()
434                                  {                                  {
435                                          XmbLookupString(IC,                                          XmbLookupString(IC,
436                                                          (XKeyPressedEvent *) &                                                          (XKeyPressedEvent *) &
437                                                          xevent, str,                                                          xevent, str, sizeof(str), &keysym, &status);
438                                                          sizeof(str), &keysym,                                          if (!((status == XLookupKeySym) || (status == XLookupBoth)))
                                                         &status);  
                                         if (!  
                                             ((status == XLookupKeySym)  
                                              || (status == XLookupBoth)))  
439                                          {                                          {
440                                                  error("XmbLookupString failed with status 0x%x\n", status);                                                  error("XmbLookupString failed with status 0x%x\n",
441                                                          status);
442                                                  break;                                                  break;
443                                          }                                          }
444                                  }                                  }
445                                  else                                  else
446                                  {                                  {
447                                          /* Plain old XLookupString */                                          /* Plain old XLookupString */
448                                          DEBUG_KBD                                          DEBUG_KBD("No input context, using XLookupString\n");
                                                 ("No input context, using XLookupString\n");  
449                                          XLookupString((XKeyEvent *) & xevent,                                          XLookupString((XKeyEvent *) & xevent,
450                                                        str, sizeof(str),                                                        str, sizeof(str), &keysym, NULL);
                                                       &keysym, NULL);  
451                                  }                                  }
452    
453                                  ksname = get_ksname(keysym);                                  ksname = get_ksname(keysym);
454                                  DEBUG_KBD                                  DEBUG_KBD("\nKeyPress for (keysym 0x%lx, %s)\n", keysym, ksname);
                                         ("\nKeyPress for (keysym 0x%lx, %s)\n",  
                                          keysym, ksname);  
455    
456                                  if (inhibit_key(keysym))                                  if (inhibit_key(keysym))
457                                  {                                  {
# Line 458  xwin_process_events() Line 460  xwin_process_events()
460                                  }                                  }
461    
462                                  tr = xkeymap_translate_key(keysym,                                  tr = xkeymap_translate_key(keysym,
463                                                             xevent.xkey.                                                             xevent.xkey.keycode, xevent.xkey.state);
                                                            keycode,  
                                                            xevent.xkey.state);  
464    
465                                  ensure_remote_modifiers(ev_time, tr);                                  ensure_remote_modifiers(ev_time, tr);
466    
467                                  if (tr.scancode == 0)                                  if (tr.scancode == 0)
468                                          break;                                          break;
469    
470                                  rdp_send_scancode(ev_time, RDP_KEYPRESS,                                  rdp_send_scancode(ev_time, RDP_KEYPRESS, tr.scancode);
                                                   tr.scancode);  
471                                  break;                                  break;
472                          case KeyRelease:                          case KeyRelease:
473                                  XLookupString((XKeyEvent *) & xevent, str,                                  XLookupString((XKeyEvent *) & xevent, str,
474                                                sizeof(str), &keysym, NULL);                                                sizeof(str), &keysym, NULL);
475    
476                                  ksname = get_ksname(keysym);                                  ksname = get_ksname(keysym);
477                                  DEBUG_KBD                                  DEBUG_KBD("\nKeyRelease for (keysym 0x%lx, %s)\n", keysym, ksname);
                                         ("\nKeyRelease for (keysym 0x%lx, %s)\n",  
                                          keysym, ksname);  
478    
479                                  if (inhibit_key(keysym))                                  if (inhibit_key(keysym))
480                                          break;                                          break;
481    
482                                  tr = xkeymap_translate_key(keysym,                                  tr = xkeymap_translate_key(keysym,
483                                                             xevent.xkey.                                                             xevent.xkey.keycode, xevent.xkey.state);
                                                            keycode,  
                                                            xevent.xkey.state);  
484    
485                                  if (tr.scancode == 0)                                  if (tr.scancode == 0)
486                                          break;                                          break;
487    
488                                  rdp_send_scancode(ev_time, RDP_KEYRELEASE,                                  rdp_send_scancode(ev_time, RDP_KEYRELEASE, tr.scancode);
                                                   tr.scancode);  
489                                  break;                                  break;
490    
491                          case ButtonPress:                          case ButtonPress:
# Line 499  xwin_process_events() Line 493  xwin_process_events()
493                                  /* fall through */                                  /* fall through */
494    
495                          case ButtonRelease:                          case ButtonRelease:
496                                  button = xkeymap_translate_button(xevent.                                  button = xkeymap_translate_button(xevent.xbutton.button);
                                                                   xbutton.  
                                                                   button);  
497                                  if (button == 0)                                  if (button == 0)
498                                          break;                                          break;
499    
500                                  rdp_send_input(ev_time, RDP_INPUT_MOUSE,                                  rdp_send_input(ev_time, RDP_INPUT_MOUSE,
501                                                 flags | button,                                                 flags | button, xevent.xbutton.x, xevent.xbutton.y);
                                                xevent.xbutton.x,  
                                                xevent.xbutton.y);  
502                                  break;                                  break;
503    
504                          case MotionNotify:                          case MotionNotify:
505                                  rdp_send_input(ev_time, RDP_INPUT_MOUSE,                                  rdp_send_input(ev_time, RDP_INPUT_MOUSE,
506                                                 MOUSE_FLAG_MOVE,                                                 MOUSE_FLAG_MOVE, xevent.xmotion.x, xevent.xmotion.y);
                                                xevent.xmotion.x,  
                                                xevent.xmotion.y);  
507                                  break;                                  break;
508    
509                            case FocusIn:
510                                    /* fall through */
511                          case EnterNotify:                          case EnterNotify:
512                                  XGrabKeyboard(display, wnd, True,                                  if (grab_keyboard)
513                                                GrabModeAsync, GrabModeAsync,                                          XGrabKeyboard(display, wnd, True,
514                                                CurrentTime);                                                        GrabModeAsync, GrabModeAsync, CurrentTime);
515                                  break;                                  break;
516    
517                            case FocusOut:
518                                    /* reset keys */
519                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE,
520                                                   KBD_FLAG_DOWN | KBD_FLAG_UP, SCANCODE_CHAR_LCTRL, 0);
521                                    rdp_send_input(ev_time, RDP_INPUT_SCANCODE,
522                                                   KBD_FLAG_DOWN | KBD_FLAG_UP, SCANCODE_CHAR_LALT, 0);
523                                    /* fall through */
524                          case LeaveNotify:                          case LeaveNotify:
525                                  XUngrabKeyboard(display, CurrentTime);                                  if (grab_keyboard)
526                                            XUngrabKeyboard(display, CurrentTime);
527                                  break;                                  break;
528    
529                          case Expose:                          case Expose:
# Line 589  ui_create_bitmap(int width, int height, Line 587  ui_create_bitmap(int width, int height,
587    
588          tdata = (owncolmap ? data : translate_image(width, height, data));          tdata = (owncolmap ? data : translate_image(width, height, data));
589          bitmap = XCreatePixmap(display, wnd, width, height, depth);          bitmap = XCreatePixmap(display, wnd, width, height, depth);
590          image = XCreateImage(display, visual, depth, ZPixmap, 0, tdata, width,          image = XCreateImage(display, visual, depth, ZPixmap, 0,
591                               height, 8, 0);                               (char *) tdata, width, height, 8, 0);
592    
593          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);
594    
# Line 601  ui_create_bitmap(int width, int height, Line 599  ui_create_bitmap(int width, int height,
599  }  }
600    
601  void  void
602  ui_paint_bitmap(int x, int y, int cx, int cy, int width, int height,  ui_paint_bitmap(int x, int y, int cx, int cy, int width, int height, uint8 * data)
                 uint8 * data)  
603  {  {
604          XImage *image;          XImage *image;
605          uint8 *tdata;          uint8 *tdata;
606    
607          tdata = (owncolmap ? data : translate_image(width, height, data));          tdata = (owncolmap ? data : translate_image(width, height, data));
608          image = XCreateImage(display, visual, depth, ZPixmap, 0, tdata, width,          image = XCreateImage(display, visual, depth, ZPixmap, 0,
609                               height, 8, 0);                               (char *) tdata, width, height, 8, 0);
610    
611          if (ownbackstore)          if (ownbackstore)
612          {          {
# Line 645  ui_create_glyph(int width, int height, u Line 642  ui_create_glyph(int width, int height, u
642          bitmap = XCreatePixmap(display, wnd, width, height, 1);          bitmap = XCreatePixmap(display, wnd, width, height, 1);
643          gc = XCreateGC(display, bitmap, 0, NULL);          gc = XCreateGC(display, bitmap, 0, NULL);
644    
645          image = XCreateImage(display, visual, 1, ZPixmap, 0, data, width,          image = XCreateImage(display, visual, 1, ZPixmap, 0, (char *) data,
646                               height, 8, scanline);                               width, height, 8, scanline);
647          image->byte_order = MSBFirst;          image->byte_order = MSBFirst;
648          image->bitmap_bit_order = MSBFirst;          image->bitmap_bit_order = MSBFirst;
649          XInitImage(image);          XInitImage(image);
# Line 886  ui_patblt(uint8 opcode, Line 883  ui_patblt(uint8 opcode,
883                          SET_BACKGROUND(fgcolour);                          SET_BACKGROUND(fgcolour);
884                          XSetFillStyle(display, gc, FillOpaqueStippled);                          XSetFillStyle(display, gc, FillOpaqueStippled);
885                          XSetStipple(display, gc, fill);                          XSetStipple(display, gc, fill);
886                          XSetTSOrigin(display, gc, brush->xorigin,                          XSetTSOrigin(display, gc, brush->xorigin, brush->yorigin);
                                      brush->yorigin);  
887    
888                          FILL_RECTANGLE(x, y, cx, cy);                          FILL_RECTANGLE(x, y, cx, cy);
889    
890                          XSetFillStyle(display, gc, FillSolid);                          XSetFillStyle(display, gc, FillSolid);
891                            XSetTSOrigin(display, gc, 0, 0);
892                          ui_destroy_glyph((HGLYPH) fill);                          ui_destroy_glyph((HGLYPH) fill);
893                          break;                          break;
894    
# Line 910  ui_screenblt(uint8 opcode, Line 907  ui_screenblt(uint8 opcode,
907          SET_FUNCTION(opcode);          SET_FUNCTION(opcode);
908          XCopyArea(display, wnd, wnd, gc, srcx, srcy, cx, cy, x, y);          XCopyArea(display, wnd, wnd, gc, srcx, srcy, cx, cy, x, y);
909          if (ownbackstore)          if (ownbackstore)
910                  XCopyArea(display, backstore, backstore, gc, srcx, srcy, cx,                  XCopyArea(display, backstore, backstore, gc, srcx, srcy, cx, cy, x, y);
                           cy, x, y);  
911          RESET_FUNCTION(opcode);          RESET_FUNCTION(opcode);
912  }  }
913    
# Line 923  ui_memblt(uint8 opcode, Line 919  ui_memblt(uint8 opcode,
919          SET_FUNCTION(opcode);          SET_FUNCTION(opcode);
920          XCopyArea(display, (Pixmap) src, wnd, gc, srcx, srcy, cx, cy, x, y);          XCopyArea(display, (Pixmap) src, wnd, gc, srcx, srcy, cx, cy, x, y);
921          if (ownbackstore)          if (ownbackstore)
922                  XCopyArea(display, (Pixmap) src, backstore, gc, srcx, srcy,                  XCopyArea(display, (Pixmap) src, backstore, gc, srcx, srcy, cx, cy, x, y);
                           cx, cy, x, y);  
923          RESET_FUNCTION(opcode);          RESET_FUNCTION(opcode);
924  }  }
925    
# Line 941  ui_triblt(uint8 opcode, Line 936  ui_triblt(uint8 opcode,
936          {          {
937                  case 0x69:      /* PDSxxn */                  case 0x69:      /* PDSxxn */
938                          ui_memblt(ROP2_XOR, x, y, cx, cy, src, srcx, srcy);                          ui_memblt(ROP2_XOR, x, y, cx, cy, src, srcx, srcy);
939                          ui_patblt(ROP2_NXOR, x, y, cx, cy, brush, bgcolour,                          ui_patblt(ROP2_NXOR, x, y, cx, cy, brush, bgcolour, fgcolour);
                                   fgcolour);  
940                          break;                          break;
941    
942                  case 0xb8:      /* PSDPxax */                  case 0xb8:      /* PSDPxax */
943                          ui_patblt(ROP2_XOR, x, y, cx, cy, brush, bgcolour,                          ui_patblt(ROP2_XOR, x, y, cx, cy, brush, bgcolour, fgcolour);
                                   fgcolour);  
944                          ui_memblt(ROP2_AND, x, y, cx, cy, src, srcx, srcy);                          ui_memblt(ROP2_AND, x, y, cx, cy, src, srcx, srcy);
945                          ui_patblt(ROP2_XOR, x, y, cx, cy, brush, bgcolour,                          ui_patblt(ROP2_XOR, x, y, cx, cy, brush, bgcolour, fgcolour);
                                   fgcolour);  
946                          break;                          break;
947    
948                  case 0xc0:      /* PSa */                  case 0xc0:      /* PSa */
949                          ui_memblt(ROP2_COPY, x, y, cx, cy, src, srcx, srcy);                          ui_memblt(ROP2_COPY, x, y, cx, cy, src, srcx, srcy);
950                          ui_patblt(ROP2_AND, x, y, cx, cy, brush, bgcolour,                          ui_patblt(ROP2_AND, x, y, cx, cy, brush, bgcolour, fgcolour);
                                   fgcolour);  
951                          break;                          break;
952    
953                  default:                  default:
# Line 997  ui_draw_glyph(int mixmode, Line 988  ui_draw_glyph(int mixmode,
988          SET_BACKGROUND(bgcolour);          SET_BACKGROUND(bgcolour);
989    
990          XSetFillStyle(display, gc,          XSetFillStyle(display, gc,
991                        (mixmode ==                        (mixmode == MIX_TRANSPARENT) ? FillStippled : FillOpaqueStippled);
                        MIX_TRANSPARENT) ? FillStippled : FillOpaqueStippled);  
992          XSetStipple(display, gc, (Pixmap) glyph);          XSetStipple(display, gc, (Pixmap) glyph);
993          XSetTSOrigin(display, gc, x, y);          XSetTSOrigin(display, gc, x, y);
994    
# Line 1016  ui_draw_glyph(int mixmode, Line 1006  ui_draw_glyph(int mixmode,
1006        if ((xyoffset & 0x80))\        if ((xyoffset & 0x80))\
1007          {\          {\
1008            if (flags & TEXT2_VERTICAL) \            if (flags & TEXT2_VERTICAL) \
1009              y += ttext[++idx] | (ttext[++idx] << 8);\              y += ttext[idx+1] | (ttext[idx+2] << 8);\
1010            else\            else\
1011              x += ttext[++idx] | (ttext[++idx] << 8);\              x += ttext[idx+1] | (ttext[idx+2] << 8);\
1012              idx += 2;\
1013          }\          }\
1014        else\        else\
1015          {\          {\
# Line 1067  ui_draw_text(uint8 font, uint8 flags, in Line 1058  ui_draw_text(uint8 font, uint8 flags, in
1058                  {                  {
1059                          case 0xff:                          case 0xff:
1060                                  if (i + 2 < length)                                  if (i + 2 < length)
1061                                          cache_put_text(text[i + 1], text,                                          cache_put_text(text[i + 1], text, text[i + 2]);
                                                        text[i + 2]);  
1062                                  else                                  else
1063                                  {                                  {
1064                                          error("this shouldn't be happening\n");                                          error("this shouldn't be happening\n");
# Line 1085  ui_draw_text(uint8 font, uint8 flags, in Line 1075  ui_draw_text(uint8 font, uint8 flags, in
1075                                  if (entry != NULL)                                  if (entry != NULL)
1076                                  {                                  {
1077                                          if ((((uint8 *) (entry->data))[1] ==                                          if ((((uint8 *) (entry->data))[1] ==
1078                                               0)                                               0) && (!(flags & TEXT2_IMPLICIT_X)))
                                             && (!(flags & TEXT2_IMPLICIT_X)))  
1079                                          {                                          {
1080                                                  if (flags & TEXT2_VERTICAL)                                                  if (flags & TEXT2_VERTICAL)
1081                                                          y += text[i + 2];                                                          y += text[i + 2];
# Line 1102  ui_draw_text(uint8 font, uint8 flags, in Line 1091  ui_draw_text(uint8 font, uint8 flags, in
1091                                          text = &(text[i]);                                          text = &(text[i]);
1092                                          i = 0;                                          i = 0;
1093                                          for (j = 0; j < entry->size; j++)                                          for (j = 0; j < entry->size; j++)
1094                                                  DO_GLYPH(((uint8 *) (entry->                                                  DO_GLYPH(((uint8 *) (entry->data)), j);
                                                                      data)),  
                                                          j);  
1095                                  }                                  }
1096                                  break;                                  break;
1097    
# Line 1126  ui_desktop_save(uint32 offset, int x, in Line 1113  ui_desktop_save(uint32 offset, int x, in
1113    
1114          if (ownbackstore)          if (ownbackstore)
1115          {          {
1116                  image = XGetImage(display, backstore, x, y, cx, cy, AllPlanes,                  image = XGetImage(display, backstore, x, y, cx, cy, AllPlanes, ZPixmap);
                                   ZPixmap);  
1117          }          }
1118          else          else
1119          {          {
1120                  pix = XCreatePixmap(display, wnd, cx, cy, depth);                  pix = XCreatePixmap(display, wnd, cx, cy, depth);
1121                  XCopyArea(display, wnd, pix, gc, x, y, cx, cy, 0, 0);                  XCopyArea(display, wnd, pix, gc, x, y, cx, cy, 0, 0);
1122                  image = XGetImage(display, pix, 0, 0, cx, cy, AllPlanes,                  image = XGetImage(display, pix, 0, 0, cx, cy, AllPlanes, ZPixmap);
                                   ZPixmap);  
1123                  XFreePixmap(display, pix);                  XFreePixmap(display, pix);
1124          }          }
1125    
1126          offset *= bpp / 8;          offset *= bpp / 8;
1127          cache_put_desktop(offset, cx, cy, image->bytes_per_line, bpp / 8,          cache_put_desktop(offset, cx, cy, image->bytes_per_line, bpp / 8, (uint8 *) image->data);
                           (uint8 *) image->data);  
1128    
1129          XDestroyImage(image);          XDestroyImage(image);
1130  }  }
# Line 1156  ui_desktop_restore(uint32 offset, int x, Line 1140  ui_desktop_restore(uint32 offset, int x,
1140          if (data == NULL)          if (data == NULL)
1141                  return;                  return;
1142    
1143          image = XCreateImage(display, visual, depth, ZPixmap, 0, data, cx, cy,          image = XCreateImage(display, visual, depth, ZPixmap, 0,
1144                               BitmapPad(display), cx * bpp / 8);                               (char *) data, cx, cy, BitmapPad(display), cx * bpp / 8);
1145    
1146          if (ownbackstore)          if (ownbackstore)
1147          {          {

Legend:
Removed from v.70  
changed lines
  Added in v.82

  ViewVC Help
Powered by ViewVC 1.1.26