-
Bug
-
Resolution: Won't Fix
-
P4
-
1.4.1
-
x86
-
linux
Name: jk109818 Date: 10/24/2002
FULL PRODUCT VERSION :
java version "1.4.1"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1-b21)
Java HotSpot(TM) Client VM (build 1.4.1-b21, mixed mode)
FULL OPERATING SYSTEM VERSION : SuSE 7.1, Linux 2.2.18, glib
1.2.8, i686
A DESCRIPTION OF THE PROBLEM :
A JMenuBar that uses explicitely the FlowLayout wraps the
JMenu titles into more than one row if the JFrame gets
resized. Nevertheless, only the first row is displayed, the
height of the JMenuBar is not adjusted, and the bottom
border is not displayed properly.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
1. Start the test program
2. Resize the window to different sizes
EXPECTED VERSUS ACTUAL BEHAVIOR :
All JMenu titles should be visible even if there are to many
to fit into one JMenuBar row. In that case, they should be
wrapped into as many rows as necessary. A little scrollpane
would be another option to restrict the height of the JMenuBar.
A similar bug is reported id 4099794. It is stated as
"closed, fixed", but only for NT and Solaris.
ERROR MESSAGES/STACK TRACES THAT OCCUR :
The program prints the JVM version.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import javax.swing.*;
import java.awt.*;
public class MenuBarTest extends JFrame
{
public static void main( String[] args )
{
System.out.println("JVM version is: " + System.getProperty("java.version"));
MenuBarTest bar = new MenuBarTest();
bar.setSize( 300, 300 );
bar.show();
}
public MenuBarTest()
{
try
{
initComponents();
}
catch ( Exception e )
{
e.printStackTrace();
}
}
private void initComponents()
throws Exception
{
final JPanel sbPanel = new JPanel();
this.getContentPane().add( sbPanel, BorderLayout.CENTER );
JMenuBar bar = new JMenuBar();
bar.setLayout(new FlowLayout());
JMenu menu1 = new JMenu("Program");
bar.add(menu1);
JMenu menu2 = new JMenu("Program");
bar.add(menu2);
JMenu menu3 = new JMenu("Program");
bar.add(menu3);
JMenu menu4 = new JMenu("Program");
bar.add(menu4);
JMenu menu5 = new JMenu("Program");
bar.add(menu5);
JMenu menu6 = new JMenu("Program");
bar.add(menu6);
JMenu menu7 = new JMenu("Program");
bar.add(menu7);
JMenu menu8 = new JMenu("Program");
bar.add(menu8);
this.setJMenuBar(bar);
}
}
---------- END SOURCE ----------
(Review ID: 166170)
======================================================================
FULL PRODUCT VERSION :
java version "1.4.1"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1-b21)
Java HotSpot(TM) Client VM (build 1.4.1-b21, mixed mode)
FULL OPERATING SYSTEM VERSION : SuSE 7.1, Linux 2.2.18, glib
1.2.8, i686
A DESCRIPTION OF THE PROBLEM :
A JMenuBar that uses explicitely the FlowLayout wraps the
JMenu titles into more than one row if the JFrame gets
resized. Nevertheless, only the first row is displayed, the
height of the JMenuBar is not adjusted, and the bottom
border is not displayed properly.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
1. Start the test program
2. Resize the window to different sizes
EXPECTED VERSUS ACTUAL BEHAVIOR :
All JMenu titles should be visible even if there are to many
to fit into one JMenuBar row. In that case, they should be
wrapped into as many rows as necessary. A little scrollpane
would be another option to restrict the height of the JMenuBar.
A similar bug is reported id 4099794. It is stated as
"closed, fixed", but only for NT and Solaris.
ERROR MESSAGES/STACK TRACES THAT OCCUR :
The program prints the JVM version.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import javax.swing.*;
import java.awt.*;
public class MenuBarTest extends JFrame
{
public static void main( String[] args )
{
System.out.println("JVM version is: " + System.getProperty("java.version"));
MenuBarTest bar = new MenuBarTest();
bar.setSize( 300, 300 );
bar.show();
}
public MenuBarTest()
{
try
{
initComponents();
}
catch ( Exception e )
{
e.printStackTrace();
}
}
private void initComponents()
throws Exception
{
final JPanel sbPanel = new JPanel();
this.getContentPane().add( sbPanel, BorderLayout.CENTER );
JMenuBar bar = new JMenuBar();
bar.setLayout(new FlowLayout());
JMenu menu1 = new JMenu("Program");
bar.add(menu1);
JMenu menu2 = new JMenu("Program");
bar.add(menu2);
JMenu menu3 = new JMenu("Program");
bar.add(menu3);
JMenu menu4 = new JMenu("Program");
bar.add(menu4);
JMenu menu5 = new JMenu("Program");
bar.add(menu5);
JMenu menu6 = new JMenu("Program");
bar.add(menu6);
JMenu menu7 = new JMenu("Program");
bar.add(menu7);
JMenu menu8 = new JMenu("Program");
bar.add(menu8);
this.setJMenuBar(bar);
}
}
---------- END SOURCE ----------
(Review ID: 166170)
======================================================================