diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2015-09-23 13:09:36 +0200 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2015-09-23 13:09:36 +0200 |
commit | 3820d307a3f23828790e8a46a9c46849592104d6 (patch) | |
tree | 76bb26b4078ee344089c20f3288d047fc394d705 /src/api | |
parent | 0f9693bde4d67e77fa3691a2c9d3ed0151abec71 (diff) | |
parent | 6ece84f5c04f7b290bdd02cf40032f6e8444ccf6 (diff) | |
download | glutin-3820d307a3f23828790e8a46a9c46849592104d6.tar.gz glutin-3820d307a3f23828790e8a46a9c46849592104d6.zip |
Merge pull request #611 from vvuk/win32
fix up win32 support
Diffstat (limited to 'src/api')
-rw-r--r-- | src/api/win32/callback.rs | 6 | ||||
-rw-r--r-- | src/api/win32/mod.rs | 19 |
2 files changed, 21 insertions, 4 deletions
diff --git a/src/api/win32/callback.rs b/src/api/win32/callback.rs index da8e1a6..45de907 100644 --- a/src/api/win32/callback.rs +++ b/src/api/win32/callback.rs @@ -281,6 +281,12 @@ pub unsafe extern "system" fn callback(window: winapi::HWND, msg: winapi::UINT, 0 }, + x if x == *super::WAKEUP_MSG_ID => { + use events::Event::Awakened; + send_event(window, Awakened); + 0 + }, + _ => { user32::DefWindowProcW(window, msg, wparam, lparam) } diff --git a/src/api/win32/mod.rs b/src/api/win32/mod.rs index f580950..235fa2f 100644 --- a/src/api/win32/mod.rs +++ b/src/api/win32/mod.rs @@ -38,6 +38,10 @@ mod event; mod init; mod monitor; +lazy_static! { + static ref WAKEUP_MSG_ID: u32 = unsafe { user32::RegisterWindowMessageA("Glutin::EventID".as_ptr() as *const i8) }; +} + /// The Win32 implementation of the main `Window` object. pub struct Window { /// Main handle for the window. @@ -75,11 +79,15 @@ impl Drop for WindowWrapper { } #[derive(Clone)] -pub struct WindowProxy; +pub struct WindowProxy { + hwnd: winapi::HWND, +} impl WindowProxy { pub fn wakeup_event_loop(&self) { - unimplemented!() + unsafe { + user32::PostMessageA(self.hwnd, *WAKEUP_MSG_ID, 0, 0); + } } } @@ -189,7 +197,7 @@ impl Window { } pub fn create_window_proxy(&self) -> WindowProxy { - WindowProxy + WindowProxy { hwnd: self.window.0 } } /// See the docs in the crate root file. @@ -207,7 +215,10 @@ impl Window { } pub fn platform_display(&self) -> *mut libc::c_void { - unimplemented!() + // What should this return on win32? + // It could be GetDC(NULL), but that requires a ReleaseDC() + // to avoid leaking the DC. + ptr::null_mut() } pub fn platform_window(&self) -> *mut libc::c_void { |