diff options
author | ericm <ericm> | 2000-04-19 01:06:50 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-04-19 01:06:50 (GMT) |
commit | f7b076a54982678c409753c1acf6650bdda2b096 (patch) | |
tree | 21e83a6636d62a5d6f1449659e7debc92eaaadfe /generic/tkInt.h | |
parent | f00c2ef4f68bab03411a16e8e943090aca012e66 (diff) | |
download | tk-f7b076a54982678c409753c1acf6650bdda2b096.zip tk-f7b076a54982678c409753c1acf6650bdda2b096.tar.gz tk-f7b076a54982678c409753c1acf6650bdda2b096.tar.bz2 |
* win/tkWinPointer.c: Changed Mod2Mask in TkWinGetModifierState to
ALT_MASK, to fix some event problems [Bugs: 1160, 5088].
* win/tkWinX.c: Changed Mod2Mask in GetState to ALT_MASK, to fix
some event problems [Bugs: 1160, 5088].
* generic/tkInt.h: Moved definition of ALT_MASK and META_MASK here
so that it would be accessible from other modules than tkBind.c.
* generic/tkBind.c: Added code in BindEvent to check for ALT_MASK
and META_MASK in the event state field, as this field may not be
set up with the correct display modifier mask bits if the XEvent
structure was created by [event generate] or by the Windows X
emulation. [Bugs: 1160, 5088].
Diffstat (limited to 'generic/tkInt.h')
-rw-r--r-- | generic/tkInt.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h index 4e3b2f8..a944e38 100644 --- a/generic/tkInt.h +++ b/generic/tkInt.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: $Id: tkInt.h,v 1.22 2000/03/24 23:13:18 ericm Exp $ + * RCS: $Id: tkInt.h,v 1.23 2000/04/19 01:06:51 ericm Exp $ */ #ifndef _TKINT @@ -851,6 +851,15 @@ extern TkDisplay *tkDisplayList; #define EMBEDDED_APP_WANTS_FOCUS (NotifyNormal + 20) /* + * The following special modifier mask bits are defined, to indicate + * logical modifiers such as Meta and Alt that may float among the + * actual modifier bits. + */ + +#define META_MASK (AnyModifier<<1) +#define ALT_MASK (AnyModifier<<2) + +/* * Miscellaneous variables shared among Tk modules but not exported * to the outside world: */ |