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

Swing popup menus get clipped when a browser is sized smaller than the applet

XMLWordPrintable

        Name: pa48320 Date: 02/22/2002

        Take the following code, compile it and display it in Internet Explorer. Press the button and you will get a memu. Resize the browser until there is a vertical scrollbar. Now press the buton again. You should see that the menu is clipped to the browser window. If it isn't clipped yet, just resize smaller. This happens in 1.4 as well.

        This is a problem for us because we embed java windows in our application and if the embedded window is scrolled in just this fashion, menus are cut off and unusable. There is a property that we are setting that forces the use of panels instead of lightweight panels, but it should still be able to detect this situation and use a window just like it does if the menu willextend over the bottom of the applet.
        public class AppletTest
        extends javax.swing.JApplet
        implements java.awt.event.ActionListener
        {
        javax.swing.JButton button1;

        public AppletTest()
        {
        try {
        javax.swing.UIManager.setLookAndFeel(javax.swing.UIManager.getSystemLookAndFeelClassName());
        }
        catch (Exception e) {
        e.printStackTrace();
        }
        }

        public void init()
        {
        super.init();
        try {
        javax.swing.JPanel __local2 = ((javax.swing.JPanel)getContentPane( ));
        __local2.setBounds( new java.awt.Rectangle( 0,2,600,398 ) );
        __local2.setLayout( null );
        __local2.setName( "null.contentPane" );
        __local2.setOpaque( false );
        button1 = new javax.swing.JButton( );
        button1.setBounds( new java.awt.Rectangle( 60,30,75,23 ) );
        button1.setName( "button1" );
        __local2.add( button1 );
        }
        catch (Exception e) {
        e.printStackTrace();
        }
        button1.addActionListener(this);
        showStatus("");
        }

        public void actionPerformed(java.awt.event.ActionEvent p0)
        {
        if (p0.getSource() != button1)
        {
        System.out.println("Beep!");
        }
        else
        {
        javax.swing.JPopupMenu menu = new javax.swing.JPopupMenu();
        addMenuItem(menu,"line 1");
        addMenuItem(menu,"line 2");
        addMenuItem(menu,"line 3");
        addMenuItem(menu,"line 4");
        addMenuItem(menu,"line 5");
        addMenuItem(menu,"line 6");
        addMenuItem(menu,"line 7");
        addMenuItem(menu,"line 8");
        addMenuItem(menu,"line 9");
        addMenuItem(menu,"line 10");
        addMenuItem(menu,"line 11");
        addMenuItem(menu,"line 12");
        addMenuItem(menu,"line 13");
        addMenuItem(menu,"line 14");
        addMenuItem(menu,"line 15");
        addMenuItem(menu,"line 16");
        menu.show(getContentPane(), button1.getX(), button1.getY());
        }
        }
        void addMenuItem(javax.swing.JPopupMenu menu, String text)
        {
        javax.swing.JMenuItem mi = new javax.swing.JMenuItem(text);
        menu.add(mi);
        mi.addActionListener(this);
        }

        }

        HTML file:
        <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
        <HTML>
        <HEAD>
        <TITLE>AppletTest</TITLE>
        </HEAD>
        <BODY>
        <SCRIPT LANGUAGE="JavaScript"><!--
        var _info = navigator.userAgent;
        var _ns = false;
        var _ie = (_info.indexOf("MSIE") > 0
             && _info.indexOf("Win") > 0
             && _info.indexOf("Windows 3.1") < 0);
        //--></SCRIPT>
        <COMMENT>
        <SCRIPT LANGUAGE="JavaScript1.1"><!--
            var _ns = (navigator.appName.indexOf("Netscape") >= 0
                      && ((_info.indexOf("Win") > 0
        && _info.indexOf("Win16") < 0
        && java.lang.System.getProperty("os.version").indexOf("3.5") < 0)
        || (_info.indexOf("Sun") > 0) || (_info.indexOf("Linux") > 0) ));
        //--></SCRIPT>
        </COMMENT>
        <SCRIPT LANGUAGE="JavaScript"><!--
        if (_ie == true) {
        document.writeln(" <OBJECT");
        document.writeln(" CLASSID=\"clsid:8AD9C840-044E-11D1-B3E9-00805F499D93\"");
        document.writeln(" CODEBASE=\"http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,0,0\"");
        document.writeln(" HEIGHT=400");
        document.writeln(" NAME=\"AppletTest\"");
        document.writeln(" WIDTH=600");
        document.writeln(" ID=\"AppletTest\"");
        document.writeln(" >");
        document.writeln(" <NOEMBED><XMP>");
        }
        else if (_ns == true) {
        document.writeln(" <EMBED");
        document.writeln(" PLUGINSPAGE=\"http://java.sun.com/products/plugin/1.3/plugin-install.html\"");
        document.writeln(" TYPE=\"application/x-java-applet;version=1.3\"");
        document.writeln(" HEIGHT=400");
        document.writeln(" NAME=\"AppletTest\"");
        document.writeln(" WIDTH=600");
        document.writeln(" CODE=\"AppletTest.class\"");
        document.writeln(" ><NOEMBED><XMP>");
        }
        //--></SCRIPT>
        <APPLET CODE="AppletTest.class" WIDTH=600 NAME="AppletTest" HEIGHT=400 ></XMP>
        <PARAM NAME="CODE" VALUE="AppletTest.class">
        </APPLET>
        </NOEMBED></EMBED></OBJECT>
        </BODY>
        </HTML>

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

              Unassigned Unassigned
              pallenba Peter Allenbach (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: