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

popup menu is going behind its parent frame when trying to select menu items

XMLWordPrintable

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

      Run the following test case using merlin build85.
      steps to reproduce:
      1. run the following test case with merlin build 85
      2. A window is displayed on the screen
      3. Make the mouse right click very close to the window edges.
      4. Now a popup menu is displayed.
      5. Try selecting any menu item. The popup menu goes behind the window (its parent.).
      The problem can be reproduced with swingset2 demo too.
      The problem occurs only on solaris.

      test case:
      -----------
      //file mypopup.java
      import javax.swing.*;
      import javax.swing.event.*;
      import java.awt.*;
      import java.awt.event.*;

      class mypopup extends JFrame
      {
         public static void main(String ss[])
         {
             mypopup s = new mypopup();
             s.setSize(400,400);
             s.setTitle("This is A Demo");
             JPopupMenu pp = new JPopupMenu("List");
             pp.add(new JMenuItem("Long Line for MenuItem1") );
             pp.add(new JMenuItem("Long Line for MenuItem2") );

             MouseListener popupListener = new PopupListener(pp);
             s.addMouseListener( popupListener);
             s.setVisible(true);
         }

      }

      class PopupListener extends MouseAdapter {
              JPopupMenu popup = null;
              PopupListener(JPopupMenu p)
              {
                 popup = p;
              }
              public void mousePressed(MouseEvent e) {
                  maybeShowPopup(e);
              }

              public void mouseReleased(MouseEvent e) {
                  maybeShowPopup(e);
              }

              private void maybeShowPopup(MouseEvent e) {
                  if (e.isPopupTrigger()) {
                      //if(e.getComponent().hasFocus() == true )
                      {
                              popup.show(e.getComponent(),
                                 e.getX(), e.getY());
                      }
                  }
              }
      }
      //test case ends

      ###@###.### 2001-11-19

            son Oleg Sukhodolsky (Inactive)
            hgodugusunw Harsha Godugu (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: