2017-08-06 61 views
0

我正在創建一個使用glutin的程序,並且我想提供一個命令行標誌來使窗口覆蓋重定向,以便它可以用作某些不支持桌面窗口的窗口管理器的桌面牆紙類型。如何使用glutin製作窗口覆蓋重定向?

我已經做了大量的研究,並設法將我認爲可以工作的一段代碼拼湊在一起,使用提供的來自glutin的xlib顯示和窗口。這裏是我現有的代碼:

unsafe { 
    use glutin::os::unix::WindowExt; 
    let x_connection = std::sync::Arc::<glutin::os::unix::x11::XConnection>::into_raw(display.gl_window().get_xlib_xconnection().unwrap()); 
    ((*x_connection).xlib.XChangeWindowAttributes)(
     display.gl_window().get_xlib_display().unwrap() as *mut glutin::os::unix::x11::ffi::Display, 
     display.gl_window().get_xlib_window().unwrap() as glutin::os::unix::x11::ffi::XID, 
     glutin::os::unix::x11::ffi::CWOverrideRedirect, 
     &mut glutin::os::unix::x11::ffi::XSetWindowAttributes { 
      background_pixmap: 0, 
      background_pixel: 0, 
      border_pixmap: 0, 
      border_pixel: 0, 
      bit_gravity: 0, 
      win_gravity: 0, 
      backing_store: 0, 
      backing_planes: 0, 
      backing_pixel: 0, 
      save_under: 0, 
      event_mask: 0, 
      do_not_propagate_mask: 0, 
      override_redirect: 1, 
      colormap: 0, 
      cursor: 0, 
     } 
    ); 
} 

它不給我任何錯誤,並編譯和運行良好的代碼的其餘部分,但它不會使窗口覆蓋重定向像我想。

回答

1

我想通了。覆蓋重定向只發生在窗口被映射時,所以如果我取消映射並重新映射,那麼它就可以工作!

這是現在的代碼:

unsafe { 
    use glutin::os::unix::WindowExt; 
    use glutin::os::unix::x11::XConnection; 
    use glutin::os::unix::x11::ffi::{Display, XID, CWOverrideRedirect, XSetWindowAttributes}; 
    let x_connection = std::sync::Arc::<XConnection>::into_raw(display.gl_window().get_xlib_xconnection().unwrap()); 
    let x_display = display.gl_window().get_xlib_display().unwrap() as *mut Display; 
    let x_window = display.gl_window().get_xlib_window().unwrap() as XID; 
    ((*x_connection).xlib.XChangeWindowAttributes)(
     x_display, 
     x_window, 
     CWOverrideRedirect, 
     &mut XSetWindowAttributes { 
      background_pixmap: 0, 
      background_pixel: 0, 
      border_pixmap: 0, 
      border_pixel: 0, 
      bit_gravity: 0, 
      win_gravity: 0, 
      backing_store: 0, 
      backing_planes: 0, 
      backing_pixel: 0, 
      save_under: 0, 
      event_mask: 0, 
      do_not_propagate_mask: 0, 
      override_redirect: 1, 
      colormap: 0, 
      cursor: 0, 
     } 
    ); 
    ((*x_connection).xlib.XUnmapWindow)(x_display, x_window); 
    ((*x_connection).xlib.XMapWindow)(x_display, x_window); 
}