delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/2001/03/05/18:49:23

Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe AT sources DOT redhat DOT com>
List-Archive: <http://sources.redhat.com/ml/cygwin/>
List-Post: <mailto:cygwin AT sources DOT redhat DOT com>
List-Help: <mailto:cygwin-help AT sources DOT redhat DOT com>, <http://sources.redhat.com/ml/#faqs>
Sender: cygwin-owner AT sources DOT redhat DOT com
Delivered-To: mailing list cygwin AT sources DOT redhat DOT com
Message-Id: <4.3.2.7.2.20010305211847.024e2d60@mail.danbbs.dk>
X-Sender: degnbol AT mail DOT danbbs DOT dk
X-Mailer: QUALCOMM Windows Eudora Version 4.3.2
Date: Tue, 06 Mar 2001 00:28:18 +0100
To: Corinna Vinschen <cygwin AT cygwin DOT com>, Jason Tiller <jtiller AT sjm DOT com>
From: Gunnar Degnbol <degnbol AT danbbs DOT dk>
Subject: Re: Patch submission for AltGr handling
Cc: cygwin AT cygwin DOT com
In-Reply-To: <20010305194419.R1398@cygbert.vinschen.de>
References: <Pine DOT WNT DOT 4 DOT 32 DOT 0102271412560 DOT -519797 AT tiller2 DOT ventritex DOT com>
<Pine DOT WNT DOT 4 DOT 32 DOT 0102271412560 DOT -519797 AT tiller2 DOT ventritex DOT com>
Mime-Version: 1.0

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

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019