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

Moving a JWindow does not generate a corresponding event

XMLWordPrintable

    • sparc
    • solaris_2.6


      Problems Description
      =====================
      1. Moving a Window does NOT generate a corresponding event
      2. Iconified Windows CANNOT be deiconified

      "The Unix operating system/window manager can affect any application's "frame"
      via the use of a right-click on that application, or it's icon in the icon box.
      The menu options available from the right-click include; Minimize(Iconify),
      Move, and Resize. Function keys can also be used to modify the frame (ALT-7 =
      MOVE). The Unix/X-Motif layer "should" communicate these actions to the
      C-Libraries of the Java Virtual Machine. The three main areas of concern are
      resize, iconification and move. In the case of resize, an action listener has
      been placed on the program. When the program is resized, the action causes the
      program to resize itself to the correct dimensions. This is currently in the
      build and working correctly.

      In the case of iconification, a listener also notifies Java that the Window has
      been inconified. However, there is currently no programatical way to deiconify
      a window. This is apparently a Java Bug. See Java bug 4061449 and 4037680.
      From the Java Developer Connect comments on this bug, it seems to be a Solaris
      limitation.

      In the case of move, it appears that the Java Virtual Machine never receives
      notification that the window has moved. (No Event is sent). Therefore, the
      window "thinks" it's still at position 0,0. This again appears to be a problem
      between the C libraries of Java and Solaris. (i.e., Java Bug)."

      Code Examples:
      A. TestIconifyMoveFrame.java
      This code example uses a JFrame and shows the correct (expected) behaviors:
      1. Moving the JFrame (pressing Alt-F7 with frame in focus, moving mouse to
      new location and clicking to complete move) generates a ComponentEvent and
      calls the componentMoved() method.
      2. Iconifying the JFrame (pressing Alt-F9 with frame in focus) generates a
      WindowEvent and calls the windowIconified() method.

      B. TestIconifyMoveWindow.java
      This code example uses a JWindow and does NOT exhibit the correct
      (expected) behaviors:
      1. Moving the JWindow (pressing Alt-F7 with window in focus, moving mouse
      to new location and clicking to complete move) does NOT generate a
      ComponentEvent!
      2. Iconifying the JWindow (pressing Alt-F9 with window in focus) generates
      a WindowEvent and calls the windowIconified() method, but there is NO
      method to set the state to deiconified as there is in JFrame!

      Special note: Tried to use an undecorated JFrame and saw similar and
      additional problems.

      These tests were performed under jdk1.3.1 and jdk1.4beta with same results.
      Platform: Ultra 60 running Solaris 2.6 (Behavior does differ slightly -
      more/different problems - on Ultra 5s).

      TestIconifyMoveFrame.java
      ==========================
      import java.awt.Point;
      import java.awt.event.ComponentAdapter;
      import java.awt.event.ComponentEvent;
      import java.awt.event.WindowAdapter;
      import java.awt.event.WindowEvent;
      import javax.swing.JFrame;


      public class TestIconifyMoveFrame extends JFrame
      {
          public static void main(String[] args)
          {
      final Point p = new Point(0, 0);

      final JFrame f = new JFrame("Test Frame");

      f.addComponentListener(new ComponentAdapter()
      {
      public void componentMoved(ComponentEvent e)
      {
      System.out.println("Component moved to " +
      f.getLocation());

      System.out.println("Moving component to " +
      p);

      f.setLocation(p);

      System.out.println("Component now located at " +
      f.getLocation());

      } // end componentMoved()

      } // end inner class
      );

      f.addWindowListener(new WindowAdapter()
      {
      public void windowClosing(WindowEvent e)
      {
      System.exit(1);

      } // end windowClosing()

      public void windowIconified(WindowEvent e)
      {
      System.out.println("Window iconified. Attempting to deiconify.");

      f.setState(JFrame.ICONIFIED);

      f.show();

      System.out.println("Window deiconified.");

      } // end windowIconified()

      } // end inner class
      );

      // To make it look like a window, we experimented with the decorations.
      // A simple move of the frame using the Alt-F7 key sequence causes the
      // undecorated frame to disappear, never to be seen again.
      // Uncomment the following line and try it.

      // f.setUndecorated(true);

      f.setSize(50, 50);

      f.show();

      System.out.println("Init: moving component to " +
      p);

      f.setLocation(p);

      System.out.println("Init: component now located at " +
      f.getLocation());

          } // end main()

      } // end TestIconifyMoveFrame




      TestIconifyMoveWindow.java
      ==========================
      import java.awt.Point;
      import java.awt.event.ComponentAdapter;
      import java.awt.event.ComponentEvent;
      import java.awt.event.WindowAdapter;
      import java.awt.event.WindowEvent;
      import javax.swing.JFrame;
      import javax.swing.JWindow;


      public class TestIconifyMoveWindow extends JWindow
      {
          public static void main(String[] args)
          {
      final Point p = new Point(0, 0);

      final JWindow w = new JWindow();

      w.addComponentListener(new ComponentAdapter()
      {
      public void componentMoved(ComponentEvent e)
      {
      System.out.println("Component moved to " +
      w.getLocation());

      System.out.println("Moving component to " +
      p);

      w.setLocation(p);

      System.out.println("Component now located at " +
      w.getLocation());

      } // end componentMoved()

      } // end inner class
      );

      w.addWindowListener(new WindowAdapter()
      {
      public void windowClosing(WindowEvent e)
      {
      System.exit(1);

      } // end windowClosing()

      public void windowIconified(WindowEvent e)
      {
      System.out.println("Window iconified. Attempting to deiconify.");

      // NO METHOD EXISTS IN JWINDOW TO DO THIS!!!
      // w.setState(JFrame.ICONIFIED);

      w.show();

      System.out.println("Window deiconified.");

      } // end windowIconified()

      } // end inner class
      );

      w.setSize(50, 50);

      w.show();

      System.out.println("Init: moving component to " +
      p);

      w.setLocation(p);

      System.out.println("Init: component now located at " +
      w.getLocation());

          } // end main()

      } // end TestIconifyMoveWindow

            rraysunw Richard Ray (Inactive)
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: