-
Bug
-
Resolution: Won't Fix
-
P4
-
None
-
1.2.0
-
generic
-
solaris_2.5.1
Solaris only:
Currently, the code for supporting the XIM status area for Motif text widget is in Frame and Dialog. This causes problems to support peered text components in JWindow which will not have the proper XIM status area support.
The following program (derived from 4172118 with TextField use) demonstrates the problem.
-- JTextFocus.java --
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class JTextFocus {
JWindow win;
JTextField tf1;
TextField tf2;
public JTextFocus() {
win = new JWindow();
tf1 = new JTextField("ABCDEFGH", 10);
tf2 = new TextField("12345678", 10);
win.getContentPane().setLayout(new FlowLayout());
win.getContentPane().add(tf1);
win.getContentPane().add(tf2);
win.pack();
win.show();
}
public static void main(String args[]) {
new JTextFocus();
}
}
Currently, the code for supporting the XIM status area for Motif text widget is in Frame and Dialog. This causes problems to support peered text components in JWindow which will not have the proper XIM status area support.
The following program (derived from 4172118 with TextField use) demonstrates the problem.
-- JTextFocus.java --
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class JTextFocus {
JWindow win;
JTextField tf1;
TextField tf2;
public JTextFocus() {
win = new JWindow();
tf1 = new JTextField("ABCDEFGH", 10);
tf2 = new TextField("12345678", 10);
win.getContentPane().setLayout(new FlowLayout());
win.getContentPane().add(tf1);
win.getContentPane().add(tf2);
win.pack();
win.show();
}
public static void main(String args[]) {
new JTextFocus();
}
}
- relates to
-
JDK-4172118 Independ JWindow can not support InputMethod of Chinese, Japanese, etc.
-
- Closed
-
-
JDK-4173150 On Solaris, caret is not displayed in SwingSet-plain text page(fcs_j)
-
- Closed
-