/[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 185 by n-ki, Wed Sep 18 12:13:08 2002 UTC revision 257 by jsorg71, Mon Nov 11 23:15:27 2002 UTC
# Line 1  Line 1 
1  /*  /*
2     rdesktop: A Remote Desktop Protocol client.     rdesktop: A Remote Desktop Protocol client.
3     User interface services - X Window System     User interface services - X Window System
4     Copyright (C) Matthew Chapman 1999-2001     Copyright (C) Matthew Chapman 1999-2002
5    
6     This program is free software; you can redistribute it and/or modify     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by     it under the terms of the GNU General Public License as published by
# 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    BOOL focused;
35    BOOL mouse_in_wnd;
36    
37  Display *display;  Display *display;
38  static int x_socket;  static int x_socket;
# Line 42  static GC gc; Line 42  static GC gc;
42  static Visual *visual;  static Visual *visual;
43  static int depth;  static int depth;
44  static int bpp;  static int bpp;
45    static XIM IM;
46    static XIC IC;
47    static XModifierKeymap *mod_map;
48    static Cursor current_cursor;
49    
50  /* endianness */  /* endianness */
51  static BOOL host_be;  static BOOL host_be;
# Line 62  static Pixmap backstore; Line 66  static Pixmap backstore;
66  static Colormap xcolmap;  static Colormap xcolmap;
67  static uint32 *colmap;  static uint32 *colmap;
68    
 /* Compose support */  
 BOOL enable_compose = False;  
 static XIM IM = NULL;  
 static XIC IC = NULL;  
   
 /* toggle fullscreen globals */  
 static unsigned long input_mask;  
   
69  #define SET_FOREGROUND(col)     XSetForeground(display, gc, translate_colour(colmap[col]));  #define SET_FOREGROUND(col)     XSetForeground(display, gc, translate_colour(colmap[col]));
70  #define SET_BACKGROUND(col)     XSetBackground(display, gc, translate_colour(colmap[col]));  #define SET_BACKGROUND(col)     XSetBackground(display, gc, translate_colour(colmap[col]));
71    
# Line 189  translate_colour(uint32 colour) Line 185  translate_colour(uint32 colour)
185          return colour;          return colour;
186  }  }
187    
 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;  
                 }  
         }  
 }  
   
