blob: ea4f021e54d8b7742a0080805659118cf7c4b27a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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(())
}
}
|