/[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 158 by matthewc, Sun Sep 15 11:53:50 2002 UTC revision 190 by matthewc, Tue Sep 24 07:33:17 2002 UTC
# Line 22  Line 22 
22  #include <X11/Xutil.h>  #include <X11/Xutil.h>
23  #include <time.h>  #include <time.h>
24  #include <errno.h>  #include <errno.h>
 #define XK_MISCELLANY  
 #include <X11/keysymdef.h>  
25  #include "rdesktop.h"  #include "rdesktop.h"
 #include "scancodes.h"  
26    
27  extern int width;  extern int width;
28  extern int height;  extern int height;
# Line 33  extern BOOL sendmotion; Line 30  extern BOOL sendmotion;
30  extern BOOL fullscreen;  extern BOOL fullscreen;
31  extern BOOL grab_keyboard;  extern BOOL grab_keyboard;
32  extern char title[];  extern char title[];
33    BOOL enable_compose = False;
34    
35  Display *display;  Display *display;
36  static int x_socket;  static int x_socket;
# Line 42  static GC gc; Line 40  static GC gc;
40  static Visual *visual;  static Visual *visual;
41  static int depth;  static int depth;
42  static int bpp;  static int bpp;
43    static XIM IM;
44    static XIC IC;
45    static Cursor current_cursor;
46    
47  /* endianness */  /* endianness */
48  static BOOL host_be;  static BOOL host_be;
# Line 59  static Pixmap backstore; Line 60  static Pixmap backstore;
60  }  }
61    
62  /* colour maps */  /* colour maps */
 static BOOL owncolmap;  
63  static Colormap xcolmap;  static Colormap xcolmap;
64  static uint32 *colmap;  static uint32 *colmap;
65    
66  /* Compose support */  #define SET_FOREGROUND(col)     XSetForeground(display, gc, translate_colour(colmap[col]));
67  BOOL enable_compose = False;  #define SET_BACKGROUND(col)     XSetBackground(display, gc, translate_colour(colmap[col]));
 static XIM IM = NULL;  
 static XIC IC = NULL;  
   
 /* toggle fullscreen globals */  
 static unsigned long input_mask;  
   
 #define TRANSLATE(col)          ( owncolmap ? col : translate_colour(colmap[col]) )  
 #define SET_FOREGROUND(col)     XSetForeground(display, gc, TRANSLATE(col));  
 #define SET_BACKGROUND(col)     XSetBackground(display, gc, TRANSLATE(col));  
68    
69  static int rop2_map[] = {  static int rop2_map[] = {
70          GXclear,                /* 0 */          GXclear,                /* 0 */
# Line 191  translate_colour(uint32 colour) Line 182  translate_colour(uint32 colour)
182          return colour;          return colour;
183  }  }
184    
 static unsigned long  
 init_inputmethod(void)  
 {  
         unsigned long filtered_events = 0;  
   
         IM = XOpenIM(display, NULL, NULL, NULL);  
         if (IM == NULL)  
         {  
                 error("Failed to open input method\n");  
         }  
   
         if (IM != NULL)  
         {  
                 /* Must be done after XCreateWindow */  
                 IC = XCreateIC(IM, XNInputStyle,  
                                (XIMPreeditNothing | XIMStatusNothing),  
                                XNClientWindow, wnd, XNFocusWindow, wnd, NULL);  
   
                 if (IC == NULL)  
                 {  
                         error("Failed to create input context\n");  
                         XCloseIM(IM);  
                         IM = NULL;  
                 }  
         }  
   
         /* For correct Multi_key/Compose processing, I guess.  
            It seems to work alright anyway, though. */  
         if (IC != NULL)  
         {  
                 if (XGetICValues(IC, XNFilterEvents, &filtered_events, NULL) != NULL)  
                 {  
                         error("Failed to obtain XNFilterEvents value from IC\n");  
                         filtered_events = 0;  
                 }  
         }  
         return filtered_events;  
 }  
   
 static void  
 close_inputmethod(void)  
 {  
         if (IC != NULL)  
         {  
                 XDestroyIC(IC);  
                 if (IM != NULL)  
                 {  
                         XCloseIM(IM);  
                         IM = NULL;  
                 }  
         }  
 }  
   
