/[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 1137 by ossman_, Wed Mar 15 15:10:21 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 == 0x00000000) || (parent == 0xFFFFFFFF))
3088          {          {
3089                  sw_parent = seamless_get_window_by_id(parent);                  sw_parent = seamless_get_window_by_id(parent);
3090                  if (sw_parent)                  if (sw_parent)
# Line 3085  ui_seamless_create_window(unsigned long Line 3093  ui_seamless_create_window(unsigned long
3093                          warning("ui_seamless_create_window: No parent window 0x%lx\n", parent);                          warning("ui_seamless_create_window: No parent window 0x%lx\n", parent);
3094          }          }
3095    
3096            /* Handle popups without parents through some ewm hints */
3097            if (parent == 0xFFFFFFFF)
3098                    ewmh_set_window_popup(wnd);
3099    
3100          /* FIXME: Support for Input Context:s */          /* FIXME: Support for Input Context:s */
3101    
3102          get_input_mask(&input_mask);          get_input_mask(&input_mask);
# Line 3092  ui_seamless_create_window(unsigned long Line 3104  ui_seamless_create_window(unsigned long
3104    
3105          XSelectInput(g_display, wnd, input_mask);          XSelectInput(g_display, wnd, input_mask);
3106    
         XMapWindow(g_display, wnd);  
   
3107          /* handle the WM_DELETE_WINDOW protocol. FIXME: When killing a          /* handle the WM_DELETE_WINDOW protocol. FIXME: When killing a
3108             seamless window, we could try to close the window on the             seamless window, we could try to close the window on the
3109             serverside, instead of terminating rdesktop */             serverside, instead of terminating rdesktop */
# Line 3106  ui_seamless_create_window(unsigned long Line 3116  ui_seamless_create_window(unsigned long
3116          sw->yoffset = 0;          sw->yoffset = 0;
3117          sw->width = 0;          sw->width = 0;
3118          sw->height = 0;          sw->height = 0;
3119            sw->state = SEAMLESSRDP_NOTYETMAPPED;
3120            sw->desktop = 0;
3121          sw->next = g_seamless_windows;          sw->next = g_seamless_windows;
3122          g_seamless_windows = sw;          g_seamless_windows = sw;
3123  }  }
# Line 3157  ui_seamless_move_window(unsigned long id Line 3169  ui_seamless_move_window(unsigned long id
3169    
3170          /* 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
3171             accept restoration */             accept restoration */
3172          if (sw->state != SEAMLESSRDP_NORMAL)          switch (sw->state)
3173                  return;          {
3174                    case SEAMLESSRDP_MINIMIZED:
3175                    case SEAMLESSRDP_MAXIMIZED:
3176                            return;
3177            }
3178    
3179          /* FIXME: Perhaps use ewmh_net_moveresize_window instead */          /* FIXME: Perhaps use ewmh_net_moveresize_window instead */
3180          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 3209  ui_seamless_setstate(unsigned long id, u
3209                  return;                  return;
3210          }          }
3211    
3212            if (sw->state == SEAMLESSRDP_NOTYETMAPPED)
3213            {
3214                    XMapWindow(g_display, sw->wnd);
3215            }
3216    
3217          sw->state = state;          sw->state = state;
3218    
3219          switch (state)          switch (state)

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

  ViewVC Help
Powered by ViewVC 1.1.26