/[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 1365 by jsorg71, Thu Jan 4 05:39:39 2007 UTC revision 1407 by astrand, Mon May 14 12:11:15 2007 UTC
# Line 20  Line 20 
20    
21  #include <X11/Xlib.h>  #include <X11/Xlib.h>
22  #include <X11/Xutil.h>  #include <X11/Xutil.h>
23    #include <X11/Xproto.h>
24  #include <unistd.h>  #include <unistd.h>
25  #include <sys/time.h>  #include <sys/time.h>
26  #include <time.h>  #include <time.h>
# Line 28  Line 29 
29  #include "rdesktop.h"  #include "rdesktop.h"
30  #include "xproto.h"  #include "xproto.h"
31    
 /* We can't include Xproto.h because of conflicting defines for BOOL */  
 #define X_ConfigureWindow              12  
   
32  extern int g_width;  extern int g_width;
33  extern int g_height;  extern int g_height;
34  extern int g_xpos;  extern int g_xpos;
35  extern int g_ypos;  extern int g_ypos;
36  extern int g_pos;  extern int g_pos;
37  extern BOOL g_sendmotion;  extern RD_BOOL g_sendmotion;
38  extern BOOL g_fullscreen;  extern RD_BOOL g_fullscreen;
39  extern BOOL g_grab_keyboard;  extern RD_BOOL g_grab_keyboard;
40  extern BOOL g_hide_decorations;  extern RD_BOOL g_hide_decorations;
41  extern char g_title[];  extern char g_title[];
42  /* Color depth of the RDP session.  /* Color depth of the RDP session.
43     As of RDP 5.1, it may be 8, 15, 16 or 24. */     As of RDP 5.1, it may be 8, 15, 16 or 24. */
# Line 71  typedef struct _seamless_window Line 69  typedef struct _seamless_window
69          unsigned int desktop;          unsigned int desktop;
70          struct timeval *position_timer;          struct timeval *position_timer;
71    
72          BOOL outstanding_position;          RD_BOOL outstanding_position;
73          unsigned int outpos_serial;          unsigned int outpos_serial;
74          int outpos_xoffset, outpos_yoffset;          int outpos_xoffset, outpos_yoffset;
75          int outpos_width, outpos_height;          int outpos_width, outpos_height;
# Line 80  typedef struct _seamless_window Line 78  typedef struct _seamless_window
78  } seamless_window;  } seamless_window;
79  static seamless_window *g_seamless_windows = NULL;  static seamless_window *g_seamless_windows = NULL;
80  static unsigned long g_seamless_focused = 0;  static unsigned long g_seamless_focused = 0;
81  static BOOL g_seamless_started = False; /* Server end is up and running */  static RD_BOOL g_seamless_started = False;      /* Server end is up and running */
82  static BOOL g_seamless_active = False;  /* We are currently in seamless mode */  static RD_BOOL g_seamless_active = False;       /* We are currently in seamless mode */
83  static BOOL g_seamless_hidden = False;  /* Desktop is hidden on server */  static RD_BOOL g_seamless_hidden = False;       /* Desktop is hidden on server */
84  extern BOOL g_seamless_rdp;  extern RD_BOOL g_seamless_rdp;
85    
86  extern uint32 g_embed_wnd;  extern uint32 g_embed_wnd;
87  BOOL g_enable_compose = False;  RD_BOOL g_enable_compose = False;
88  BOOL g_Unobscured;              /* used for screenblt */  RD_BOOL g_Unobscured;           /* used for screenblt */
89  static GC g_gc = NULL;  static GC g_gc = NULL;
90  static GC g_create_bitmap_gc = NULL;  static GC g_create_bitmap_gc = NULL;
91  static GC g_create_glyph_gc = NULL;  static GC g_create_glyph_gc = NULL;
# Line 104  static int g_bpp; Line 102  static int g_bpp;
102  static XIM g_IM;  static XIM g_IM;
103  static XIC g_IC;  static XIC g_IC;
104  static XModifierKeymap *g_mod_map;  static XModifierKeymap *g_mod_map;
105    /* Maps logical (xmodmap -pp) pointing device buttons (0-based) back
106       to physical (1-based) indices. */
107    static unsigned char g_pointer_log_to_phys_map[16];
108  static Cursor g_current_cursor;  static Cursor g_current_cursor;
109  static RD_HCURSOR g_null_cursor = NULL;  static RD_HCURSOR g_null_cursor = NULL;
110  static Atom g_protocol_atom, g_kill_atom;  static Atom g_protocol_atom, g_kill_atom;
111  extern Atom g_net_wm_state_atom;  extern Atom g_net_wm_state_atom;
112  extern Atom g_net_wm_desktop_atom;  extern Atom g_net_wm_desktop_atom;
113  static BOOL g_focused;  static RD_BOOL g_focused;
114  static BOOL g_mouse_in_wnd;  static RD_BOOL g_mouse_in_wnd;
115  /* Indicates that:  /* Indicates that:
116     1) visual has 15, 16 or 24 depth and the same color channel masks     1) visual has 15, 16 or 24 depth and the same color channel masks
117        as its RDP equivalent (implies X server is LE),        as its RDP equivalent (implies X server is LE),
118     2) host is LE     2) host is LE
119     This will trigger an optimization whose real value is questionable.     This will trigger an optimization whose real value is questionable.
120  */  */
121  static BOOL g_compatible_arch;  static RD_BOOL g_compatible_arch;
122  /* Indicates whether RDP's bitmaps and our XImages have the same  /* Indicates whether RDP's bitmaps and our XImages have the same
123     binary format. If so, we can avoid an expensive translation.     binary format. If so, we can avoid an expensive translation.
124     Note that this can be true when g_compatible_arch is false,     Note that this can be true when g_compatible_arch is false,
# Line 128  static BOOL g_compatible_arch; Line 129  static BOOL g_compatible_arch;
129     ('host' is the machine running rdesktop; the host simply memcpy's     ('host' is the machine running rdesktop; the host simply memcpy's
130      so its endianess doesn't matter)      so its endianess doesn't matter)
131   */   */
132  static BOOL g_no_translate_image = False;  static RD_BOOL g_no_translate_image = False;
133    
134  /* endianness */  /* endianness */
135  static BOOL g_host_be;  static RD_BOOL g_host_be;
136  static BOOL g_xserver_be;  static RD_BOOL g_xserver_be;
137  static int g_red_shift_r, g_blue_shift_r, g_green_shift_r;  static int g_red_shift_r, g_blue_shift_r, g_green_shift_r;
138  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;
139    
140  /* software backing store */  /* software backing store */
141  extern BOOL g_ownbackstore;  extern RD_BOOL g_ownbackstore;
142  static Pixmap g_backstore = 0;  static Pixmap g_backstore = 0;
143    
144  /* Moving in single app mode */  /* Moving in single app mode */
145  static BOOL g_moving_wnd;  static RD_BOOL g_moving_wnd;
146  static int g_move_x_offset = 0;  static int g_move_x_offset = 0;
147  static int g_move_y_offset = 0;  static int g_move_y_offset = 0;
148  static BOOL g_using_full_workarea = False;  static RD_BOOL g_using_full_workarea = False;
149    
150  #ifdef WITH_RDPSND  #ifdef WITH_RDPSND
151  extern BOOL g_rdpsnd;  extern RD_BOOL g_rdpsnd;
152  #endif  #endif
153    
154  /* MWM decorations */  /* MWM decorations */
# Line 248  seamless_XDrawLines(Drawable d, XPoint * Line 249  seamless_XDrawLines(Drawable d, XPoint *
249  }  }
250    
251  /* colour maps */  /* colour maps */
252  extern BOOL g_owncolmap;  extern RD_BOOL g_owncolmap;
253  static Colormap g_xcolmap;  static Colormap g_xcolmap;
254  static uint32 *g_colmap = NULL;  static uint32 *g_colmap = NULL;
255    
# Line 472  sw_handle_restack(seamless_window * sw) Line 473  sw_handle_restack(seamless_window * sw)
473    
474    
475  static seamless_group *  static seamless_group *
476  sw_find_group(unsigned long id, BOOL dont_create)  sw_find_group(unsigned long id, RD_BOOL dont_create)
477  {  {
478          seamless_window *sw;          seamless_window *sw;
479          seamless_group *sg;          seamless_group *sg;
# Line 1262  translate_image(int width, int height, u Line 1263  translate_image(int width, int height, u
1263          return out;          return out;
1264  }  }
1265    
1266  BOOL  static void
1267    xwin_refresh_pointer_map(void)
1268    {
1269            unsigned char phys_to_log_map[sizeof(g_pointer_log_to_phys_map)];
1270            int i, pointer_buttons;
1271    
1272            pointer_buttons = XGetPointerMapping(g_display, phys_to_log_map, sizeof(phys_to_log_map));
1273            for (i = 0; i < pointer_buttons; ++i)
1274            {
1275                    /* This might produce multiple logical buttons mapping
1276                       to a single physical one, but hey, that's
1277                       life... */
1278                    g_pointer_log_to_phys_map[phys_to_log_map[i] - 1] = i + 1;
1279            }
1280    }
1281    
1282    RD_BOOL
1283  get_key_state(unsigned int state, uint32 keysym)  get_key_state(unsigned int state, uint32 keysym)
1284  {  {
1285          int modifierpos, key, keysymMask = 0;          int modifierpos, key, keysymMask = 0;
# Line 1310  calculate_mask_weight(uint32 mask) Line 1327  calculate_mask_weight(uint32 mask)
1327          return weight;          return weight;
1328  }  }
1329    
1330  static BOOL  static RD_BOOL
1331  select_visual(int screen_num)  select_visual(int screen_num)
1332  {  {
1333          XPixmapFormatValues *pfm;          XPixmapFormatValues *pfm;
# Line 1349  select_visual(int screen_num) Line 1366  select_visual(int screen_num)
1366                  for (i = 0; i < visuals_count; ++i)                  for (i = 0; i < visuals_count; ++i)
1367                  {                  {
1368                          XVisualInfo *visual_info = &vmatches[i];                          XVisualInfo *visual_info = &vmatches[i];
1369                          BOOL can_translate_to_bpp = False;                          RD_BOOL can_translate_to_bpp = False;
1370                          int j;                          int j;
1371    
1372                          /* Try to find a no-translation visual that'll                          /* Try to find a no-translation visual that'll
# Line 1521  error_handler(Display * dpy, XErrorEvent Line 1538  error_handler(Display * dpy, XErrorEvent
1538          return g_old_error_handler(dpy, eev);          return g_old_error_handler(dpy, eev);
1539  }  }
1540    
1541  BOOL  RD_BOOL
1542  ui_init(void)  ui_init(void)
1543  {  {
1544          int screen_num;          int screen_num;
# Line 1535  ui_init(void) Line 1552  ui_init(void)
1552    
1553          {          {
1554                  uint16 endianess_test = 1;                  uint16 endianess_test = 1;
1555                  g_host_be = !(BOOL) (*(uint8 *) (&endianess_test));                  g_host_be = !(RD_BOOL) (*(uint8 *) (&endianess_test));
1556          }          }
1557    
1558          g_old_error_handler = XSetErrorHandler(error_handler);          g_old_error_handler = XSetErrorHandler(error_handler);
# Line 1616  ui_init(void) Line 1633  ui_init(void)
1633          g_width = (g_width + 3) & ~3;          g_width = (g_width + 3) & ~3;
1634    
1635          g_mod_map = XGetModifierMapping(g_display);          g_mod_map = XGetModifierMapping(g_display);
1636            xwin_refresh_pointer_map();
1637    
1638          xkeymap_init();          xkeymap_init();
1639    
# Line 1687  get_input_mask(long *input_mask) Line 1705  get_input_mask(long *input_mask)
1705                  *input_mask |= LeaveWindowMask;                  *input_mask |= LeaveWindowMask;
1706  }  }
1707    
1708  BOOL  RD_BOOL
1709  ui_create_window(void)  ui_create_window(void)
1710  {  {
1711          uint8 null_pointer_mask[1] = { 0x80 };          uint8 null_pointer_mask[1] = { 0x80 };
# Line 1735  ui_create_window(void) Line 1753  ui_create_window(void)
1753          }          }
1754    
1755          XStoreName(g_display, g_wnd, g_title);          XStoreName(g_display, g_wnd, g_title);
1756            ewmh_set_wm_name(g_wnd, g_title);
1757    
1758          if (g_hide_decorations)          if (g_hide_decorations)
1759                  mwm_hide_decorations(g_wnd);                  mwm_hide_decorations(g_wnd);
# Line 1874  xwin_toggle_fullscreen(void) Line 1893  xwin_toggle_fullscreen(void)
1893  }  }
1894    
1895  static void  static void
1896  handle_button_event(XEvent xevent, BOOL down)  handle_button_event(XEvent xevent, RD_BOOL down)
1897  {  {
1898          uint16 button, flags = 0;          uint16 button, flags = 0;
1899          g_last_gesturetime = xevent.xbutton.time;          g_last_gesturetime = xevent.xbutton.time;
1900            /* Reverse the pointer button mapping, e.g. in the case of
1901               "left-handed mouse mode"; the RDP session expects to
1902               receive physical buttons (true in mstsc as well) and
1903               logical button behavior depends on the remote desktop's own
1904               mouse settings */
1905            xevent.xbutton.button = g_pointer_log_to_phys_map[xevent.xbutton.button - 1];
1906          button = xkeymap_translate_button(xevent.xbutton.button);          button = xkeymap_translate_button(xevent.xbutton.button);
1907          if (button == 0)          if (button == 0)
1908                  return;                  return;
# Line 2165  xwin_process_events(void) Line 2190  xwin_process_events(void)
2190                                          XFreeModifiermap(g_mod_map);                                          XFreeModifiermap(g_mod_map);
2191                                          g_mod_map = XGetModifierMapping(g_display);                                          g_mod_map = XGetModifierMapping(g_display);
2192                                  }                                  }
2193    
2194                                    if (xevent.xmapping.request == MappingPointer)
2195                                    {
2196                                            xwin_refresh_pointer_map();
2197                                    }
2198    
2199                                  break;                                  break;
2200    
2201                                  /* clipboard stuff */                                  /* clipboard stuff */
# Line 2248  ui_select(int rdp_socket) Line 2279  ui_select(int rdp_socket)
2279          int n;          int n;
2280          fd_set rfds, wfds;          fd_set rfds, wfds;
2281          struct timeval tv;          struct timeval tv;
2282          BOOL s_timeout = False;          RD_BOOL s_timeout = False;
2283    
2284          while (True)          while (True)
2285          {          {
# Line 2292  ui_select(int rdp_socket) Line 2323  ui_select(int rdp_socket)
2323    
2324                                  /* Abort serial read calls */                                  /* Abort serial read calls */
2325                                  if (s_timeout)                                  if (s_timeout)
2326                                          rdpdr_check_fds(&rfds, &wfds, (BOOL) True);                                          rdpdr_check_fds(&rfds, &wfds, (RD_BOOL) True);
2327                                  continue;                                  continue;
2328                  }                  }
2329    
# Line 2300  ui_select(int rdp_socket) Line 2331  ui_select(int rdp_socket)
2331                  rdpsnd_check_fds(&rfds, &wfds);                  rdpsnd_check_fds(&rfds, &wfds);
2332  #endif  #endif
2333    
2334                  rdpdr_check_fds(&rfds, &wfds, (BOOL) False);                  rdpdr_check_fds(&rfds, &wfds, (RD_BOOL) False);
2335    
2336                  if (FD_ISSET(rdp_socket, &rfds))                  if (FD_ISSET(rdp_socket, &rfds))
2337                          return 1;                          return 1;
# Line 3219  ui_desktop_restore(uint32 offset, int x, Line 3250  ui_desktop_restore(uint32 offset, int x,
3250                  return;                  return;
3251    
3252          image = XCreateImage(g_display, g_visual, g_depth, ZPixmap, 0,          image = XCreateImage(g_display, g_visual, g_depth, ZPixmap, 0,
3253                               (char *) data, cx, cy, BitmapPad(g_display), cx * g_bpp / 8);                               (char *) data, cx, cy, g_bpp, 0);
3254    
3255          if (g_ownbackstore)          if (g_ownbackstore)
3256          {          {
# Line 3253  ui_end_update(void) Line 3284  ui_end_update(void)
3284    
3285    
3286  void  void
3287  ui_seamless_begin(BOOL hidden)  ui_seamless_begin(RD_BOOL hidden)
3288  {  {
3289          if (!g_seamless_rdp)          if (!g_seamless_rdp)
3290                  return;                  return;

Legend:
Removed from v.1365  
changed lines
  Added in v.1407

  ViewVC Help
Powered by ViewVC 1.1.26