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

ScrollPane isn't packed correctly in frame with menubar

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P2 P2
    • 1.1.7
    • s998u3, solaris_7u2, 1.1.4, 1.1.6
    • client-libs
    • b01
    • b01
    • generic, sparc
    • solaris_2.5.1, solaris_7, solaris_9
    • Not verified



        Name: paC48320 Date: 10/08/97


        1. Exact steps to reproduce the problem.
           Just compile the code below

        2. Java SOURCE CODE that demonstrates the problem, if possible.
        --------------------------------------------------

        import java.awt.*;
        import java.awt.event.*;

        public class MyFrame
        extends Frame
        implements ActionListener
        {
          public MyFrame(boolean withMenu)
          {
            super("MyFrame");

            MenuBar menubar;
            Menu fileMenu;
            MenuItem quit;
            ScrollPane sp;

            sp = new ScrollPane();
            sp.add(new Label("Label in ScrollPane"));

            this.setLayout(new BorderLayout());
            this.add(sp, "Center");
            this.add(new Label("Label in Frame"), "South");

            if(withMenu)
            {
              // Create the menubar and file menu. Tell the frame about it.
              menubar = new MenuBar();
              fileMenu = new Menu("File");
              quit = new MenuItem("Quit");
              quit.addActionListener(this);
              fileMenu.add(quit);
              menubar.add(fileMenu);
              this.setMenuBar(menubar);
            }
          }

          public static void main(String argv[])
          {
            // Frame without menu, packs correctly
            MyFrame f1 = new MyFrame(false);
            f1.pack();
            f1.show();
            // Frame with menu, doesn't pack right
            MyFrame f2 = new MyFrame(true);
            f2.pack();
            f2.show();
          }

          public void actionPerformed(ActionEvent e)
          {
            System.exit(0);
          }
        }

        --------------------------------------------------

        3. Exact text of any error message(s) that appeared.

        Warning:
            Name: VertScrollBar
            Class: XmScrollBar
            The specified slider size is less than 1
         
        Warning:
            Name: VertScrollBar
            Class: XmScrollBar
            The scrollbar page increment is less than 1.
         
        Warning:
            Name: HorScrollBar
            Class: XmScrollBar
            The specified slider size is less than 1
         
        Warning:
            Name: HorScrollBar
            Class: XmScrollBar
            The scrollbar page increment is less than 1.

        4. Any trace information
           none

        5. Include additional configuration information that you think is
           relevant to the problem.

        Java running on SparcStation 4/110 with 64 MB RAM
        SunOS 5.4 (Solaris 2.4)
        ======================================================================

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

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: