diff options
author | Pierre Krieger <pierre.krieger1708@gmail.com> | 2015-03-10 10:29:07 +0100 |
---|---|---|
committer | Pierre Krieger <pierre.krieger1708@gmail.com> | 2015-03-10 10:29:07 +0100 |
commit | c61c33a833ebbf874885d3c48491f8307bffe68e (patch) | |
tree | 841976b471235813010fb65a4e540e607e04bb77 /src/win32 | |
parent | 277b66a70852661f7eb645e3e216c927eb94dffb (diff) | |
download | glutin-c61c33a833ebbf874885d3c48491f8307bffe68e.tar.gz glutin-c61c33a833ebbf874885d3c48491f8307bffe68e.zip |
Add set_cursor_position function
Diffstat (limited to 'src/win32')
-rw-r--r-- | src/win32/mod.rs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/win32/mod.rs b/src/win32/mod.rs index 8cb6d39..8ba5ed5 100644 --- a/src/win32/mod.rs +++ b/src/win32/mod.rs @@ -255,6 +255,25 @@ impl Window { pub fn hidpi_factor(&self) -> f32 { 1.0 } + + pub fn set_cursor_position(&self, x: i32, y: i32) -> Result<(), ()> { + let mut point = winapi::POINT { + x: x, + y: y, + }; + + unsafe { + if user32::ClientToScreen(self.window.0, &mut point) == 0 { + return Err(()); + } + + if user32::SetCursorPos(point.x, point.y) == 0 { + return Err(()); + } + } + + Ok(()) + } } pub struct PollEventsIterator<'a> { |