Trait redwm::x11::traits::X11Connection[][src]

pub trait X11Connection {
    fn handle_event(&mut self, event: Event) -> WmReply<()>;
fn scan(&mut self) -> WmReply<()>;
fn get_screen<'c>(&'c self) -> WmReply<&'c Screen>;
fn refresh(&mut self);
fn manage_window(
        &mut self,
        win: Window,
        goem: &GetGeometryReply
    ) -> WmReply<()>; }
Expand description

Functions for managing the X Connection

Required methods

Do all the pending work that was queued while handling some events

Implementors