185  BOOL  BOOL
186  get_key_state(int keysym)  get_key_state(int keysym)
187  {  {
# Line 278  get_key_state(int keysym) Line 216  get_key_state(int keysym)
216          return (current_state & keysymMask) ? True : False;          return (current_state & keysymMask) ? True : False;
217  }  }
218    
 static void  
 xwin_map_window()  
 {  
         XEvent xevent;  
   
         XMapWindow(display, wnd);  
   
         /* wait for VisibilityChange */  
         XMaskEvent(display, VisibilityChangeMask, &xevent);  
   
         if (fullscreen)  
                 XSetInputFocus(display, wnd, RevertToPointerRoot, CurrentTime);  
 }  
   
219  BOOL  BOOL
220  ui_init()  ui_init()
221  {  {
# Line 333  ui_init() Line 257  ui_init()
257                  return False;                  return False;
258          }          }
259    
260          if (depth <= 8)          xcolmap = DefaultColormapOfScreen(screen);
261                  owncolmap = True;          gc = XCreateGC(display, RootWindowOfScreen(screen), 0, NULL);
         else  
                 xcolmap = DefaultColormapOfScreen(screen);  
262    
263          if (DoesBackingStore(screen) == NotUseful)          if (DoesBackingStore(screen) != Always)
264                  ownbackstore = True;                  ownbackstore = True;
265    
266          test = 1;          test = 1;
# Line 351  ui_init() Line 273  ui_init()
273                  height = HeightOfScreen(screen);                  height = HeightOfScreen(screen);
274          }          }
275    
276            /* make sure width is a multiple of 4 */
277            width = (width + 3) & ~3;
278    
279            if (ownbackstore)
280            {
281                    backstore = XCreatePixmap(display, RootWindowOfScreen(screen), width, height, depth);
282    
283                    /* clear to prevent rubbish being exposed at startup */
284                    XSetForeground(display, gc, BlackPixelOfScreen(screen));
285                    XFillRectangle(display, backstore, gc, 0, 0, width, height);
286            }
287    
288            if (enable_compose)
289                    IM = XOpenIM(display, NULL, NULL, NULL);
290    
291          xkeymap_init();          xkeymap_init();
292          return True;          return True;
293  }  }
294    
295    void
296    ui_deinit()
297    {
298            if (IM != NULL)
299                    XCloseIM(IM);
300    
301            if (ownbackstore)
302                    XFreePixmap(display, backstore);
303    
304            XFreeGC(display, gc);
305            XCloseDisplay(display);
306            display = NULL;
307    }
308    
309  BOOL  BOOL
310  ui_create_window()  ui_create_window()
311  {  {
312          XSetWindowAttributes attribs;          XSetWindowAttributes attribs;
313          XClassHint *classhints;          XClassHint *classhints;
314          XSizeHints *sizehints;          XSizeHints *sizehints;
315            int wndwidth, wndheight;
316            long input_mask, ic_input_mask;
317          XEvent xevent;          XEvent xevent;
318    
319            wndwidth  = fullscreen ? WidthOfScreen(screen)  : width;
320            wndheight = fullscreen ? HeightOfScreen(screen) : height;
321    
322          attribs.background_pixel = BlackPixelOfScreen(screen);          attribs.background_pixel = BlackPixelOfScreen(screen);
323          attribs.backing_store = ownbackstore ? NotUseful : Always;          attribs.backing_store = ownbackstore ? NotUseful : Always;
324          attribs.override_redirect = fullscreen;          attribs.override_redirect = fullscreen;
325          wnd = XCreateWindow(display, RootWindowOfScreen(screen), 0, 0, width, height,  
326            wnd = XCreateWindow(display, RootWindowOfScreen(screen), 0, 0, wndwidth, wndheight,
327                              0, CopyFromParent, InputOutput, CopyFromParent,                              0, CopyFromParent, InputOutput, CopyFromParent,
328                              CWBackPixel | CWBackingStore | CWOverrideRedirect, &attribs);                              CWBackPixel | CWBackingStore | CWOverrideRedirect, &attribs);
329    
         if (ownbackstore)  
                 backstore = XCreatePixmap(display, wnd, width, height, depth);  
   
330          XStoreName(display, wnd, title);          XStoreName(display, wnd, title);
331    
332          classhints = XAllocClassHint();          classhints = XAllocClassHint();
# Line 394  ui_create_window() Line 348  ui_create_window()
348          }          }
349    
350          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |
351                  VisibilityChangeMask | FocusChangeMask;                  StructureNotifyMask | FocusChangeMask;
352    
353          if (grab_keyboard)          if (grab_keyboard)
354                  input_mask |= EnterWindowMask | LeaveWindowMask;                  input_mask |= EnterWindowMask | LeaveWindowMask;
# Line 402  ui_create_window() Line 356  ui_create_window()
356                  input_mask |= PointerMotionMask;                  input_mask |= PointerMotionMask;
357          if (ownbackstore)          if (ownbackstore)
358                  input_mask |= ExposureMask;                  input_mask |= ExposureMask;
359          if (enable_compose)  
360                  input_mask |= init_inputmethod();          if (IM != NULL)
361            {
362                    IC = XCreateIC(IM, XNInputStyle, (XIMPreeditNothing | XIMStatusNothing),
363                                   XNClientWindow, wnd, XNFocusWindow, wnd, NULL);
364    
365                    if ((IC != NULL) && (XGetICValues(IC, XNFilterEvents, &ic_input_mask, NULL) == NULL))
366                            input_mask |= ic_input_mask;
367            }
368    
369          XSelectInput(display, wnd, input_mask);          XSelectInput(display, wnd, input_mask);
370            XMapWindow(display, wnd);
371    
372          xwin_map_window();          /* wait for MapNotify */
373            do {
374                    XMaskEvent(display, StructureNotifyMask, &xevent);
375            } while (xevent.type != MapNotify);
376    
377          /* clear the window so that cached data is not seen */          if (fullscreen)
378          gc = XCreateGC(display, wnd, 0, NULL);                  XSetInputFocus(display, wnd, RevertToPointerRoot, CurrentTime);
         XSetForeground(display, gc, 0);  
         FILL_RECTANGLE(0, 0, width, height);  
