[PyOpenGL-Devel] [ pyopengl-Bugs-526197 ] control key doesnt work with TAB key
Brought to you by:
mcfletch
|
From: <no...@so...> - 2002-12-28 04:52:17
|
Bugs item #526197, was opened at 2002-03-05 19:16 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105988&aid=526197&group_id=5988 Category: GLUT Group: v2.0 >Status: Pending Resolution: None >Priority: 3 Submitted By: Sean Riley (mrriley) >Assigned to: Nobody/Anonymous (nobody) Summary: control key doesnt work with TAB key Initial Comment: it appears that no keyDown callback is made when the TAB key is pressed while the CONTROL key is down. the callback was setup with: glutKeyboardFunc(self.onKeyDown) and it works in other cases (such as the TAB key alone), but self.onKeyDown is not called when the CONTROL key is down and the TAB key is pressed. ---------------------------------------------------------------------- >Comment By: Mike C. Fletcher (mcfletch) Date: 2002-12-27 23:52 Message: Logged In: YES user_id=34901 I've marked this pending as there doesn't appear to be anything we can do save if someone comes up with a work-around. ---------------------------------------------------------------------- Comment By: Mike C. Fletcher (mcfletch) Date: 2002-05-27 06:10 Message: Logged In: YES user_id=34901 Reading the docs for glutKeyboardFunc, I don't think this is supposed to work with GLUT, is it? The docs imply that only when an ascii character would be generated is there a callback generated. ctrl-tab doesn't likely generate an ascii code as far as GLUT is concerned, so it likely won't get reported (and glutSpecialFunc doesn't seem to be able to catch a tab key either). Don't know what to suggest, but don't see this as being a problem with PyOpenGL itself (unless someone has a better argument). ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105988&aid=526197&group_id=5988 |