/[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 1226 by astrand, Wed Apr 12 06:47:24 2006 UTC revision 1246 by stargo, Tue Jul 11 17:22:24 2006 UTC
# Line 1314  calculate_mask_weight(uint32 mask) Line 1314  calculate_mask_weight(uint32 mask)
1314  }  }
1315    
1316  static BOOL  static BOOL
1317  select_visual()  select_visual(int screen_num)
1318  {  {
1319          XPixmapFormatValues *pfm;          XPixmapFormatValues *pfm;
1320          int pixmap_formats_count, visuals_count;          int pixmap_formats_count, visuals_count;
# Line 1340  select_visual() Line 1340  select_visual()
1340    
1341          /* Search for best TrueColor visual */          /* Search for best TrueColor visual */
1342          template.class = TrueColor;          template.class = TrueColor;
1343          vmatches = XGetVisualInfo(g_display, VisualClassMask, &template, &visuals_count);          template.screen = screen_num;
1344            vmatches = XGetVisualInfo(g_display, VisualClassMask | VisualScreenMask, &template, &visuals_count);
1345          g_visual = NULL;          g_visual = NULL;
1346          g_no_translate_image = False;          g_no_translate_image = False;
1347          g_compatible_arch = False;          g_compatible_arch = False;
# Line 1545  ui_init(void) Line 1546  ui_init(void)
1546          g_screen = ScreenOfDisplay(g_display, screen_num);          g_screen = ScreenOfDisplay(g_display, screen_num);
1547          g_depth = DefaultDepthOfScreen(g_screen);          g_depth = DefaultDepthOfScreen(g_screen);
1548    
1549          if (!select_visual())          if (!select_visual(screen_num))
1550                  return False;                  return False;
1551    
1552          if (g_no_translate_image)          if (g_no_translate_image)
# Line 3473  ui_seamless_destroy_window(unsigned long Line 3474  ui_seamless_destroy_window(unsigned long
3474  }  }
3475    
3476    
3477    void
3478    ui_seamless_destroy_group(unsigned long id, unsigned long flags)
3479    {
3480            seamless_window *sw, *sw_next;
3481    
3482            if (!g_seamless_active)
3483                    return;
3484    
3485            for (sw = g_seamless_windows; sw; sw = sw_next)
3486            {
3487                    sw_next = sw->next;
3488    
3489                    if (sw->group->id == id)
3490                    {
3491                            XDestroyWindow(g_display, sw->wnd);
3492                            sw_remove_window(sw);
3493                    }
3494            }
3495    }
3496    
3497    
3498  void  void
3499  ui_seamless_move_window(unsigned long id, int x, int y, int width, int height, unsigned long flags)  ui_seamless_move_window(unsigned long id, int x, int y, int width, int height, unsigned long flags)
3500  {  {

Legend:
Removed from v.1226  
changed lines
  Added in v.1246

  ViewVC Help
Powered by ViewVC 1.1.26