aboutsummaryrefslogtreecommitdiff
path: root/src/dotwm.rs
blob: 248e96962ec4dc483df619e6e71433b2b269d85c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
// See LICENSE file for copyright and license details.

use x11::xlib;
use x11::xlib::{
    Display,
    XErrorEvent,
    Atom,
    XChangeProperty,
};

use safe_x11::{
    close_display,
    atom,
};

use safe_x11::window::{
    XWindow,
};
use desktop::Desktop;

use std::ptr;
use std::process::exit;
use std::mem::uninitialized;
use std::collections::HashMap;
use libc::c_int;
use libc::c_char;

#[allow(unused_variables)]
unsafe extern "C" fn error_handler(d: *mut Display, evptr: *mut XErrorEvent) -> c_int {
    println!("ERROR");
    let ev = ptr::read(evptr);
    if ev.error_code == xlib::BadAccess {
        println!("Another widnow manager is running :C");
        exit(1);
    }

    println!("Error code {:?}", ev.error_code);
    let mut buf: [i8; 1000] = [0i8; 1000];
    let bufptr = buf.as_mut_ptr();
    xlib::XGetErrorText(d, ev.error_code as c_int, bufptr as *mut c_char, 1000);
    let string = String::from_raw_parts(bufptr as *mut u8, 1000, 1000);
    println!("Error: {}", string);

    0
}

#[derive(Hash,Eq,PartialEq)]
pub enum WmAtom {
    Protocols,
    DeleteWindow,
}

#[derive(Hash,Eq,PartialEq)]
#[allow(enum_variant_names)]
pub enum NetAtom {
    NetSupported,
    NetFullscreen,
    NetWmState,
    NetActive,
}

/// State of the window manager.
pub struct DotWM {
    /// Reference to the X display.
    pub display: *mut Display,
    /// Check if the window manager needs to end.
    pub finish: bool,
    /// Vec holding atoms for ICCCM support
    pub wmatoms: HashMap<WmAtom, Atom>,
    /// Vec holding atoms for EWHM support
    pub netatoms: HashMap<NetAtom, Atom>,
    /// Number of the active desctop
    pub desktop_idx: usize,
    /// Desktops
    pub desktops: Vec<Desktop>,
}

/// `DotWM` state.
impl DotWM {
    /// Create a state of the Dot Window Manager
    pub fn new() -> DotWM {
        let d = unsafe { xlib::XOpenDisplay(0x0 as *const i8) };
        unsafe { xlib::XSetErrorHandler(Some(error_handler)) };

        // Add substructure notify mask
        let root = unsafe { xlib::XDefaultRootWindow(d) };

        unsafe {
            let mut attrs: xlib::XSetWindowAttributes = uninitialized();
            attrs.event_mask = xlib::SubstructureNotifyMask;
            xlib::XChangeWindowAttributes(d, root, xlib::CWEventMask, &mut attrs);
        }

        // Get the wmatoms
        let mut wmatoms = HashMap::new();
        wmatoms.insert(WmAtom::Protocols, atom(d, "WM_PROTOCOLS"));
        wmatoms.insert(WmAtom::DeleteWindow, atom(d, "WM_DELETE_WINDOW"));

        // Get the netatoms
        let mut netatoms = HashMap::new();
        netatoms.insert(NetAtom::NetSupported, atom(d, "_NET_SUPPORTED"));
        netatoms.insert(NetAtom::NetFullscreen, atom(d, "_NET_WM_STATE_FULLSCREEN"));
        netatoms.insert(NetAtom::NetWmState, atom(d, "_NET_ACTIVE_WINDOW"));
        netatoms.insert(NetAtom::NetActive, atom(d, "_NET_WM_STATE"));

        // Propagate EWHM support
        unsafe {
            let atomvec: Vec<&Atom> = netatoms.values().collect();
            let len: i32 = netatoms.len() as i32;
            let atomptr = atomvec.as_ptr();

            XChangeProperty(d, root, netatoms[&NetAtom::NetSupported], xlib::XA_ATOM,
                            32, xlib::PropModeReplace, atomptr as *const u8, len);
        }

        DotWM {
            display: d,
            finish: false,
            wmatoms: wmatoms,
            netatoms: netatoms,
            desktop_idx: 0,
            desktops: vec![
                Desktop::new(d, "main"),
                Desktop::new(d, "other")
            ],
        }
    }

    /// this should always return a desktop.
    pub fn current_desktop_mut(&mut self) -> &mut Desktop {
        self.desktops.get_mut(self.desktop_idx).unwrap()
    }

    pub fn current_desktop(&self) -> &Desktop {
        self.desktops.get(self.desktop_idx).unwrap()
    }
    
    /// Add a window to the current desktop
    pub fn add_window(&mut self, w: xlib::Window) {
        self.current_desktop_mut().add_window(w);
    }

    pub fn current_window(&self) -> Option<&XWindow> {
        let d = self.desktops.get(self.desktop_idx);
        if let Some(desktop) = d {
            desktop.current_window()
        } else {
            None
        }
    }

    pub fn current_window_mut(&mut self) -> Option<&mut XWindow> {
        let d = self.desktops.get_mut(self.desktop_idx);
        if let Some(desktop) = d {
            desktop.current_window_mut()
        } else {
            None
        }
    }

    pub fn remove_window(&mut self, w: xlib::Window) {
        //let iter = self.desktops.iter_mut();
        //for desktop in iter {
        //    desktop.remove_window(w);
        //}
        self.current_desktop_mut().remove_window(w);
    }

    pub fn change_focus_of(&mut self, idx: usize) {
        self.current_desktop_mut().change_focus_of(idx);
    }

    /// Find a given window and returns it's position on the window_list.
    pub fn window_idx(&self, w: xlib::Window) -> Option<usize> {
        self.current_desktop().window_idx(w)
    }

    pub fn find_window(&self, w: xlib::Window) -> Option<&XWindow> {
        self.current_desktop().find_window(w)
    }

    pub fn find_window_mut(&mut self, w: xlib::Window) -> Option<&mut XWindow> {
        self.current_desktop_mut().find_window_mut(w)
    }

    /// Focus the next window.
    ///
    /// There're 3 posibilities. There's no window, there's one window or there
    /// are more windows.
    pub fn focus_next(&mut self) {
        self.current_desktop_mut().focus_next();
    }

    pub fn x_geometries(&self) -> Vec<i32> {
        self.current_desktop().geometries().iter().map(|x| x.0).collect()
    }

    pub fn y_geometries(&self) -> Vec<i32> {
        self.current_desktop().geometries().iter().map(|x| x.1).collect()
    }

    pub fn change_desktop(&mut self,desktop: usize) {
        if desktop > self.desktops.len() {
            return;
        }

        if desktop == self.desktop_idx {
            return;
        }

        let new_desktop = &self.desktops[desktop];
        let old_desktop = &self.desktops[self.desktop_idx];

        new_desktop.show_windows();
        // let mut do_not_propagate: xlib::XSetWindowAttributes = unsafe { uninitialized() };
        // let root = root_window(self.display);
        // do_not_propagate.do_not_propagate_mask = xlib::SubstructureNotifyMask;
        // change_window_attributes(self.display, root, xlib::CWEventMask,
        //                          &mut do_not_propagate);

        old_desktop.hide_windows();
        // let mut root_mask: xlib::XSetWindowAttributes = unsafe { uninitialized() };
        // root_mask.event_mask = xlib::SubstructureRedirectMask|xlib::ButtonPressMask|xlib::SubstructureNotifyMask|xlib::PropertyChangeMask;
        // change_window_attributes(self.display, root, xlib::CWEventMask,
        //                          &mut root_mask);
        self.desktop_idx = desktop;
    }
}

impl Default for DotWM {
    fn default() -> Self {
        DotWM::new()
    }
}

impl Drop for DotWM {
    fn drop(&mut self) {
        close_display(self.display);
    }
}