use xcb::x::{self, EnterNotifyEvent, FocusInEvent, MotionNotifyEvent}; use crate::{error::*, WM}; impl WM<'_> { pub(crate) fn handle_enter_notify(&self, e: EnterNotifyEvent) -> Result<()> { todo!() } pub(crate) fn handle_focus_in(&self, e: FocusInEvent) -> Result<()> { todo!() } pub(crate) fn handle_motion_notify(&self, e: MotionNotifyEvent) -> Result<()> { todo!() } }