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

REGRESSION: 1.4 Tooltip causes background window to come to the front

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • None
    • 1.4.1
    • client-libs



      Name: gm110360 Date: 09/16/2002


      FULL PRODUCT VERSION :
      java version "1.4.0"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-b92)
      Java HotSpot(TM) Client VM (build 1.4.0-b92, mixed mode)

      FULL OPERATING SYSTEM VERSION : Microsoft Windows 2000
      [Version 5.00.2195]


      A DESCRIPTION OF THE PROBLEM :
      When there are two frames that overlap, the frame that is
      in the background comes to the front when the mouse is
      placed on it if it has a tooltip. This problem seems to be
      specific to Windows 2000 and system look and feel.

      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      1.Run the attached program
      2.Click the button to bring up the second frame
      3.Put the mouse on the button to display the tooltip

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      If the tooltip is associated with a component that is not
      on top, then the tooltip should be clipped and then
      displayed. This is what happens on other platforms and with
      metal look and feel on Win2000. But, with native look and
      feel, the frame on top is pushed to the background and the
      entire tooltip is displayed.

      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      import javax.swing.*;
      import java.awt.event.*;
      import java.awt.BorderLayout;

      class ToolTipBugTest extends JFrame
      {
      JButton btn;

      public ToolTipBugTest()
      {
      super("Test");

      addWindowListener(new WindowAdapter()
      {
      public void windowClosing(WindowEvent e)
      {
      System.exit(0);
      }
      });

      btn = new JButton("Click Me!!!");

      btn.addActionListener(new ActionListener()
      {
      public void actionPerformed(ActionEvent e)
      {
      JFrame frame = new JFrame("SubFrame");

      frame.setBounds(350, 350, 100, 100);
      frame.setVisible(true);

      return;
      }
      });

      btn.setToolTipText("Click Me!!!");

      getContentPane().setLayout(null);
      getContentPane().add(btn, BorderLayout.NORTH);

      btn.setBounds(25, 25, 100, 25);

      setBounds(300, 300, 150, 125);
      setVisible(true);

      return;
      }

      public static void main(String args[])
      {
      try
      {
      UIManager.setLookAndFeel
      (UIManager.getSystemLookAndFeelClassName());
      }

      catch(Exception e)
      {}

      new ToolTipBugTest();

      return;
      }
      }
      ---------- END SOURCE ----------

      Release Regression From : hopper
      The above release value was the last known release where this
      bug was known to work. Since then there has been a regression.

      (Review ID: 164486)
      ======================================================================

            kizune Alexander Zuev
            gmanwanisunw Girish Manwani (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: