Implement ReceivedCharacter on win32

This commit is contained in:
Tomaka17 2014-07-27 18:39:22 +02:00
parent c67ab381bf
commit 754a6ef60f
2 changed files with 9 additions and 0 deletions

View file

@ -321,6 +321,14 @@ extern "stdcall" fn callback(window: ffi::HWND, msg: ffi::UINT,
0
},
ffi::WM_CHAR => {
use std::mem;
use events::ReceivedCharacter;
let chr: char = unsafe { mem::transmute(wparam) };
send_event(window, ReceivedCharacter(chr));
0
},
ffi::WM_MOUSEMOVE => {
use CursorPositionChanged;