379    
380          return True;          return True;
381  }  }
# Line 420  ui_create_window() Line 383  ui_create_window()
383  void  void
384  ui_destroy_window()  ui_destroy_window()
385  {  {
386          if (ownbackstore)          if (IC != NULL)
387                  XFreePixmap(display, backstore);                  XDestroyIC(IC);
   
         XFreeGC(display, gc);  
   
         close_inputmethod();  
388    
389          XDestroyWindow(display, wnd);          XDestroyWindow(display, wnd);
         XCloseDisplay(display);  
         display = NULL;  
 }  
   
 static void  
 xwin_reset_keys()  
 {  
         /* reset keys */  
         uint32 ev_time;  
         ev_time = time(NULL);  
         rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);  
         rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LALT);  
         rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);  
         rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RCTRL);  
         rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);  
         rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RSHIFT);  
390  }  }
391    
392  void  void
393  xwin_toggle_fullscreen()  xwin_toggle_fullscreen()
394  {  {
395          XEvent xevent;          Pixmap contents = 0;
396          XSetWindowAttributes attribs;  
397          int newwidth, newheight;          if (!ownbackstore)
398            {
399                    /* need to save contents of window */
400                    contents = XCreatePixmap(display, wnd, width, height, depth);
401                    XCopyArea(display, wnd, contents, gc, 0, 0, width, height, 0, 0);
402            }
403    
404            ui_destroy_window();
405          fullscreen = !fullscreen;          fullscreen = !fullscreen;
406          newwidth  = fullscreen ? WidthOfScreen(screen) : width;          ui_create_window();
         newheight = fullscreen ? HeightOfScreen(screen) : height;  
407    
408          XUnmapWindow(display, wnd);          XDefineCursor(display, wnd, current_cursor);
409          attribs.override_redirect = fullscreen;  
410          XMoveResizeWindow(display, wnd, 0, 0, newwidth, newheight);          if (!ownbackstore)
411          XChangeWindowAttributes(display, wnd, CWOverrideRedirect, &attribs);          {
412          xwin_map_window();                  XCopyArea(display, contents, wnd, gc, 0, 0, width, height, 0, 0);
413                    XFreePixmap(display, contents);
414            }
415  }  }
416    
417  /* Process all events in Xlib queue */  /* Process all events in Xlib queue */
# Line 481  xwin_process_events() Line 431  xwin_process_events()
431          {          {
432                  XNextEvent(display, &xevent);                  XNextEvent(display, &xevent);
433    
434                  if (enable_compose && (XFilterEvent(&xevent, None) == True))                  if ((IC != NULL) && (XFilterEvent(&xevent, None) == True))
435                  {                  {
436                          DEBUG_KBD(("Filtering event\n"));                          DEBUG_KBD(("Filtering event\n"));
437                          continue;                          continue;
# Line 509  xwin_process_events() Line 459  xwin_process_events()
459                                  else                                  else
460                                  {                                  {
461                                          /* Plain old XLookupString */                                          /* Plain old XLookupString */
462                                          DEBUG_KBD(("No input context, using XLookupString\n"));                                          DEBUG_KBD(("\nNo input context, using XLookupString\n"));
463                                          XLookupString((XKeyEvent *) & xevent,                                          XLookupString((XKeyEvent *) & xevent,
464                                                        str, sizeof(str), &keysym, NULL);                                                        str, sizeof(str), &keysym, NULL);
465                                  }                                  }
466    
467                                  ksname = get_ksname(keysym);                                  ksname = get_ksname(keysym);
468                                  DEBUG_KBD(("\nKeyPress for (keysym 0x%lx, %s)\n", keysym, ksname));                                  DEBUG_KBD(("KeyPress for (keysym 0x%lx, %s)\n", keysym, ksname));
469    
470                                  if (handle_special_keys(keysym, ev_time, True))                                  if (handle_special_keys(keysym, ev_time, True))
471                                          break;                                          break;
# Line 579  xwin_process_events() Line 529  xwin_process_events()
529                                          XUngrabKeyboard(display, CurrentTime);                                          XUngrabKeyboard(display, CurrentTime);
530                                  break;                                  break;
531    
532                          case FocusOut:                          case FocusIn:
533                                  xwin_reset_keys();                                  reset_modifier_keys();
534                                  break;                                  break;
535    
536                          case Expose:                          case Expose:
# Line 647  ui_create_bitmap(int width, int height, Line 597  ui_create_bitmap(int width, int height,
597          Pixmap bitmap;          Pixmap bitmap;
598          uint8 *tdata;          uint8 *tdata;
599    
600          tdata = (owncolmap ? data : translate_image(width, height, data));          tdata = translate_image(width, height, data);
601          bitmap = XCreatePixmap(display, wnd, width, height, depth);          bitmap = XCreatePixmap(display, wnd, width, height, depth);
602          image = XCreateImage(display, visual, depth, ZPixmap, 0,          image = XCreateImage(display, visual, depth, ZPixmap, 0,
603                               (char *) tdata, width, height, 8, 0);                               (char *) tdata, width, height, 8, 0);
# Line 655  ui_create_bitmap(int width, int height, Line 605  ui_create_bitmap(int width, int height,
605          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);
606    
607          XFree(image);          XFree(image);
608          if (!owncolmap)          xfree(tdata);
                 xfree(tdata);  
609          return (HBITMAP) bitmap;          return (HBITMAP) bitmap;
610  }  }
611    
# Line 666  ui_paint_bitmap(int x, int y, int cx, in Line 615  ui_paint_bitmap(int x, int y, int cx, in
615          XImage *image;          XImage *image;
616          uint8 *tdata;          uint8 *tdata;
617    
618          tdata = (owncolmap ? data : translate_image(width, height, data));          tdata = translate_image(width, height, data);
619          image = XCreateImage(display, visual, depth, ZPixmap, 0,          image = XCreateImage(display, visual, depth, ZPixmap, 0,
620                               (char *) tdata, width, height, 8, 0);                               (char *) tdata, width, height, 8, 0);
621    
# Line 681  ui_paint_bitmap(int x, int y, int cx, in Line 630  ui_paint_bitmap(int x, int y, int cx, in
630          }          }
631    
632          XFree(image);          XFree(image);
633          if (!owncolmap)          xfree(tdata);
                 xfree(tdata);  
