-
Bug
-
Resolution: Fixed
-
P4
-
1.1.7, 1.2.1
-
beta
-
generic, sparc
-
generic, solaris_2.6
Name: tb29552 Date: 09/30/98
=20
/*
(1)
Depending on how the modifier keys are mapped in
X-Windows, java applications with hot-keys or
mnemonics may not work.
On Solaris, set your X-windows modifier mapping
by running the commands (in a shell):
xmodmap -e 'clear mod1' -e 'clear mod4'
xmodmap -e 'add mod1 =3D Meta_L Meta_R'
xmodmap -e 'add mod4 =3D Alt_L'
(This mapping of the Alt and Meta keys are not
unusual -> Java is not platform independent unless
this is correctly handled.)
Compile and run the attached java code. Note that
pressing any of the Meta keys is regarded by the
program as Meta+Alt, whereas pressing the Alt key
isn't recognized as a modifier key.
Try, also, to run a Swing application with
mnemonics, such as SwingSet. You won't be able to
use the mnemonics.
Now, change your X-windows modifier mapping by
running these commands:
xmodmap -e 'clear mod1' -e 'clear mod4'
xmodmap -e 'add mod1 =3D Alt_L'
xmodmap -e 'add mod4 =3D Meta_L Meta_R'
If you test the same java program with this
modifier mapping, you will get a correct
interpretation of the modifier keys.
This indicates that, keys mapped to mod1 are
assumed to be Alt modifiers, but the keys named
Meta_L and Meta_R are assumed to be Meta modifiers.
A working solution would obviously be to completely
ignore the X-Windows modifier mapping and just
map the key named Alt_L to Alt (just the way it
is done with the Meta_L and Meta_R keys).
(2)
*/
import java.awt.*;
import java.awt.event.*;
public class ModifierTest extends Frame implements KeyListener {
public ModifierTest() {
addWindowListener(new WindowAdapter() {=20
public void windowClosing(WindowEvent e) { System.exit(0); }
});
addKeyListener(this);
setSize(100, 100);
}
=20
public void keyPressed(KeyEvent e){
System.out.println(e);
}
public void keyReleased(KeyEvent e){
System.out.println(e);
}
public void keyTyped(KeyEvent e){
System.out.println(e);
}
public static void main(String[] args){
Frame f =3D new ModifierTest();
f.show();
}
}
(Review ID: 39711)
======================================================================
- relates to
-
JDK-1240516 (Solaris) Alt/Meta modifier keys are incorrectly hardwired to specific mod bits
-
- Closed
-