summaryrefslogtreecommitdiff
path: root/src/focus.rs
blob: d2b1f10cf917106e353f821747b1a3d822cde7cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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!()
    }
}