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