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

Frame.setMenuBar() moves frame up on the screen after the third call.

XMLWordPrintable

    • 1.1.5
    • sparc
    • solaris_2.5
    • Verified



        Name: asC58863 Date: 08/12/97



        The java.awt.Frame.setMenuBar() method moves frame up on the screen after
        the third call.

        Set menubar twice (pressing the button) and the frame will move upward.

        Here is the test demonstrating the bug:

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

        class MenuBarTest extends Frame {
           int count = 1;
           MenuBar mb = null;

           MenuBarTest() {
                setLayout(new FlowLayout());
        Button b = new Button("Add new MenuBar");
        b.addActionListener(new choiceButton());
        add(b);
        createMenuBar();
           }

           void createMenuBar() {
                if(mb!=null) remove(mb);
        mb = new MenuBar();
        Menu m = new Menu("TestMenu"+count);
        m.add(new MenuItem("one "+count));
        m.add(new MenuItem("two "+count));
        count++;
        mb.add(m);
        setMenuBar(mb);
           }

           public static void main(String argv[]) {
               MenuBarTest f = new MenuBarTest();
               f.setSize(300, 300);
               f.setVisible(true);
           }

           class choiceButton implements ActionListener {
             public void actionPerformed(ActionEvent e) {
        String name = e.getActionCommand();
        if(name.equals("Add new MenuBar")) createMenuBar();
             }
           }
        }
           
        ---------Output from the test---------------------

        this test moves frame up on the screen
        --------------------------------------------------
           
        ======================================================================

              pyoung Paul Young (Inactive)
              asemidetsunw Alexei Semidetnov (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: