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

pub trait HandleEvent: ManageWindows {
    fn handle_unmap_notify(&mut self, event: UnmapNotifyEvent) -> WmReply<()>;
fn handle_map_request(&mut self, event: MapRequestEvent) -> WmReply<()>;
fn handle_configure_request(
        &mut self,
        event: ConfigureRequestEvent
    ) -> WmReply<()>;
fn handle_expose(&mut self, event: ExposeEvent);
fn handle_enter(&mut self, event: EnterNotifyEvent) -> WmReply<()>;
fn handle_button_press(&mut self, event: ButtonPressEvent);
fn handle_button_release(
        &mut self,
        event: ButtonReleaseEvent
    ) -> WmReply<()>;
fn handle_motion_notify(&mut self, event: MotionNotifyEvent) -> WmReply<()>; }
Expand description

Functions for handling events

Required methods

Implementors