/[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 157 by matthewc, Sun Sep 15 11:39:16 2002 UTC revision 194 by matthewc, Tue Sep 24 12:25:21 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(void)
221  {  {
222          XPixmapFormatValues *pfm;          XPixmapFormatValues *pfm;
223          uint16 test;          uint16 test;
# 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(void)
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(void)
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    
         if (grab_keyboard)  
                 input_mask |= EnterWindowMask | LeaveWindowMask;  
353          if (sendmotion)          if (sendmotion)
354                  input_mask |= PointerMotionMask;                  input_mask |= PointerMotionMask;
355          if (ownbackstore)          if (ownbackstore)
356                  input_mask |= ExposureMask;                  input_mask |= ExposureMask;
357          if (enable_compose)  
358                  input_mask |= init_inputmethod();          if (IM != NULL)
359            {
360                    IC = XCreateIC(IM, XNInputStyle, (XIMPreeditNothing | XIMStatusNothing),
361                                   XNClientWindow, wnd, XNFocusWindow, wnd, NULL);
362    
363                    if ((IC != NULL) && (XGetICValues(IC, XNFilterEvents, &ic_input_mask, NULL) == NULL))
364                            input_mask |= ic_input_mask;
365            }
366    
367          XSelectInput(display, wnd, input_mask);          XSelectInput(display, wnd, input_mask);
368            XMapWindow(display, wnd);
369    
370          xwin_map_window();          /* wait for MapNotify */
371            do {
372                    XMaskEvent(display, StructureNotifyMask, &xevent);
373            } while (xevent.type != MapNotify);
374    
375          /* clear the window so that cached data is not seen */          if (fullscreen)
376          gc = XCreateGC(display, wnd, 0, NULL);                  XSetInputFocus(display, wnd, RevertToPointerRoot, CurrentTime);
         XSetForeground(display, gc, 0);  
         FILL_RECTANGLE(0, 0, width, height);  
377    
378          return True;          return True;
379  }  }
380    
381  void  void
382  ui_destroy_window()  ui_destroy_window(void)
383  {  {
384          if (ownbackstore)          if (IC != NULL)
385                  XFreePixmap(display, backstore);                  XDestroyIC(IC);
   
         XFreeGC(display, gc);  
   
         close_inputmethod();  
386    
387          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);  
388  }  }
389    
390  void  void
391  xwin_toggle_fullscreen()  xwin_toggle_fullscreen(void)
392  {  {
393          XEvent xevent;          Pixmap contents = 0;
394          XSetWindowAttributes attribs;  
395          int newwidth, newheight;          if (!ownbackstore)
396            {
397                    /* need to save contents of window */
398                    contents = XCreatePixmap(display, wnd, width, height, depth);
399                    XCopyArea(display, wnd, contents, gc, 0, 0, width, height, 0, 0);
400            }
401    
402            ui_destroy_window();
403          fullscreen = !fullscreen;          fullscreen = !fullscreen;
404          newwidth  = fullscreen ? WidthOfScreen(screen) : width;          ui_create_window();
         newheight = fullscreen ? HeightOfScreen(screen) : height;  
405    
406          XUnmapWindow(display, wnd);          XDefineCursor(display, wnd, current_cursor);
407          attribs.override_redirect = fullscreen;  
408          XMoveResizeWindow(display, wnd, 0, 0, newwidth, newheight);          if (!ownbackstore)
409          XChangeWindowAttributes(display, wnd, CWOverrideRedirect, &attribs);          {
410          xwin_map_window();                  XCopyArea(display, contents, wnd, gc, 0, 0, width, height, 0, 0);
411                    XFreePixmap(display, contents);
412            }
413  }  }
414    
415  /* Process all events in Xlib queue */  /* Process all events in Xlib queue */
416  static void  static void
417  xwin_process_events()  xwin_process_events(void)
418  {  {
419          XEvent xevent;          XEvent xevent;
420          KeySym keysym;          KeySym keysym;
# Line 481  xwin_process_events() Line 429  xwin_process_events()
429          {          {
430                  XNextEvent(display, &xevent);                  XNextEvent(display, &xevent);
431    
432                  if (enable_compose && (XFilterEvent(&xevent, None) == True))                  if ((IC != NULL) && (XFilterEvent(&xevent, None) == True))
433                  {                  {
434                          DEBUG_KBD(("Filtering event\n"));                          DEBUG_KBD(("Filtering event\n"));
435                          continue;                          continue;
# Line 509  xwin_process_events() Line 457  xwin_process_events()
457                                  else                                  else
458                                  {                                  {
459                                          /* Plain old XLookupString */                                          /* Plain old XLookupString */
460                                          DEBUG_KBD(("No input context, using XLookupString\n"));                                          DEBUG_KBD(("\nNo input context, using XLookupString\n"));
461                                          XLookupString((XKeyEvent *) & xevent,                                          XLookupString((XKeyEvent *) & xevent,
462                                                        str, sizeof(str), &keysym, NULL);                                                        str, sizeof(str), &keysym, NULL);
463                                  }                                  }
464    
465                                  ksname = get_ksname(keysym);                                  ksname = get_ksname(keysym);
466                                  DEBUG_KBD(("\nKeyPress for (keysym 0x%lx, %s)\n", keysym, ksname));                                  DEBUG_KBD(("KeyPress for (keysym 0x%lx, %s)\n", keysym, ksname));
467    
468                                  if (handle_special_keys(keysym, ev_time, True))                                  if (handle_special_keys(keysym, ev_time, True))
469                                          break;                                          break;
# Line 569  xwin_process_events() Line 517  xwin_process_events()
517                                  break;                                  break;
518    
519                          case FocusIn:                          case FocusIn:
520                                  /* fall through */                                  reset_modifier_keys();
                         case EnterNotify:  
521                                  if (grab_keyboard)                                  if (grab_keyboard)
522                                          XGrabKeyboard(display, wnd, True,                                          XGrabKeyboard(display, wnd, True,
523                                                        GrabModeAsync, GrabModeAsync, CurrentTime);                                                        GrabModeAsync, GrabModeAsync, CurrentTime);
524                                  break;                                  break;
525    
526                          case FocusOut:                          case FocusOut:
                                 xwin_reset_keys();  
                                 /* fall through */  
                         case LeaveNotify:  
527                                  if (grab_keyboard)                                  if (grab_keyboard)
528                                          XUngrabKeyboard(display, CurrentTime);                                          XUngrabKeyboard(display, CurrentTime);
529                                  break;                                  break;
# Line 648  ui_create_bitmap(int width, int height, Line 592  ui_create_bitmap(int width, int height,
592          Pixmap bitmap;          Pixmap bitmap;
593          uint8 *tdata;          uint8 *tdata;
594    
595          tdata = (owncolmap ? data : translate_image(width, height, data));          tdata = translate_image(width, height, data);
596          bitmap = XCreatePixmap(display, wnd, width, height, depth);          bitmap = XCreatePixmap(display, wnd, width, height, depth);
597          image = XCreateImage(display, visual, depth, ZPixmap, 0,          image = XCreateImage(display, visual, depth, ZPixmap, 0,
598                               (char *) tdata, width, height, 8, 0);                               (char *) tdata, width, height, 8, 0);
# Line 656  ui_create_bitmap(int width, int height, Line 600  ui_create_bitmap(int width, int height,
600          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);          XPutImage(display, bitmap, gc, image, 0, 0, 0, 0, width, height);
601    
602          XFree(image);          XFree(image);
603          if (!owncolmap)          xfree(tdata);
                 xfree(tdata);  
604          return (HBITMAP) bitmap;          return (HBITMAP) bitmap;
605  }  }
606    
# Line 667  ui_paint_bitmap(int x, int y, int cx, in Line 610  ui_paint_bitmap(int x, int y, int cx, in
610          XImage *image;          XImage *image;
611          uint8 *tdata;          uint8 *tdata;
612    
613          tdata = (owncolmap ? data : translate_image(width, height, data));          tdata = translate_image(width, height, data);
614          image = XCreateImage(display, visual, depth, ZPixmap, 0,          image = XCreateImage(display, visual, depth, ZPixmap, 0,
615                               (char *) tdata, width, height, 8, 0);                               (char *) tdata, width, height, 8, 0);
616    
# Line 682  ui_paint_bitmap(int x, int y, int cx, in Line 625  ui_paint_bitmap(int x, int y, int cx, in
625          }          }
626    
627          XFree(image);          XFree(image);
628          if (!owncolmap)          xfree(tdata);
                 xfree(tdata);  
629  }  }
630    
631  void  void
# Line 798  ui_create_cursor(unsigned int x, unsigne Line 740  ui_create_cursor(unsigned int x, unsigne
740  void  void
741  ui_set_cursor(HCURSOR cursor)  ui_set_cursor(HCURSOR cursor)
742  {  {
743          XDefineCursor(display, wnd, (Cursor) cursor);          current_cursor = (Cursor) cursor;
744            XDefineCursor(display, wnd, current_cursor);
745  }  }
746    
747  void  void
# Line 818  ui_create_colourmap(COLOURMAP * colours) Line 761  ui_create_colourmap(COLOURMAP * colours)
761  {  {
762          COLOURENTRY *entry;          COLOURENTRY *entry;
763          int i, ncolours = colours->ncolours;          int i, ncolours = colours->ncolours;
764            uint32 *map = xmalloc(sizeof(*colmap) * ncolours);
765            XColor xentry;
766            XColor xc_cache[256];
767            uint32 colour;
768            int colLookup = 256;
769            for (i = 0; i < ncolours; i++)
770            {
771                    entry = &colours->colours[i];
772                    MAKE_XCOLOR(&xentry, entry);
773    
774                    if (XAllocColor(display, xcolmap, &xentry) == 0)
775                    {
776                            /* Allocation failed, find closest match. */
777                            int j = 256;
778                            int nMinDist = 3 * 256 * 256;
779                            long nDist = nMinDist;
780    
781                            /* only get the colors once */
782                            while( colLookup-- ){
783                                    xc_cache[colLookup].pixel = colLookup;
784                                    xc_cache[colLookup].red = xc_cache[colLookup].green = xc_cache[colLookup].blue = 0;
785                                    xc_cache[colLookup].flags = 0;
786                                    XQueryColor(display, DefaultColormap(display, DefaultScreen(display)), &xc_cache[colLookup]);
787                            }
788                            colLookup = 0;
789    
790          if (owncolmap)                          /* approximate the pixel */
791          {                          while( j-- ){
792                  XColor *xcolours, *xentry;                                  if( xc_cache[j].flags ){
793                  Colormap map;                                          nDist =
794                                            ((long) (xc_cache[j].red >> 8) - (long) (xentry.red >> 8)) *
795                  xcolours = xmalloc(sizeof(XColor) * ncolours);                                          ((long) (xc_cache[j].red >> 8) - (long) (xentry.red >> 8)) +
796                  for (i = 0; i < ncolours; i++)                                          ((long) (xc_cache[j].green >> 8) - (long) (xentry.green >> 8)) *
797                  {                                          ((long) (xc_cache[j].green >> 8) - (long) (xentry.green >> 8)) +
798                          entry = &colours->colours[i];                                          ((long) (xc_cache[j].blue >> 8) - (long) (xentry.blue >> 8)) *
799                          xentry = &xcolours[i];                                          ((long) (xc_cache[j].blue >> 8) - (long) (xentry.blue >> 8));
800                          xentry->pixel = i;                                  }
801                          MAKE_XCOLOR(xentry, entry);                                  if( nDist < nMinDist ){
802                                            nMinDist = nDist;
803                                            xentry.pixel = j;
804                                    }
805                            }
806                  }                  }
807                    colour = xentry.pixel;
808    
809                  map = XCreateColormap(display, wnd, visual, AllocAll);                  /* update our cache */
810                  XStoreColors(display, map, xcolours, ncolours);                  if( xentry.pixel < 256 ){
811                            xc_cache[xentry.pixel].red = xentry.red;
812                  xfree(xcolours);                          xc_cache[xentry.pixel].green = xentry.green;
813                  return (HCOLOURMAP) map;                          xc_cache[xentry.pixel].blue = xentry.blue;
         }  
         else  
         {  
                 uint32 *map = xmalloc(sizeof(*colmap) * ncolours);  
                 XColor xentry;  
                 uint32 colour;  
814    
                 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);  
815                  }                  }
816    
817                  return map;  
818                    /* byte swap here to make translate_image faster */
819                    map[i] = translate_colour(colour);
820          }          }
821    
822            return map;
823  }  }
824    
825  void  void
826  ui_destroy_colourmap(HCOLOURMAP map)  ui_destroy_colourmap(HCOLOURMAP map)
827  {  {
828          if (owncolmap)          xfree(map);
                 XFreeColormap(display, (Colormap) map);  
         else  
                 xfree(map);  
829  }  }
830    
831  void  void
832  ui_set_colourmap(HCOLOURMAP map)  ui_set_colourmap(HCOLOURMAP map)
833  {  {
834          if (owncolmap)          colmap = map;
                 XSetWindowColormap(display, wnd, (Colormap) map);  
         else  
                 colmap = map;  
835  }  }
836    
837  void  void
# Line 894  ui_set_clip(int x, int y, int cx, int cy Line 847  ui_set_clip(int x, int y, int cx, int cy
847  }  }
848    
849  void  void
850  ui_reset_clip()  ui_reset_clip(void)
851  {  {
852          XRectangle rect;          XRectangle rect;
853    
# Line 906  ui_reset_clip() Line 859  ui_reset_clip()
859  }  }
860    
861  void  void
862  ui_bell()  ui_bell(void)
863  {  {
864          XBell(display, 0);          XBell(display, 0);
865  }  }

Legend:
Removed from v.157  
changed lines
  Added in v.194

  ViewVC Help
Powered by ViewVC 1.1.26