/[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 566 by stargo, Mon Jan 19 23:45:26 2004 UTC revision 594 by n-ki, Tue Feb 3 13:55:12 2004 UTC
# Line 42  static int g_x_socket; Line 42  static int g_x_socket;
42  static Screen *g_screen;  static Screen *g_screen;
43  Window g_wnd;  Window g_wnd;
44  BOOL g_enable_compose = False;  BOOL g_enable_compose = False;
45  static GC g_gc;  static GC g_gc = NULL;
 static BOOL g_gc_initialized = False;  
46  static Visual *g_visual;  static Visual *g_visual;
47  static int g_depth;  static int g_depth;
48  static int g_bpp;  static int g_bpp;
# Line 51  static XIM g_IM; Line 50  static XIM g_IM;
50  static XIC g_IC;  static XIC g_IC;
51  static XModifierKeymap *g_mod_map;  static XModifierKeymap *g_mod_map;
52  static Cursor g_current_cursor;  static Cursor g_current_cursor;
53  static HCURSOR g_null_cursor;  static HCURSOR g_null_cursor = NULL;
54  static Atom g_protocol_atom, g_kill_atom;  static Atom g_protocol_atom, g_kill_atom;
55  static BOOL g_focused;  static BOOL g_focused;
56  static BOOL g_mouse_in_wnd;  static BOOL g_mouse_in_wnd;
# Line 64  static int g_red_shift_l, g_blue_shift_l Line 63  static int g_red_shift_l, g_blue_shift_l
63    
64  /* software backing store */  /* software backing store */
65  static BOOL g_ownbackstore;  static BOOL g_ownbackstore;
66  static Pixmap g_backstore;  static Pixmap g_backstore = NULL;
 static BOOL g_backstore_initialized = False;  
67    
68  /* Moving in single app mode */  /* Moving in single app mode */
69  static BOOL g_moving_wnd;  static BOOL g_moving_wnd;
# Line 733  ui_init(void) Line 731  ui_init(void)
731                  TrueColorVisual = True;                  TrueColorVisual = True;
732          }          }
733    
734          if ((g_server_bpp == 8) && ((! TrueColorVisual) || (g_depth <= 8)))          if ((g_server_bpp == 8) && ((!TrueColorVisual) || (g_depth <= 8)))
735          {          {
736                  /* we use a colourmap, so the default visual should do */                  /* we use a colourmap, so the default visual should do */
737                  g_visual = DefaultVisualOfScreen(g_screen);                  g_visual = DefaultVisualOfScreen(g_screen);
# Line 785  ui_init(void) Line 783  ui_init(void)
783    
784          if (!g_owncolmap)          if (!g_owncolmap)
785          {          {
786                  g_xcolmap = XCreateColormap(g_display,RootWindowOfScreen(g_screen),g_visual,AllocNone);                  g_xcolmap =
787                            XCreateColormap(g_display, RootWindowOfScreen(g_screen), g_visual,
788                                            AllocNone);
789                  if (g_depth <= 8)                  if (g_depth <= 8)
790                          warning("Screen depth is 8 bits or lower: you may want to use -C for a private colourmap\n");                          warning("Screen depth is 8 bits or lower: you may want to use -C for a private colourmap\n");
791          }          }
# Line 852  ui_deinit(void) Line 852  ui_deinit(void)
852          if (g_IM != NULL)          if (g_IM != NULL)
853                  XCloseIM(g_IM);                  XCloseIM(g_IM);
854    
855            if (g_null_cursor != NULL)
856                    ui_destroy_cursor(g_null_cursor);
857    
858          XFreeModifiermap(g_mod_map);          XFreeModifiermap(g_mod_map);
859    
860          if (g_ownbackstore)          if (g_ownbackstore)
# Line 888  ui_create_window(void) Line 891  ui_create_window(void)
891                                CWBackPixel | CWBackingStore | CWOverrideRedirect |                                CWBackPixel | CWBackingStore | CWOverrideRedirect |
892                                CWColormap | CWBorderPixel, &attribs);                                CWColormap | CWBorderPixel, &attribs);
893    
894          if ( ! g_gc_initialized )          if (g_gc == NULL)
         {  
895                  g_gc = XCreateGC(g_display, g_wnd, 0, NULL);                  g_gc = XCreateGC(g_display, g_wnd, 0, NULL);
                 g_gc_initialized = True;  
         }  