634  }  }
635    
636  void  void
# Line 797  ui_create_cursor(unsigned int x, unsigne Line 745  ui_create_cursor(unsigned int x, unsigne
745  void  void
746  ui_set_cursor(HCURSOR cursor)  ui_set_cursor(HCURSOR cursor)
747  {  {
748          XDefineCursor(display, wnd, (Cursor) cursor);          current_cursor = (Cursor) cursor;
749            XDefineCursor(display, wnd, current_cursor);
750  }  }
751    
752  void  void
# Line 817  ui_create_colourmap(COLOURMAP * colours) Line 766  ui_create_colourmap(COLOURMAP * colours)
766  {  {
767          COLOURENTRY *entry;          COLOURENTRY *entry;
768          int i, ncolours = colours->ncolours;          int i, ncolours = colours->ncolours;
769            uint32 *map = xmalloc(sizeof(*colmap) * ncolours);
770            XColor xentry;
771            XColor xc_cache[256];
772            uint32 colour;
773            int colLookup = 256;
774            for (i = 0; i < ncolours; i++)
775            {
776                    entry = &colours->colours[i];
777                    MAKE_XCOLOR(&xentry, entry);
778    
779                    if (XAllocColor(display, xcolmap, &xentry) == 0)
780                    {
781                            /* Allocation failed, find closest match. */
782                            int j = 256;
783                            int nMinDist = 3 * 256 * 256;
784                            long nDist = nMinDist;
785    
786                            /* only get the colors once */
787                            while( colLookup-- ){
788                                    xc_cache[colLookup].pixel = colLookup;
789                                    xc_cache[colLookup].red = xc_cache[colLookup].green = xc_cache[colLookup].blue = 0;
790                                    xc_cache[colLookup].flags = 0;
791                                    XQueryColor(display, DefaultColormap(display, DefaultScreen(display)), &xc_cache[colLookup]);
792                            }
793                            colLookup = 0;
794    
795          if (owncolmap)                          /* approximate the pixel */
796          {                          while( j-- ){
797                  XColor *xcolours, *xentry;                                  if( xc_cache[j].flags ){
798                  Colormap map;                                          nDist =
799                                            ((long) (xc_cache[j].red >> 8) - (long) (xentry.red >> 8)) *
800                  xcolours = xmalloc(sizeof(XColor) * ncolours);                                          ((long) (xc_cache[j].red >> 8) - (long) (xentry.red >> 8)) +
801                  for (i = 0; i < ncolours; i++)                                          ((long) (xc_cache[j].green >> 8) - (long) (xentry.green >> 8)) *
802                  {                                          ((long) (xc_cache[j].green >> 8) - (long) (xentry.green >> 8)) +
803                          entry = &colours->colours[i];                                          ((long) (xc_cache[j].blue >> 8) - (long) (xentry.blue >> 8)) *
804                          xentry = &xcolours[i];                                          ((long) (xc_cache[j].blue >> 8) - (long) (xentry.blue >> 8));
805                          xentry->pixel = i;                                  }
806                          MAKE_XCOLOR(xentry, entry);                                  if( nDist < nMinDist ){
807                                            nMinDist = nDist;
808                                            xentry.pixel = j;
809                                    }
810                            }
811                  }                  }
812                    colour = xentry.pixel;
813    
814                  map = XCreateColormap(display, wnd, visual, AllocAll);                  /* update our cache */
815                  XStoreColors(display, map, xcolours, ncolours);                  if( xentry.pixel < 256 ){
816                            xc_cache[xentry.pixel].red = xentry.red;
817                  xfree(xcolours);                          xc_cache[xentry.pixel].green = xentry.green;
818                  return (HCOLOURMAP) map;                          xc_cache[xentry.pixel].blue = xentry.blue;
         }  
         else  
         {  
                 uint32 *map = xmalloc(sizeof(*colmap) * ncolours);  
                 XColor xentry;  
                 uint32 colour;  
819    
                 for (i = 0; i < ncolours; i++)  
                 {  
                         entry = &colours->colours[i];  
                         MAKE_XCOLOR(&xentry, entry);  
   
                         if (XAllocColor(display, xcolmap, &xentry) != 0)  
                                 colour = xentry.pixel;  
                         else  
                                 colour = WhitePixelOfScreen(screen);  
   
                         /* byte swap here to make translate_image faster */  
                         map[i] = translate_colour(colour);  
820                  }                  }
821    
822                  return map;  
823                    /* byte swap here to make translate_image faster */
824                    map[i] = translate_colour(colour);
825          }          }
826    
827            return map;
828  }  }
829    
830  void  void
831  ui_destroy_colourmap(HCOLOURMAP map)  ui_destroy_colourmap(HCOLOURMAP map)
832  {  {
833          if (owncolmap)          xfree(map);
                 XFreeColormap(display, (Colormap) map);  
         else  
                 xfree(map);  
834  }  }
835    
836  void  void
837  ui_set_colourmap(HCOLOURMAP map)  ui_set_colourmap(HCOLOURMAP map)
838  {  {
839          if (owncolmap)          colmap = map;
                 XSetWindowColormap(display, wnd, (Colormap) map);  
         else  
                 colmap = map;  
840  }  }
841    
842  void  void

Legend:
Removed from v.158  
changed lines
  Added in v.190

  ViewVC Help
Powered by ViewVC 1.1.26