|
@@ -1,8 +1,11 @@
|
|
|
|
+#![allow(dead_code)]
|
|
|
|
+
|
|
use xcb;
|
|
use xcb;
|
|
use std::cell::RefCell;
|
|
use std::cell::RefCell;
|
|
use std::collections::HashMap;
|
|
use std::collections::HashMap;
|
|
use std::mem;
|
|
use std::mem;
|
|
use std::ops::Deref;
|
|
use std::ops::Deref;
|
|
|
|
+use std::sync::Arc;
|
|
|
|
|
|
macro_rules! atoms {
|
|
macro_rules! atoms {
|
|
( $( $x:ident ),* ) => {
|
|
( $( $x:ident ),* ) => {
|
|
@@ -23,7 +26,7 @@ pub struct WinClass {
|
|
}
|
|
}
|
|
|
|
|
|
pub struct Connection {
|
|
pub struct Connection {
|
|
- conn: xcb::Connection,
|
|
|
|
|
|
+ conn: Arc<xcb::Connection>,
|
|
default_screen: i32,
|
|
default_screen: i32,
|
|
cache: RefCell<HashMap<String, xcb::Atom>>
|
|
cache: RefCell<HashMap<String, xcb::Atom>>
|
|
}
|
|
}
|
|
@@ -32,8 +35,8 @@ impl Connection {
|
|
pub fn new() -> Option<Connection> {
|
|
pub fn new() -> Option<Connection> {
|
|
if let Ok((conn, default_screen)) = xcb::Connection::connect(None) {
|
|
if let Ok((conn, default_screen)) = xcb::Connection::connect(None) {
|
|
Some(Connection {
|
|
Some(Connection {
|
|
|
|
+ conn: Arc::new(conn),
|
|
default_screen: default_screen,
|
|
default_screen: default_screen,
|
|
- conn: conn,
|
|
|
|
cache: RefCell::new(HashMap::new())
|
|
cache: RefCell::new(HashMap::new())
|
|
})
|
|
})
|
|
}
|
|
}
|
|
@@ -42,6 +45,10 @@ impl Connection {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ pub fn clone_connection(&self) -> Arc<xcb::Connection> {
|
|
|
|
+ self.conn.clone()
|
|
|
|
+ }
|
|
|
|
+
|
|
pub fn atom(&self, name: &str) -> xcb::Atom {
|
|
pub fn atom(&self, name: &str) -> xcb::Atom {
|
|
let mut cache = self.cache.borrow_mut();
|
|
let mut cache = self.cache.borrow_mut();
|
|
if cache.contains_key(name) {
|
|
if cache.contains_key(name) {
|
|
@@ -83,14 +90,14 @@ impl Connection {
|
|
let cookie = xcb::get_property(&self.conn, false, win, self.atom(_NET_WM_NAME), self.atom(UTF8_STRING), 0, 100);
|
|
let cookie = xcb::get_property(&self.conn, false, win, self.atom(_NET_WM_NAME), self.atom(UTF8_STRING), 0, 100);
|
|
let reply = cookie.get_reply();
|
|
let reply = cookie.get_reply();
|
|
let value: &str = match reply {
|
|
let value: &str = match reply {
|
|
- Ok(reply) => unsafe { mem::transmute(reply.value()) },
|
|
|
|
|
|
+ Ok(reply) => unsafe { mem::transmute(reply.value::<u8>()) },
|
|
_ => ""
|
|
_ => ""
|
|
};
|
|
};
|
|
if value == "" {
|
|
if value == "" {
|
|
let cookie = xcb::get_property(&self.conn, false, win, xcb::ATOM_WM_NAME, xcb::ATOM_STRING, 0, 100);
|
|
let cookie = xcb::get_property(&self.conn, false, win, xcb::ATOM_WM_NAME, xcb::ATOM_STRING, 0, 100);
|
|
let reply = cookie.get_reply();
|
|
let reply = cookie.get_reply();
|
|
let value: &str = match reply {
|
|
let value: &str = match reply {
|
|
- Ok(reply) => unsafe { mem::transmute(reply.value()) },
|
|
|
|
|
|
+ Ok(reply) => unsafe { mem::transmute(reply.value::<u8>()) },
|
|
_ => ""
|
|
_ => ""
|
|
};
|
|
};
|
|
value.to_string()
|
|
value.to_string()
|
|
@@ -104,7 +111,7 @@ impl Connection {
|
|
let cookie = xcb::get_property(&self.conn, false, win, xcb::ATOM_WM_CLASS, xcb::ATOM_STRING, 0, 100);
|
|
let cookie = xcb::get_property(&self.conn, false, win, xcb::ATOM_WM_CLASS, xcb::ATOM_STRING, 0, 100);
|
|
let reply = cookie.get_reply();
|
|
let reply = cookie.get_reply();
|
|
let value: &str = match reply {
|
|
let value: &str = match reply {
|
|
- Ok(reply) => unsafe { mem::transmute(reply.value()) },
|
|
|
|
|
|
+ Ok(reply) => unsafe { mem::transmute(reply.value::<u8>()) },
|
|
_ => ""
|
|
_ => ""
|
|
};
|
|
};
|
|
let parts: Vec<&str> = value.split_terminator('\0').collect();
|
|
let parts: Vec<&str> = value.split_terminator('\0').collect();
|
|
@@ -157,8 +164,7 @@ impl<'a> Screen<'a> {
|
|
0
|
|
0
|
|
}
|
|
}
|
|
else {
|
|
else {
|
|
- let value: &xcb::Window = unsafe { mem::transmute(&(reply.value()[0])) };
|
|
|
|
- *value
|
|
|
|
|
|
+ reply.value::<u32>()[0]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|