Attempt to fix the dead_key/special_key issue.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8259 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Matthias Melcher 2011-01-11 16:43:52 +00:00
parent 7ada14f3b7
commit b55ac81f51
1 changed files with 8 additions and 6 deletions

View File

@ -1068,12 +1068,14 @@ static LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPar
}
}
} else if ((lParam & (1<<31))==0){
//buffer[0] = 0;
//Fl::e_length = 0;
xchar u = (xchar) wParam;
// Fl::e_length = fl_unicode2utf(&u, 1, buffer);
Fl::e_length = fl_utf8fromwc(buffer, 1024, &u, 1);
buffer[Fl::e_length] = 0;
if ((lParam & (1<<24))==0) { // clear if dead key (always?)
xchar u = (xchar) wParam;
Fl::e_length = fl_utf8fromwc(buffer, 1024, &u, 1);
buffer[Fl::e_length] = 0;
} else { // set if "extended key" (never printable?)
buffer[0] = 0;
Fl::e_length = 0;
}
}
Fl::e_text = buffer;
if (lParam & (1<<31)) { // key up events.