188  BOOL  BOOL
189  get_key_state(int keysym)  get_key_state(unsigned int state, uint32 keysym)
190  {  {
191          int keysymMask = 0, modifierpos, key;          int modifierpos, key, keysymMask = 0;
         Window wDummy1, wDummy2;  
         int iDummy3, iDummy4, iDummy5, iDummy6;  
         unsigned int current_state;  
192          int offset;          int offset;
193    
         XModifierKeymap *map = XGetModifierMapping(display);  
194          KeyCode keycode = XKeysymToKeycode(display, keysym);          KeyCode keycode = XKeysymToKeycode(display, keysym);
195    
196          if (keycode == NoSymbol)          if (keycode == NoSymbol)
# Line 259  get_key_state(int keysym) Line 198  get_key_state(int keysym)
198    
199          for (modifierpos = 0; modifierpos < 8; modifierpos++)          for (modifierpos = 0; modifierpos < 8; modifierpos++)
200          {          {
201                  offset = map->max_keypermod * modifierpos;                  offset = mod_map->max_keypermod * modifierpos;
202    
203                  for (key = 0; key < map->max_keypermod; key++)                  for (key = 0; key < mod_map->max_keypermod; key++)
204                  {                  {
205                          if (map->modifiermap[offset + key] == keycode)                          if (mod_map->modifiermap[offset + key] == keycode)
206                                  keysymMask = 1 << modifierpos;                                  keysymMask |= 1 << modifierpos;
207                  }                  }
208          }          }
209    
210          XQueryPointer(display, DefaultRootWindow(display), &wDummy1,          return (state & keysymMask) ? True : False;
                       &wDummy2, &iDummy3, &iDummy4, &iDummy5, &iDummy6, &current_state);  
   
         XFreeModifiermap(map);  
   
         return (current_state & keysymMask) ? True : False;  
 }  
   
 static void  
 xwin_map_window()  
 {  
         XEvent xevent;  
   
         XMapWindow(display, wnd);  
   
         /* wait for VisibilityChange */  
         XMaskEvent(display, VisibilityChangeMask, &xevent);  
   
         if (fullscreen)  
                 XSetInputFocus(display, wnd, RevertToPointerRoot, CurrentTime);  
211  }  }
212    
213  BOOL  BOOL
214  ui_init()  ui_init(void)
215  {  {
216          XPixmapFormatValues *pfm;          XPixmapFormatValues *pfm;
217          uint16 test;          uint16 test;
# Line 300  ui_init() Line 220  ui_init()
220          display = XOpenDisplay(NULL);          display = XOpenDisplay(NULL);
221          if (display == NULL)          if (display == NULL)
222          {          {
223                  error("Failed to open display\n");                  error("Failed to open display: %s\n", XDisplayName(NULL));
224                  return False;                  return False;
225          }          }
226    
# Line 332  ui_init() Line 252  ui_init()
252          }          }
253    
254          xcolmap = DefaultColormapOfScreen(screen);          xcolmap = DefaultColormapOfScreen(screen);
255            gc = XCreateGC(display, RootWindowOfScreen(screen), 0, NULL);
256    
257          if (DoesBackingStore(screen) == NotUseful)          if (DoesBackingStore(screen) != Always)
258                  ownbackstore = True;                  ownbackstore = True;
259    
260          test = 1;          test = 1;
# Line 349  ui_init() Line 270  ui_init()
270          /* make sure width is a multiple of 4 */          /* make sure width is a multiple of 4 */
271          width = (width + 3) & ~3;          width = (width + 3) & ~3;
272    
273            if (ownbackstore)
274            {
275                    backstore =
276                            XCreatePixmap(display, RootWindowOfScreen(screen), width, height, depth);
277    
278                    /* clear to prevent rubbish being exposed at startup */
279                    XSetForeground(display, gc, BlackPixelOfScreen(screen));
280                    XFillRectangle(display, backstore, gc, 0, 0, width, height);
281            }
282    
283            mod_map = XGetModifierMapping(display);
284    
285            if (enable_compose)
286                    IM = XOpenIM(display, NULL, NULL, NULL);
287    
288          xkeymap_init();          xkeymap_init();
289          return True;          return True;
290  }  }
291    
292    void
293    ui_deinit(void)
294    {
295            if (IM != NULL)
296                    XCloseIM(IM);
297    
298            XFreeModifiermap(mod_map);
299    
300            if (ownbackstore)
301                    XFreePixmap(display, backstore);
302    
303            XFreeGC(display, gc);
304            XCloseDisplay(display);
305            display = NULL;
306    }
307    
308  BOOL  BOOL
309  ui_create_window()  ui_create_window(void)
310  {  {
311          XSetWindowAttributes attribs;          XSetWindowAttributes attribs;
312          XClassHint *classhints;          XClassHint *classhints;
313          XSizeHints *sizehints;          XSizeHints *sizehints;
314            int wndwidth, wndheight;
315            long input_mask, ic_input_mask;
316          XEvent xevent;          XEvent xevent;
317    
318            wndwidth = fullscreen ? WidthOfScreen(screen) : width;
319            wndheight = fullscreen ? HeightOfScreen(screen) : height;
320    
321          attribs.background_pixel = BlackPixelOfScreen(screen);          attribs.background_pixel = BlackPixelOfScreen(screen);
322          attribs.backing_store = ownbackstore ? NotUseful : Always;          attribs.backing_store = ownbackstore ? NotUseful : Always;
323          attribs.override_redirect = fullscreen;          attribs.override_redirect = fullscreen;
324          wnd = XCreateWindow(display, RootWindowOfScreen(screen), 0, 0, width, height,  
325            wnd = XCreateWindow(display, RootWindowOfScreen(screen), 0, 0, wndwidth, wndheight,
326                              0, CopyFromParent, InputOutput, CopyFromParent,                              0, CopyFromParent, InputOutput, CopyFromParent,
327                              CWBackPixel | CWBackingStore | CWOverrideRedirect, &attribs);                              CWBackPixel | CWBackingStore | CWOverrideRedirect, &attribs);
328    
         if (ownbackstore)  
                 backstore = XCreatePixmap(display, wnd, width, height, depth);  
   
329          XStoreName(display, wnd, title);          XStoreName(display, wnd, title);
330    
331          classhints = XAllocClassHint();          classhints = XAllocClassHint();
# Line 394  ui_create_window() Line 349  ui_create_window()
349          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |
350                  VisibilityChangeMask | FocusChangeMask;                  VisibilityChangeMask | FocusChangeMask;
351    
         if (grab_keyboard)  
                 input_mask |= EnterWindowMask | LeaveWindowMask;  
352          if (sendmotion)          if (sendmotion)
353                  input_mask |= PointerMotionMask;                  input_mask |= PointerMotionMask;
354          if (ownbackstore)          if (ownbackstore)
355                  input_mask |= ExposureMask;                  input_mask |= ExposureMask;
356          if (enable_compose)          if (fullscreen || grab_keyboard)
357                  input_mask |= init_inputmethod();                  input_mask |= EnterWindowMask;
358            if (grab_keyboard)
359                    input_mask |= LeaveWindowMask;
360    
361            if (IM != NULL)
362            {
363                    IC = XCreateIC(IM, XNInputStyle, (XIMPreeditNothing | XIMStatusNothing),
364                                   XNClientWindow, wnd, XNFocusWindow, wnd, NULL);
365    
366                    if ((IC != NULL)
367                        && (XGetICValues(IC, XNFilterEvents, &ic_input_mask, NULL) == NULL))
368                            input_mask |= ic_input_mask;
369            }
370    
371          XSelectInput(display, wnd, input_mask);          XSelectInput(display, wnd, input_mask);
372            XMapWindow(display, wnd);
373    
374          xwin_map_window();          /* wait for VisibilityNotify */
375            do
376            {
377                    XMaskEvent(display, VisibilityChangeMask, &xevent);
378            }
379            while (xevent.type != VisibilityNotify);
380    
381          /* clear the window so that cached data is not seen */          focused = False;
382          gc = XCreateGC(display, wnd, 0, NULL);          mouse_in_wnd = False;
         XSetForeground(display, gc, 0);  
         FILL_RECTANGLE(0, 0, width, height);  
383    
384          return True;          return True;
385  }  }
386    
387  void  void
388  ui_destroy_window()  ui_destroy_window(void)
389  {  {
390          if (ownbackstore)          if (IC != NULL)
391                  XFreePixmap(display, backstore);                  XDestroyIC(IC);
   
         XFreeGC(display, gc);  
   
         close_inputmethod();  
392    
393          XDestroyWindow(display, wnd);          XDestroyWindow(display, wnd);
         XCloseDisplay(display);  
         display = NULL;  
394  }  }
395    
   
396  void  void
397  xwin_toggle_fullscreen()  xwin_toggle_fullscreen(void)
398  {  {
399          XEvent xevent;          Pixmap contents = 0;
         XSetWindowAttributes attribs;  
         int newwidth, newheight;  
400    
401            if (!ownbackstore)
402            {
403                    /* need to save contents of window */
404                    contents = XCreatePixmap(display, wnd, width, height, depth);
405                    XCopyArea(display, wnd, contents, gc, 0, 0, width, height, 0, 0);
406            }
407    
408            ui_destroy_window();
409          fullscreen = !fullscreen;          fullscreen = !fullscreen;
410          newwidth = fullscreen ? WidthOfScreen(screen) : width;          ui_create_window();
         newheight = fullscreen ? HeightOfScreen(screen) : height;  
411    
412          XUnmapWindow(display, wnd);          XDefineCursor(display, wnd, current_cursor);
413          attribs.override_redirect = fullscreen;  
414          XMoveResizeWindow(display, wnd, 0, 0, newwidth, newheight);          if (!ownbackstore)
415          XChangeWindowAttributes(display, wnd, CWOverrideRedirect, &attribs);          {
416          xwin_map_window();                  XCopyArea(display, contents, wnd, gc, 0, 0, width, height, 0, 0);
417                    XFreePixmap(display, contents);
418            }
419  }  }
420    
421  /* Process all events in Xlib queue */  /* Process all events in Xlib queue */
422  static void  static void
423  xwin_process_events()  xwin_process_events(void)
424  {  {
425          XEvent xevent;          XEvent xevent;
426          KeySym keysym;          KeySym keysym;
427          uint16 button, flags;          uint16 button, flags;
428          uint32 ev_time;          uint32 ev_time;
429          key_translation tr;          key_translation tr;
         char *ksname = NULL;  
430          char str[256];          char str[256];
431          Status status;          Status status;
432            unsigned int state;
433            Window wdummy;
434            int dummy;
435    
436          while (XPending(display) > 0)          while (XPending(display) > 0)
437          {          {
438                  XNextEvent(display, &xevent);                  XNextEvent(display, &xevent);
439    
440                  if (enable_compose && (XFilterEvent(&xevent, None) == True))                  if ((IC != NULL) && (XFilterEvent(&xevent, None) == True))
441                  {                  {
442                          DEBUG_KBD(("Filtering event\n"));                          DEBUG_KBD(("Filtering event\n"));
443                          continue;                          continue;
444                  }                  }
445    
                 ev_time = time(NULL);  
446                  flags = 0;                  flags = 0;
447    
448                  switch (xevent.type)                  switch (xevent.type)
# Line 499  xwin_process_events() Line 469  xwin_process_events()
469                                                        str, sizeof(str), &keysym, NULL);                                                        str, sizeof(str), &keysym, NULL);
470                                  }                                  }
471    
472                                  ksname = get_ksname(keysym);                                  DEBUG_KBD(("KeyPress for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym)));
                                 DEBUG_KBD(("KeyPress for (keysym 0x%lx, %s)\n", keysym, ksname));  
473    
474                                  if (handle_special_keys(keysym, ev_time, True))                                  ev_time = time(NULL);
475                                    if (handle_special_keys(keysym, xevent.xkey.state, ev_time, True))
476                                          break;                                          break;
477    
478                                  tr = xkeymap_translate_key(keysym,                                  tr = xkeymap_translate_key(keysym,
# Line 515  xwin_process_events() Line 485  xwin_process_events()
485    
486                                  rdp_send_scancode(ev_time, RDP_KEYPRESS, tr.scancode);                                  rdp_send_scancode(ev_time, RDP_KEYPRESS, tr.scancode);
487                                  break;                                  break;
488    
489                          case KeyRelease:                          case KeyRelease:
490                                  XLookupString((XKeyEvent *) & xevent, str,                                  XLookupString((XKeyEvent *) & xevent, str,
491                                                sizeof(str), &keysym, NULL);                                                sizeof(str), &keysym, NULL);
492    
                                 ksname = get_ksname(keysym);  
493                                  DEBUG_KBD(("\nKeyRelease for (keysym 0x%lx, %s)\n", keysym,                                  DEBUG_KBD(("\nKeyRelease for (keysym 0x%lx, %s)\n", keysym,
494                                             ksname));                                             get_ksname(keysym)));
495    
496                                  if (handle_special_keys(keysym, ev_time, False))                                  ev_time = time(NULL);
497                                    if (handle_special_keys(keysym, xevent.xkey.state, ev_time, False))
498                                          break;                                          break;
499    
500                                  tr = xkeymap_translate_key(keysym,                                  tr = xkeymap_translate_key(keysym,
# Line 544  xwin_process_events() Line 515  xwin_process_events()
515                                  if (button == 0)                                  if (button == 0)
516                                          break;                                          break;
517    
518                                  rdp_send_input(ev_time, RDP_INPUT_MOUSE,                                  rdp_send_input(time(NULL), RDP_INPUT_MOUSE,
519                                                 flags | button, xevent.xbutton.x, xevent.xbutton.y);                                                 flags | button, xevent.xbutton.x, xevent.xbutton.y);
520                                  break;                                  break;
521    
522                          case MotionNotify:                          case MotionNotify:
523                                  rdp_send_input(ev_time, RDP_INPUT_MOUSE,                                  rdp_send_input(time(NULL), RDP_INPUT_MOUSE,
524                                                 MOUSE_FLAG_MOVE, xevent.xmotion.x, xevent.xmotion.y);                                                 MOUSE_FLAG_MOVE, xevent.xmotion.x, xevent.xmotion.y);
525                                  break;                                  break;
526    
527                          case EnterNotify:                          case FocusIn:
528                                  if (grab_keyboard)                                  if (xevent.xfocus.mode == NotifyGrab)
529                                            break;
530                                    focused = True;
531                                    XQueryPointer(display, wnd, &wdummy, &wdummy, &dummy, &dummy, &dummy, &dummy, &state);
532                                    reset_modifier_keys(state);
533                                    if (grab_keyboard && mouse_in_wnd)
534                                          XGrabKeyboard(display, wnd, True,                                          XGrabKeyboard(display, wnd, True,
535                                                        GrabModeAsync, GrabModeAsync, CurrentTime);                                                        GrabModeAsync, GrabModeAsync, CurrentTime);
536                                  break;                                  break;
537    
538                          case LeaveNotify:                          case FocusOut:
539                                  if (grab_keyboard)                                  if (xevent.xfocus.mode == NotifyUngrab)
540                                            break;
541                                    focused = False;
542                                    if (xevent.xfocus.mode == NotifyWhileGrabbed)
543                                          XUngrabKeyboard(display, CurrentTime);                                          XUngrabKeyboard(display, CurrentTime);
544                                  break;                                  break;
545    
546                          case FocusIn:                          case EnterNotify:
547                                  reset_modifier_keys();                                  /* we only register for this event when in fullscreen mode */
548                                    /* or grab_keyboard */
549                                    mouse_in_wnd = True;
550                                    if (fullscreen)
551                                    {
552                                            XSetInputFocus(display, wnd, RevertToPointerRoot, CurrentTime);
553                                            break;
554                                    }
555                                    if (focused)
556                                            XGrabKeyboard(display, wnd, True,
557                                                          GrabModeAsync, GrabModeAsync, CurrentTime);
558                                    break;
559    
560                            case LeaveNotify:
561                                    /* we only register for this event when grab_keyboard */
562                                    mouse_in_wnd = False;
563                                    XUngrabKeyboard(display, CurrentTime);
564                                  break;                                  break;
565    
566                          case Expose:                          case Expose:
# Line 582  xwin_process_events() Line 577  xwin_process_events()
577                                  if (xevent.xmapping.request == MappingKeyboard                                  if (xevent.xmapping.request == MappingKeyboard
578                                      || xevent.xmapping.request == MappingModifier)                                      || xevent.xmapping.request == MappingModifier)
579                                          XRefreshKeyboardMapping(&xevent.xmapping);                                          XRefreshKeyboardMapping(&xevent.xmapping);
580    
581                                    if (xevent.xmapping.request == MappingModifier)
582                                    {
583                                            XFreeModifiermap(mod_map);
584                                            mod_map = XGetModifierMapping(display);
585                                    }
586                                  break;                                  break;
587    
588                  }                  }
# Line 780  ui_create_cursor(unsigned int x, unsigne Line 781  ui_create_cursor(unsigned int x, unsigne
781  void  void
782  ui_set_cursor(HCURSOR cursor)  ui_set_cursor(HCURSOR cursor)
783  {  {
784          XDefineCursor(display, wnd, (Cursor) cursor);          current_cursor = (Cursor) cursor;
785            XDefineCursor(display, wnd, current_cursor);
786  }  }
787    
788  void  void
# Line 818  ui_create_colourmap(COLOURMAP * colours) Line 820  ui_create_colourmap(COLOURMAP * colours)
820                          long nDist = nMinDist;                          long nDist = nMinDist;
821    
822                          /* only get the colors once */                          /* only get the colors once */
823                          while( colLookup-- ){                          while (colLookup--)
824                            {
825                                  xc_cache[colLookup].pixel = colLookup;                                  xc_cache[colLookup].pixel = colLookup;
826                                  xc_cache[colLookup].red = xc_cache[colLookup].green = xc_cache[colLookup].blue = 0;                                  xc_cache[colLookup].red = xc_cache[colLookup].green =
827                                            xc_cache[colLookup].blue = 0;
828                                  xc_cache[colLookup].flags = 0;                                  xc_cache[colLookup].flags = 0;
829                                  XQueryColor(display, DefaultColormap(display, DefaultScreen(display)), &xc_cache[colLookup]);                                  XQueryColor(display,
830                                                DefaultColormap(display, DefaultScreen(display)),
831                                                &xc_cache[colLookup]);
832                          }                          }
833                          colLookup = 0;                          colLookup = 0;
834    
835                          /* approximate the pixel */                          /* approximate the pixel */
836                          while( j-- ){                          while (j--)
837                                  if( xc_cache[j].flags ){                          {
838                                          nDist =                                  if (xc_cache[j].flags)
839                                          ((long) (xc_cache[j].red >> 8) - (long) (xentry.red >> 8)) *                                  {
840                                          ((long) (xc_cache[j].red >> 8) - (long) (xentry.red >> 8)) +                                          nDist = ((long) (xc_cache[j].red >> 8) -
841                                          ((long) (xc_cache[j].green >> 8) - (long) (xentry.green >> 8)) *                                                   (long) (xentry.red >> 8)) *
842                                          ((long) (xc_cache[j].green >> 8) - (long) (xentry.green >> 8)) +                                                  ((long) (xc_cache[j].red >> 8) -
843                                          ((long) (xc_cache[j].blue >> 8) - (long) (xentry.blue >> 8)) *                                                   (long) (xentry.red >> 8)) +
844                                          ((long) (xc_cache[j].blue >> 8) - (long) (xentry.blue >> 8));                                                  ((long) (xc_cache[j].green >> 8) -
845                                                     (long) (xentry.green >> 8)) *
846                                                    ((long) (xc_cache[j].green >> 8) -
847                                                     (long) (xentry.green >> 8)) +
848                                                    ((long) (xc_cache[j].blue >> 8) -
849                                                     (long) (xentry.blue >> 8)) *
850                                                    ((long) (xc_cache[j].blue >> 8) -
851                                                     (long) (xentry.blue >> 8));
852                                  }                                  }
853                                  if( nDist < nMinDist ){                                  if (nDist < nMinDist)
854                                    {
855                                          nMinDist = nDist;                                          nMinDist = nDist;
856                                          xentry.pixel = j;                                          xentry.pixel = j;
857                                  }                                  }
# Line 846  ui_create_colourmap(COLOURMAP * colours) Line 860  ui_create_colourmap(COLOURMAP * colours)
860                  colour = xentry.pixel;                  colour = xentry.pixel;
861    
862                  /* update our cache */                  /* update our cache */
863                  if( xentry.pixel < 256 ){                  if (xentry.pixel < 256)
864                    {
865                          xc_cache[xentry.pixel].red = xentry.red;                          xc_cache[xentry.pixel].red = xentry.red;
866                          xc_cache[xentry.pixel].green = xentry.green;                          xc_cache[xentry.pixel].green = xentry.green;
867                          xc_cache[xentry.pixel].blue = xentry.blue;                          xc_cache[xentry.pixel].blue = xentry.blue;
# Line 886  ui_set_clip(int x, int y, int cx, int cy Line 901  ui_set_clip(int x, int y, int cx, int cy
901  }  }
902    
903  void  void
904  ui_reset_clip()  ui_reset_clip(void)
905  {  {
906          XRectangle rect;          XRectangle rect;
907    
# Line 898  ui_reset_clip() Line 913  ui_reset_clip()
913  }  }
914    
915  void  void
916  ui_bell()  ui_bell(void)
917  {  {
918          XBell(display, 0);          XBell(display, 0);
919  }  }

Legend:
Removed from v.185  
changed lines
  Added in v.257

  ViewVC Help
Powered by ViewVC 1.1.26