use crate::{error::*, WM}; use xcb::x::{KeyPressEvent, MappingNotifyEvent}; impl WM<'_> { pub(crate) fn handle_key_press(&mut self, e: KeyPressEvent) -> Result<()> { todo!() } pub(crate) fn handle_mapping_notify(&mut self, e: MappingNotifyEvent) -> Result<()> { todo!() } }