-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
None
-
1.3.0
-
x86
-
windows_nt
Name: skT88420 Date: 09/13/99
Give AWT component focus. Iconify Frame, deiconify Frame,
component loses focus: Focus actually given to Frame.
This 'Feature' also seen with 1.3beta.
Requesting focus in windowActivated and windowDeiconified seems
totally broken. Possibly related to Bug 4109702.
Swing component tested (JTextField) does not exhibit this behaviour.
Note test was made to see if awt component in JFrame exhibited
same behaviour. It did.
Sample code:
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import javax.swing.*;
public class FocusTest extends Frame
{
JTextField tf1 = new JTextField();
TextField tf2 = new TextField();
public FocusTest ()
{
///getContentPane().setLayout( new FlowLayout());
setLayout( new FlowLayout());
tf1.setColumns( 10);
tf2.setColumns( 15);
add( new Label( " JTextField: "));
///getContentPane().add( tf1);
add( tf1);
add( new Label( " AWT TextField: "));
add( tf2);
addWindowListener( new FTWA());
}//End of constructor 1
class FTWA extends WindowAdapter
{
public void windowActivated( WindowEvent we)
{
tf1.requestFocus();
///tf2.requestFocus();
}
public void windowClosing( WindowEvent we)
{
setVisible( false);
dispose();
System.exit(0);
}
}//End of WindowAdapter
public static void main ( String Argz[])
{
FocusTest ft = new FocusTest();
ft.pack();
ft.show();
}
}//End of class
(Review ID: 95191)
======================================================================