Merge pull request #227 from aepsil0n/grab-cursor

Implement grabbing of the mouse pointer for X11
This commit is contained in:
tomaka 2015-03-26 16:48:40 +01:00
commit d6ebaaaf5c
6 changed files with 120 additions and 0 deletions

View file

@ -255,6 +255,14 @@ impl Window {
unimplemented!()
}
pub fn grab_cursor(&self) -> Result<(), String> {
unimplemented!()
}
pub fn ungrab_cursor(&self) {
unimplemented!()
}
pub fn hidpi_factor(&self) -> f32 {
1.0
}