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

Different focus lost event types on different os

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P4 P4
    • None
    • 1.4.0
    • client-libs
    • sparc
    • windows_nt

      Name: apR10133 Date: 07/30/2002


      When we dispose the window the last focused component gets different
      types of focus lost event on different OS: the focus lost event is
      temporary on Windows and permanent on Solaris. The expected result is
      to get permanent focus lost event on both. See the testcase below.

      ------------------------- Test.java ---------------------------------
      import java.awt.*;
      import java.awt.event.*;

      public class test {

          static Frame fr;

          public static void main(String[] args) {
      fr = new Frame();
      Button bt = new Button("Test");
      fr.add(bt);
      bt.addFocusListener(new FocusAdapter() {
      public void focusLost(FocusEvent f) {
      System.out.println("isTemporary: "+f.isTemporary());
      }
      });
      fr.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
      //fr.setVisible(false);
      fr.dispose();
      }
      });
              fr.pack();
              fr.show();
          }
      }
      ---------------------------------------------------------------------
      ======================================================================

            son Oleg Sukhodolsky (Inactive)
            apikalev Andrey Pikalev
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: