Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4219344

Dialog doesn't get WINDOW_ACTIVATED events under OpenWindows

XMLWordPrintable

    • 1.1.8
    • sparc
    • generic
    • Not verified



        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());
                    }
                }
            }
        }
        ---------------------------------------------------------------------

        ======================================================================

              dassunw Das Das (Inactive)
              dassunw Das Das (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: