Patch submission for AltGr handling

Gunnar Degnbol degnbol@danbbs.dk
Mon Mar 5 15:29:00 GMT 2001


At 19:44 05-03-2001 +0100, Corinna Vinschen wrote:
>Hi Jason,
>
>we just talked on cygwin-developers about your patch.
>
>Could you please resubmit a patch which doesn't introduce
>another CYGWIN option but instead uses automatic recognition
>of the current keyboard setting? For example the expression
>
>if (PRIMARYLANGID (LOWORD (GetKeyboardLayout (0)) == LANG_ENGLISH)
>
>should work.
>
>Thanks,
>Corinna
This checks if any characters are produced using the altgr key (altgr is 
converted to ctrl+alt):

altgr = FALSE;
for (i = 32; i < 256; i++) {
     vk = VkKeyScan((char)i);
     if (vk != -1 && (vk & 0x600) == 0x600) { /* ctrl+alt */
         altgr = TRUE;
         break;
     }
}


Gunnar


--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple



More information about the Cygwin mailing list