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