/[rdesktop]/sourceforge.net/branches/seamlessrdp-branch/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/branches/seamlessrdp-branch/rdesktop/xwin.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1123 by astrand, Wed Mar 15 08:41:48 2006 UTC revision 1133 by astrand, Wed Mar 15 13:15:51 2006 UTC
# Line 56  typedef struct _seamless_window Line 56  typedef struct _seamless_window
56          unsigned long id;          unsigned long id;
57          int xoffset, yoffset;          int xoffset, yoffset;
58          int width, height;          int width, height;
59          unsigned int state;     /* normal/minimized/maximized */          int state;              /* normal/minimized/maximized. */
60          unsigned int desktop;          unsigned int desktop;
61          struct _seamless_window *next;          struct _seamless_window *next;
62  } seamless_window;  } seamless_window;
# Line 3044  ui_seamless_create_window(unsigned long Line 3044  ui_seamless_create_window(unsigned long
3044          Window wnd;          Window wnd;
3045          XSetWindowAttributes attribs;          XSetWindowAttributes attribs;
3046          XClassHint *classhints;          XClassHint *classhints;
3047            XSizeHints *sizehints;
3048          long input_mask;          long input_mask;
3049          seamless_window *sw, *sw_parent;          seamless_window *sw, *sw_parent;
3050    
# Line 3055  ui_seamless_create_window(unsigned long Line 3056  ui_seamless_create_window(unsigned long
3056          get_window_attribs(&attribs);          get_window_attribs(&attribs);
3057          attribs.override_redirect = False;          attribs.override_redirect = False;
3058    
3059          /* FIXME: Do not assume that -1, -1 is outside screen Consider          wnd = XCreateWindow(g_display, RootWindowOfScreen(g_screen), -1, -1, 1, 1, 0, g_depth,
            wait with showing the window until STATE and others have  
            been recieved. */  
         wnd = XCreateWindow(g_display, RootWindowOfScreen(g_screen), -1, -1, 1, 1, 0, 0,  
3060                              InputOutput, g_visual,                              InputOutput, g_visual,
3061                              CWBackPixel | CWBackingStore | CWOverrideRedirect | CWColormap |                              CWBackPixel | CWBackingStore | CWOverrideRedirect | CWColormap |
3062                              CWBorderPixel, &attribs);                              CWBorderPixel, &attribs);
3063    
3064          XStoreName(g_display, wnd, "rdesktop-seamless");          XStoreName(g_display, wnd, "SeamlessRDP");
3065    
3066          mwm_hide_decorations(wnd);          mwm_hide_decorations(wnd);
3067    
3068          classhints = XAllocClassHint();          classhints = XAllocClassHint();
3069          if (classhints != NULL)          if (classhints != NULL)
3070          {          {
3071                  classhints->res_name = classhints->res_class = "rdesktop";                  classhints->res_name = "rdesktop";
3072                    classhints->res_class = "SeamlessRDP";
3073                  XSetClassHint(g_display, wnd, classhints);                  XSetClassHint(g_display, wnd, classhints);
3074                  XFree(classhints);                  XFree(classhints);
3075          }          }
3076    
3077            /* WM_NORMAL_HINTS */
3078            sizehints = XAllocSizeHints();
3079            if (sizehints != NULL)
3080            {
3081                    sizehints->flags = USPosition;
3082                    XSetWMNormalHints(g_display, wnd, sizehints);
3083                    XFree(sizehints);
3084            }
3085    
3086          /* Set WM_TRANSIENT_FOR, if necessary */          /* Set WM_TRANSIENT_FOR, if necessary */
3087          if (parent)          if (parent)
3088          {          {
# Line 3092  ui_seamless_create_window(unsigned long Line 3100  ui_seamless_create_window(unsigned long
3100    
3101          XSelectInput(g_display, wnd, input_mask);          XSelectInput(g_display, wnd, input_mask);
3102    
         XMapWindow(g_display, wnd);  
   
3103          /* handle the WM_DELETE_WINDOW protocol. FIXME: When killing a          /* handle the WM_DELETE_WINDOW protocol. FIXME: When killing a
3104             seamless window, we could try to close the window on the             seamless window, we could try to close the window on the
3105             serverside, instead of terminating rdesktop */             serverside, instead of terminating rdesktop */
# Line 3106  ui_seamless_create_window(unsigned long Line 3112  ui_seamless_create_window(unsigned long
3112          sw->yoffset = 0;          sw->yoffset = 0;
3113          sw->width = 0;          sw->width = 0;
3114          sw->height = 0;          sw->height = 0;
3115            sw->state = SEAMLESSRDP_NOTYETMAPPED;
3116            sw->desktop = 0;
3117          sw->next = g_seamless_windows;          sw->next = g_seamless_windows;
3118          g_seamless_windows = sw;          g_seamless_windows = sw;
3119  }  }
# Line 3157  ui_seamless_move_window(unsigned long id Line 3165  ui_seamless_move_window(unsigned long id
3165    
3166          /* If we move the window in a maximized state, then KDE won't          /* If we move the window in a maximized state, then KDE won't
3167             accept restoration */             accept restoration */
3168          if (sw->state != SEAMLESSRDP_NORMAL)          switch (sw->state)
3169                  return;          {
3170                    case SEAMLESSRDP_MINIMIZED:
3171                    case SEAMLESSRDP_MAXIMIZED:
3172                            return;
3173            }
3174    
3175          /* FIXME: Perhaps use ewmh_net_moveresize_window instead */          /* FIXME: Perhaps use ewmh_net_moveresize_window instead */
3176          XMoveResizeWindow(g_display, sw->wnd, sw->xoffset, sw->yoffset, sw->width, sw->height);          XMoveResizeWindow(g_display, sw->wnd, sw->xoffset, sw->yoffset, sw->width, sw->height);
# Line 3193  ui_seamless_setstate(unsigned long id, u Line 3205  ui_seamless_setstate(unsigned long id, u
3205                  return;                  return;
3206          }          }
3207    
3208            if (sw->state == SEAMLESSRDP_NOTYETMAPPED)
3209            {
3210                    XMapWindow(g_display, sw->wnd);
3211            }
3212    
3213          sw->state = state;          sw->state = state;
3214    
3215          switch (state)          switch (state)

Legend:
Removed from v.1123  
changed lines
  Added in v.1133

  ViewVC Help
Powered by ViewVC 1.1.26