enableInputMethod(false) does not work in the TextArea and TextField on the linux platform (original) (raw)
Charles Lee littlee at linux.vnet.ibm.com
Tue Feb 7 01:17:29 PST 2012
- Previous message: Code Review Request for CR 7143070 - test/java/awt/print/PaintSetEnabledDeadlock/PaintSetEnabledDeadlock.java freezes on exit
- Next message: enableInputMethod(false) does not work in the TextArea and TextField on the linux platform
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi guys,
Given a simple test case below[1], enableInputMethod(false) does not work. We can always invoke input method. [1] public class MyAWTTest extends JFrame { Component c;
public MyAWTTest() {
super("Single Frame --- AWT Frame");
setLayout(new FlowLayout());
c = new TextArea("TextArea component(No IM)");
c.enableInputMethods(false);
c.setPreferredSize(new Dimension(400, 100));
add(c);
c = new TextField("TextField component(No IM)", 52);
c.enableInputMethods(false);
add(c);
setSize(850, 360);
setVisible(true);
setDefaultCloseOperation(EXIT_ON_CLOSE);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
new MyAWTTest();
}
});
}
}
Patch @ http://cr.openjdk.java.net/~littlee/OJDK-124/webrev.00/ <http://cr.openjdk.java.net/%7Elittlee/OJDK-124/webrev.00/>
The patch is mainly about:
- Add a new method in the ComponentAccessor which help to escape the package restraints. Please check the changes in Component and AWTAccessor.
- Remove the enableInputMethod(true) in the XTextAreaPeer and XTextFieldPeer and use areInputMethodEnabled to set jtext correctly. Please check the changes in XTextAreaPeer and XTextFieldPeer.
I know it may not be a beautiful fix, but anyone interests in it?
-- Yours Charles
- Previous message: Code Review Request for CR 7143070 - test/java/awt/print/PaintSetEnabledDeadlock/PaintSetEnabledDeadlock.java freezes on exit
- Next message: enableInputMethod(false) does not work in the TextArea and TextField on the linux platform
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]