mod.rs 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. extern crate xcb;
  2. mod ewmh;
  3. use comm;
  4. use comm::Channel;
  5. use config::Config;
  6. use std::thread;
  7. use std::time::Duration;
  8. pub fn wait_for<F>(f: F) -> xcb::Window where F: Fn() -> xcb::Window {
  9. loop {
  10. let w = f();
  11. if w == 0 {
  12. thread::sleep(Duration::from_millis(100));
  13. }
  14. else {
  15. return w;
  16. }
  17. }
  18. }
  19. pub fn wm(tx: &Channel, _config: &Config) {
  20. if let Ok((conn, screen_num)) = xcb::Connection::connect(None) {
  21. let ewmh = ewmh::connect(&conn, screen_num);
  22. let mut last_win = ewmh.get_active_window();
  23. comm::send(tx, "title", ewmh.get_window_name(last_win).as_ref());
  24. ewmh.watch(ewmh.root, true);
  25. ewmh.watch(last_win, true);
  26. let stalonetray = wait_for(|| ewmh.search_by_class("stalonetray"));
  27. let panel = wait_for(|| ewmh.search_by_name("__panel_top"));
  28. xcb::configure_window(&conn, stalonetray, &[(xcb::CONFIG_WINDOW_SIBLING as u16, panel), (xcb::CONFIG_WINDOW_STACK_MODE as u16, xcb::STACK_MODE_ABOVE)]);
  29. xcb::change_window_attributes(&conn, stalonetray, &[(xcb::CW_EVENT_MASK, xcb::EVENT_MASK_STRUCTURE_NOTIFY)]);
  30. conn.flush();
  31. loop {
  32. let event = conn.wait_for_event();
  33. match event {
  34. None => { break; }
  35. Some(event) => {
  36. match event.response_type() {
  37. xcb::PROPERTY_NOTIFY => {
  38. let prop_event: &xcb::PropertyNotifyEvent = xcb::cast_event(&event);
  39. if prop_event.atom() == ewmh._NET_ACTIVE_WINDOW {
  40. let new_win = ewmh.get_active_window();
  41. ewmh.watch(last_win, false);
  42. ewmh.watch(new_win, true);
  43. conn.flush();
  44. last_win = new_win;
  45. comm::send(tx, "title", ewmh.get_window_name(last_win).as_ref());
  46. }
  47. else if prop_event.atom() == ewmh._NET_WM_NAME {
  48. comm::send(tx, "title", ewmh.get_window_name(last_win).as_ref());
  49. }
  50. },
  51. xcb::CONFIGURE_NOTIFY => {
  52. let event: &xcb::ConfigureNotifyEvent = xcb::cast_event(&event);
  53. let spacer = format!("%{{O{}}}", event.width()+5);
  54. comm::send(tx, "spacer", spacer.as_ref());
  55. },
  56. _ => ()
  57. }
  58. }
  59. }
  60. }
  61. } else {
  62. println!("Could not connect to X!");
  63. }
  64. }