diff options
author | Eduard Bopp <eduard.bopp@aepsil0n.de> | 2015-01-25 12:06:50 +0100 |
---|---|---|
committer | Eduard Bopp <eduard.bopp@aepsil0n.de> | 2015-03-25 13:10:55 +0100 |
commit | 18f9bc44c9c71d6d368a9e9255c1288b85ae509a (patch) | |
tree | d12e82662ab3ceeabdc689a6c13eea180e7de384 /src/win32 | |
parent | 63d2cd263ee3e68118213ae5b8ba1326fc3ee03e (diff) | |
download | glutin-18f9bc44c9c71d6d368a9e9255c1288b85ae509a.tar.gz glutin-18f9bc44c9c71d6d368a9e9255c1288b85ae509a.zip |
Implement grabbing of the mouse pointer for X11
Contains new methods in the Window API that closely mirror the Xlib API. The
methods are left unimplemented for other platforms for now.
Diffstat (limited to 'src/win32')
-rw-r--r-- | src/win32/mod.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/win32/mod.rs b/src/win32/mod.rs index 07f76e8..6b90f65 100644 --- a/src/win32/mod.rs +++ b/src/win32/mod.rs @@ -256,6 +256,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 } |