summaryrefslogtreecommitdiff
path: root/src/keys.rs
blob: 6cf28a69a3191be0919fb65c7f6a011904c8e4d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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!()
    }
}