-
Bug
-
Resolution: Fixed
-
P4
-
1.1.8, 1.2.1
-
1.1.8
-
sparc
-
generic
-
Not verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2025781 | 1.2.2 | Das Das | P4 | Resolved | Fixed | 1.2.2 |
Name: dsC76792 Date: 03/11/99
###@###.###
Dialog doesn't get WINDOW_ACTIVATED events under OpenWindows.
As a result getFocusOwner() always returns null for Dialogs
and hasFocus() always returns false for Dialog's subcomponents.
The problem exists in the current 1.1.8 and 1.2.1 builds.
The test case:
-------------------------------------------------------------
import java.awt.*;
import java.awt.event.*;
public class Test {
public static void main(String[] argv) {
Frame f = new Frame("TestFrame");
Dialog d = new Dialog(f, "TestDialog");
f.setSize(200,200);
f.add(new TestButton());
f.addWindowListener(new myWindowListener());
f.setVisible(true);
d.setSize(200,200);
d.add(new TestButton());
d.addWindowListener(new myWindowListener());
d.setVisible(true);
}
}
class myWindowListener extends WindowAdapter {
public void windowActivated(WindowEvent e) {
System.out.println(e);
}
public void windowDeactivated(WindowEvent e) {
System.out.println(e);
}
}
class TestButton extends Button {
public TestButton() {
super("Test");
addActionListener(new TestListener());
}
class TestListener implements ActionListener {
public void actionPerformed(ActionEvent e) {
if (TestButton.this.getParent() instanceof Window) {
Window parent = (Window)TestButton.this.getParent();
System.err.println("parent=" + parent.getClass().getName() + ":\n" +
" parent.getFocusOwner()=" + parent.getFocusOwner() + "\n" +
" button.hasFocus()=" + TestButton.this.hasFocus());
}
}
}
}
---------------------------------------------------------------------
======================================================================
- backported by
-
JDK-2025781 Dialog doesn't get WINDOW_ACTIVATED events under OpenWindows
-
- Resolved
-
- relates to
-
JDK-4141060 Application exits when displaying "cross" X Displays
-
- Closed
-
-
JDK-4145976 Windows get "lost" and can not be recovered
-
- Closed
-
-
JDK-4073540 Frame doesn't get WindowActivated events
-
- Closed
-