-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.1.3
-
x86
-
windows_95
ingrid.yao@Eng 1997-08-01
test case require Oracle EWT class under /home/ingridy/Oracle/bug/b521288.zip.
=========================================================
If a top level window is activated the focus is not set back to the correct
lightweight Component if the previously active window is part of the same
application.
The problem occurs because when another top level window in the same
application is activated, a FOCUS_LOST event is sent with isTemporary false
when it should be true. This doesn't affect heavyweight Components because
they ignore this flag.
TEST CASE
---------
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class b521288 extends Applet
{
private TestFrame _mFrame1;
private TestFrame _mFrame2;
public b521288()
{
}
public void start()
{
_mFrame1 = new TestFrame("Frame 1");
_mFrame2 = new TestFrame("Frame 2");
_mFrame1.setBounds(100, 100, 300, 200);
_mFrame2.setBounds(125, 125, 300, 200);
}
}
class TestFrame extends Frame
{
private oracle.ewt.lwAWT.lwText.LWTextField _mTextField1;
private oracle.ewt.lwAWT.lwText.LWTextField _mTextField2;
TestFrame(String name)
{
super(name);
_mTextField1 = new oracle.ewt.lwAWT.lwText.LWTextField();
_mTextField2 = new oracle.ewt.lwAWT.lwText.LWTextField();
setLayout(new FlowLayout());
add(_mTextField1);
add(_mTextField2);
validate();
setVisible(true);
}
}
To Reproduce:
- Start the Applet
- Click on the second TextField on Frame 2, so that it has the focus
- Click on the titlebar of Frame 1
- Click on the titlebar of Frame 2
- The focus should return to the second TextField but it is no where
- Repeat but click on the title bar of another application instead of Frame 1
- The focus returns to the second TextField as it should
- duplicates
-
JDK-4059231 Frame fires a permanent focusLost event when the user resizes/moves/opens/closes
-
- Closed
-