896    
897          if ((g_ownbackstore) && (! g_backstore_initialized))          if ((g_ownbackstore) && (g_backstore == NULL))
898          {          {
899                  g_backstore =                  g_backstore = XCreatePixmap(g_display, g_wnd, g_width, g_height, g_depth);
                         XCreatePixmap(g_display, g_wnd, g_width, g_height,  
                                       g_depth);  
900    
901                  /* clear to prevent rubbish being exposed at startup */                  /* clear to prevent rubbish being exposed at startup */
902                  XSetForeground(g_display, g_gc, BlackPixelOfScreen(g_screen));                  XSetForeground(g_display, g_gc, BlackPixelOfScreen(g_screen));
903                  XFillRectangle(g_display, g_backstore, g_gc, 0, 0, g_width, g_height);                  XFillRectangle(g_display, g_backstore, g_gc, 0, 0, g_width, g_height);
                 g_backstore_initialized = True;  
904          }          }
905    
906          XStoreName(g_display, g_wnd, g_title);          XStoreName(g_display, g_wnd, g_title);
# Line 970  ui_create_window(void) Line 967  ui_create_window(void)
967          XSetWMProtocols(g_display, g_wnd, &g_kill_atom, 1);          XSetWMProtocols(g_display, g_wnd, &g_kill_atom, 1);
968    
969          /* create invisible 1x1 cursor to be used as null cursor */          /* create invisible 1x1 cursor to be used as null cursor */
970          g_null_cursor = ui_create_cursor(0, 0, 1, 1, null_pointer_mask, null_pointer_data);          if (g_null_cursor == NULL)
971                    g_null_cursor = ui_create_cursor(0, 0, 1, 1, null_pointer_mask, null_pointer_data);
972    
973          return True;          return True;
974  }  }
# Line 1273  xwin_process_events(void) Line 1271  xwin_process_events(void)
1271  int  int
1272  ui_select(int rdp_socket)  ui_select(int rdp_socket)
1273  {  {
1274          int n = (rdp_socket > g_x_socket) ? rdp_socket + 1 : g_x_socket + 1;          int n = (rdp_socket > g_x_socket) ? rdp_socket : g_x_socket;
1275          fd_set rfds, wfds;          fd_set rfds, wfds;
1276            struct timeval tv;
1277            BOOL s_timeout = False;
1278    
1279          while (True)          while (True)
1280          {          {
# Line 1293  ui_select(int rdp_socket) Line 1293  ui_select(int rdp_socket)
1293                  if (g_dsp_busy)                  if (g_dsp_busy)
1294                  {                  {
1295                          FD_SET(g_dsp_fd, &wfds);                          FD_SET(g_dsp_fd, &wfds);
1296                          n = (g_dsp_fd + 1 > n) ? g_dsp_fd + 1 : n;                          n = (g_dsp_fd > n) ? g_dsp_fd : n;
1297                  }                  }
1298  #endif  #endif
1299                    /* default timeout */
1300                    tv.tv_sec = 60;
1301                    tv.tv_usec = 0;
1302    
1303                  switch (select(n, &rfds, &wfds, NULL, NULL))                  /* add redirection handles */
1304                    rdpdr_add_fds(&n, &rfds, &wfds, &tv, &s_timeout);
1305    
1306                    n++;
1307    
1308                    switch (select(n, &rfds, &wfds, NULL, &tv))
1309                  {                  {
1310                          case -1:                          case -1:
1311                                  error("select: %s\n", strerror(errno));                                  error("select: %s\n", strerror(errno));
1312    
1313                          case 0:                          case 0:
1314                                    /* TODO: if tv.tv_sec just times out
1315                                     * we will segfault.
1316                                     * FIXME:
1317                                     */
1318                                    //s_timeout = True;
1319                                    //rdpdr_check_fds(&rfds, &wfds, (BOOL) True);
1320                                  continue;                                  continue;
1321                  }                  }
1322    
1323                    rdpdr_check_fds(&rfds, &wfds, (BOOL) False);
1324    
1325                  if (FD_ISSET(rdp_socket, &rfds))                  if (FD_ISSET(rdp_socket, &rfds))
1326                          return 1;                          return 1;
1327    

Legend:
Removed from v.566  
changed lines
  Added in v.594

  ViewVC Help
Powered by ViewVC 1.1.26