/[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 644 by jsorg71, Thu Mar 25 22:58:45 2004 UTC revision 677 by n-ki, Mon Apr 26 13:48:39 2004 UTC
# Line 43  Time g_last_gesturetime; Line 43  Time g_last_gesturetime;
43  static int g_x_socket;  static int g_x_socket;
44  static Screen *g_screen;  static Screen *g_screen;
45  Window g_wnd;  Window g_wnd;
46  uint32 g_embed_wnd;  extern uint32 g_embed_wnd;
47  BOOL g_enable_compose = False;  BOOL g_enable_compose = False;
48  static GC g_gc = NULL;  static GC g_gc = NULL;
49  static Visual *g_visual;  static Visual *g_visual;
# Line 57  static HCURSOR g_null_cursor = NULL; Line 57  static HCURSOR g_null_cursor = NULL;
57  static Atom g_protocol_atom, g_kill_atom;  static Atom g_protocol_atom, g_kill_atom;
58  static BOOL g_focused;  static BOOL g_focused;
59  static BOOL g_mouse_in_wnd;  static BOOL g_mouse_in_wnd;
60  static BOOL g_arch_match = False; /* set to True if RGB XServer and little endian */  static BOOL g_arch_match = False;       /* set to True if RGB XServer and little endian */
61    
62  /* endianness */  /* endianness */
63  static BOOL g_host_be;  static BOOL g_host_be;
# Line 66  static int g_red_shift_r, g_blue_shift_r Line 66  static int g_red_shift_r, g_blue_shift_r
66  static int g_red_shift_l, g_blue_shift_l, g_green_shift_l;  static int g_red_shift_l, g_blue_shift_l, g_green_shift_l;
67    
68  /* software backing store */  /* software backing store */
69  BOOL g_ownbackstore = True;     /* We can't rely on external BackingStore */  extern BOOL g_ownbackstore;
70  static Pixmap g_backstore = 0;  static Pixmap g_backstore = 0;
71    
72  /* Moving in single app mode */  /* Moving in single app mode */
# Line 115  PixelColour; Line 115  PixelColour;
115  }  }
116    
117  /* colour maps */  /* colour maps */
118  BOOL g_owncolmap = False;  extern BOOL g_owncolmap;
119  static Colormap g_xcolmap;  static Colormap g_xcolmap;
120  static uint32 *g_colmap = NULL;  static uint32 *g_colmap = NULL;
121    
# Line 605  translate_image(int width, int height, u Line 605  translate_image(int width, int height, u
605          /* if server and xserver bpp match, */          /* if server and xserver bpp match, */
606          /* and arch(endian) matches, no need to translate */          /* and arch(endian) matches, no need to translate */
607          /* just return data */          /* just return data */
608          if (g_depth > 8)          if (g_arch_match)
609                  if (g_arch_match)          {
610                          if (g_depth == g_server_bpp)                  if (g_depth == 15 && g_server_bpp == 15)
611                                  return data;                          return data;
612                    if (g_depth == 16 && g_server_bpp == 16)
613                            return data;
614            }
615    
616          size = width * height * (g_bpp / 8);          size = width * height * (g_bpp / 8);
617          out = (uint8 *) xmalloc(size);          out = (uint8 *) xmalloc(size);
# Line 953  ui_create_window(void) Line 956  ui_create_window(void)
956                  XFree(sizehints);                  XFree(sizehints);
957          }          }
958    
959          if ( g_embed_wnd )          if (g_embed_wnd)
960          {          {
961                  XReparentWindow(g_display, g_wnd, (Window)g_embed_wnd, 0, 0);                  XReparentWindow(g_display, g_wnd, (Window) g_embed_wnd, 0, 0);
962          }          }
963    
964          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |          input_mask = KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |
965                  VisibilityChangeMask | FocusChangeMask;                  VisibilityChangeMask | FocusChangeMask;
# Line 1006  ui_create_window(void) Line 1009  ui_create_window(void)
1009  }  }
1010    
1011  void  void
1012    ui_resize_window()
1013    {
1014            XSizeHints *sizehints;
1015    
1016            sizehints = XAllocSizeHints();
1017            if (sizehints)
1018            {
1019                    sizehints->flags = PMinSize | PMaxSize;
1020                    sizehints->min_width = sizehints->max_width = g_width;
1021                    sizehints->min_height = sizehints->max_height = g_height;
1022                    XSetWMNormalHints(g_display, g_wnd, sizehints);
1023                    XFree(sizehints);
1024            }
1025    
1026            if (!(g_fullscreen || g_embed_wnd))
1027            {
1028                    XResizeWindow(g_display, g_wnd, g_width, g_height);
1029            }
1030    }
1031    
1032    void
1033  ui_destroy_window(void)  ui_destroy_window(void)
1034  {  {
1035          if (g_IC != NULL)          if (g_IC != NULL)

Legend:
Removed from v.644  
changed lines
  Added in v.677

  ViewVC Help
Powered by ViewVC 1.1.26