/[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 1103 by astrand, Fri Mar 10 13:32:18 2006 UTC revision 1119 by astrand, Wed Mar 15 06:42:57 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 */
60            unsigned int desktop;
61          struct _seamless_window *next;          struct _seamless_window *next;
62  } seamless_window;  } seamless_window;
63  static seamless_window *g_seamless_windows = NULL;  static seamless_window *g_seamless_windows = NULL;
# Line 83  static XModifierKeymap *g_mod_map; Line 85  static XModifierKeymap *g_mod_map;
85  static Cursor g_current_cursor;  static Cursor g_current_cursor;
86  static HCURSOR g_null_cursor = NULL;  static HCURSOR g_null_cursor = NULL;
87  static Atom g_protocol_atom, g_kill_atom;  static Atom g_protocol_atom, g_kill_atom;
88    extern Atom g_net_wm_state_atom;
89    extern Atom g_net_wm_desktop_atom;
90  static BOOL g_focused;  static BOOL g_focused;
91  static BOOL g_mouse_in_wnd;  static BOOL g_mouse_in_wnd;
92  /* Indicates that:  /* Indicates that:
# Line 298  seamless_remove_window(seamless_window * Line 302  seamless_remove_window(seamless_window *
302  }  }
303    
304    
305    /* Move all windows except wnd to new desktop */
306    static void
307    seamless_all_to_desktop(Window wnd, unsigned int desktop)
308    {
309            seamless_window *sw;
310            for (sw = g_seamless_windows; sw; sw = sw->next)
311            {
312                    if (sw->wnd == wnd)
313                            continue;
314                    if (sw->desktop != desktop)
315                    {
316                            ewmh_move_to_desktop(sw->wnd, desktop);
317                            sw->desktop = desktop;
318                    }
319            }
320    }
321    
322    
323  static void  static void
324  mwm_hide_decorations(Window wnd)  mwm_hide_decorations(Window wnd)
325  {  {
# Line 1396  ui_init(void) Line 1418  ui_init(void)
1418                  g_IM = XOpenIM(g_display, NULL, NULL, NULL);                  g_IM = XOpenIM(g_display, NULL, NULL, NULL);
1419    
1420          xclip_init();          xclip_init();
1421            ewmh_init();
1422          if (g_seamless_rdp)          if (g_seamless_rdp)
1423                  seamless_init();                  seamless_init();
1424    
# Line 1903  xwin_process_events(void) Line 1926  xwin_process_events(void)
1926                                                            xevent.xexpose.width,                                                            xevent.xexpose.width,
1927                                                            xevent.xexpose.height, xevent.xexpose.x,                                                            xevent.xexpose.height, xevent.xexpose.x,
1928                                                            xevent.xexpose.y);                                                            xevent.xexpose.y);
1929                                            else
1930                                            {
1931                                                    error("Expose for unknown window 0x%lx\n",
1932                                                          xevent.xexpose.window);
1933                                            }
1934                                  }                                  }
1935    
1936                                  break;                                  break;
# Line 1933  xwin_process_events(void) Line 1961  xwin_process_events(void)
1961                                  break;                                  break;
1962                          case PropertyNotify:                          case PropertyNotify:
1963                                  xclip_handle_PropertyNotify(&xevent.xproperty);                                  xclip_handle_PropertyNotify(&xevent.xproperty);
1964                                    if (xevent.xproperty.window == g_wnd)
1965                                            break;
1966                                    if (xevent.xproperty.window == DefaultRootWindow(g_display))
1967                                            break;
1968    
1969                                    /* seamless */
1970                                    sw = seamless_get_window_by_wnd(xevent.xproperty.window);
1971                                    if (!sw)
1972                                            break;
1973    
1974                                    if ((xevent.xproperty.atom == g_net_wm_state_atom)
1975                                        && (xevent.xproperty.state == PropertyNewValue))
1976                                    {
1977                                            sw->state = ewmh_get_window_state(sw->wnd);
1978                                            seamless_send_state(sw->id, sw->state, 0);
1979                                    }
1980    
1981                                    if ((xevent.xproperty.atom == g_net_wm_desktop_atom)
1982                                        && (xevent.xproperty.state == PropertyNewValue))
1983                                    {
1984                                            sw->desktop = ewmh_get_window_desktop(sw->wnd);
1985                                            seamless_all_to_desktop(sw->wnd, sw->desktop);
1986                                    }
1987    
1988                                  break;                                  break;
1989                          case MapNotify:                          case MapNotify:
1990                                  if (!g_seamless_rdp)                                  if (!g_seamless_rdp)
# Line 3032  ui_seamless_create_window(unsigned long Line 3084  ui_seamless_create_window(unsigned long
3084          /* FIXME: Support for Input Context:s */          /* FIXME: Support for Input Context:s */
3085    
3086          get_input_mask(&input_mask);          get_input_mask(&input_mask);
3087            input_mask |= PropertyChangeMask;
3088    
3089          XSelectInput(g_display, wnd, input_mask);          XSelectInput(g_display, wnd, input_mask);
3090    
# Line 3058  void Line 3111  void
3111  ui_seamless_destroy_window(unsigned long id, unsigned long flags)  ui_seamless_destroy_window(unsigned long id, unsigned long flags)
3112  {  {
3113          seamless_window *sw;          seamless_window *sw;
         sw = seamless_get_window_by_id(id);  
3114    
3115            sw = seamless_get_window_by_id(id);
3116          if (!sw)          if (!sw)
3117          {          {
3118                  warning("ui_seamless_destroy_window: No information for window 0x%lx\n", id);                  warning("ui_seamless_destroy_window: No information for window 0x%lx\n", id);
# Line 3077  ui_seamless_move_window(unsigned long id Line 3130  ui_seamless_move_window(unsigned long id
3130          seamless_window *sw;          seamless_window *sw;
3131    
3132          sw = seamless_get_window_by_id(id);          sw = seamless_get_window_by_id(id);
   
3133          if (!sw)          if (!sw)
3134          {          {
3135                  warning("ui_seamless_move_window: No information for window 0x%lx\n", id);                  warning("ui_seamless_move_window: No information for window 0x%lx\n", id);
# Line 3099  ui_seamless_move_window(unsigned long id Line 3151  ui_seamless_move_window(unsigned long id
3151          sw->width = MIN(MIN(width, width + x), g_width - sw->xoffset);          sw->width = MIN(MIN(width, width + x), g_width - sw->xoffset);
3152          sw->height = MIN(MIN(height, height + y), g_height - sw->yoffset);          sw->height = MIN(MIN(height, height + y), g_height - sw->yoffset);
3153    
3154            /* If we move the window in a maximized state, then KDE won't
3155               accept restoration */
3156            if (sw->state != SEAMLESSRDP_NORMAL)
3157                    return;
3158    
3159          /* FIXME: Perhaps use ewmh_net_moveresize_window instead */          /* FIXME: Perhaps use ewmh_net_moveresize_window instead */
3160          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);
3161  }  }
# Line 3110  ui_seamless_settitle(unsigned long id, c Line 3167  ui_seamless_settitle(unsigned long id, c
3167          seamless_window *sw;          seamless_window *sw;
3168    
3169          sw = seamless_get_window_by_id(id);          sw = seamless_get_window_by_id(id);
3170            if (!sw)
3171            {
3172                    warning("ui_seamless_settitle: No information for window 0x%lx\n", id);
3173                    return;
3174            }
3175    
3176          XStoreName(g_display, sw->wnd, title);          XStoreName(g_display, sw->wnd, title);
3177  }  }
# Line 3121  ui_seamless_setstate(unsigned long id, u Line 3183  ui_seamless_setstate(unsigned long id, u
3183          seamless_window *sw;          seamless_window *sw;
3184    
3185          sw = seamless_get_window_by_id(id);          sw = seamless_get_window_by_id(id);
3186            if (!sw)
3187            {
3188                    warning("ui_seamless_setstate: No information for window 0x%lx\n", id);
3189                    return;
3190            }
3191    
3192            sw->state = state;
3193    
3194          switch (state)          switch (state)
3195          {          {
3196                  case SEAMLESSRDP_NORMAL:                  case SEAMLESSRDP_NORMAL:
3197                  case SEAMLESSRDP_MAXIMIZED:                  case SEAMLESSRDP_MAXIMIZED:
3198                          /* FIXME */                          ewmh_change_state(sw->wnd, state);
3199                          break;                          break;
3200                  case SEAMLESSRDP_MINIMIZED:                  case SEAMLESSRDP_MINIMIZED:
3201                            /* EWMH says: "if an Application asks to toggle _NET_WM_STATE_HIDDEN
3202                               the Window Manager should probably just ignore the request, since
3203                               _NET_WM_STATE_HIDDEN is a function of some other aspect of the window
3204                               such as minimization, rather than an independent state." Besides,
3205                               XIconifyWindow is easier. */
3206                          XIconifyWindow(g_display, sw->wnd, DefaultScreen(g_display));                          XIconifyWindow(g_display, sw->wnd, DefaultScreen(g_display));
3207                          break;                          break;
3208                  default:                  default:

Legend:
Removed from v.1103  
changed lines
  Added in v.1119

  ViewVC Help
Powered by ViewVC 1.1.26