-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
None
-
5.0
-
x86
-
windows_2000
Name: gm110360 Date: 04/12/2004
FULL PRODUCT VERSION :
java 1.5.0-beta-b32c
A DESCRIPTION OF THE PROBLEM :
When JSeparator is in a JMenubar, it paints horizontaly as if its weightx was set to maximum, when enlarging frame.
REGRESSION. Last worked in version tiger-beta
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Just try the code sample joined hereafter
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Just JMenubar behave as JToolbar for managing JSeparator. Surprisingly, the same code behave correctly with previous JDK (problem not encountered with 1.4.1)/
ACTUAL -
JMenubar seems to fill the available space and distributing along all JSeparator
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
/**
* Try the code without modification, then toggle commented lines (JToolbar/JMenubar)
* and look the result
*/
import java.awt.*;
import javax.swing.*;
public class demo extends JFrame {
public demo() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JToolBar toolbar = new JToolBar();
// JMenuBar toolbar = new JMenuBar();
toolbar.add(new JButton("One"));
toolbar.addSeparator();
// toolbar.add(new JSeparator());
toolbar.add(new JButton("Two"));
toolbar.addSeparator();
// toolbar.add(new JSeparator());
toolbar.add(new JButton("Three"));
toolbar.addSeparator();
// toolbar.add(new JSeparator());
toolbar.add(new JButton("Four"));
toolbar.add(new JSeparator());
// super.setJMenuBar(toolbar);
getContentPane().add(toolbar, BorderLayout.NORTH);
getContentPane().add(new JPanel(), BorderLayout.CENTER);
pack();
}
public static void main(String[] args) {
try {
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
} catch (Exception ex) {
ex.printStackTrace();
return;
}
demo test = new demo();
test.setVisible(true);
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
no found
(Incident Review ID: 246630)
======================================================================
FULL PRODUCT VERSION :
java 1.5.0-beta-b32c
A DESCRIPTION OF THE PROBLEM :
When JSeparator is in a JMenubar, it paints horizontaly as if its weightx was set to maximum, when enlarging frame.
REGRESSION. Last worked in version tiger-beta
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Just try the code sample joined hereafter
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Just JMenubar behave as JToolbar for managing JSeparator. Surprisingly, the same code behave correctly with previous JDK (problem not encountered with 1.4.1)/
ACTUAL -
JMenubar seems to fill the available space and distributing along all JSeparator
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
/**
* Try the code without modification, then toggle commented lines (JToolbar/JMenubar)
* and look the result
*/
import java.awt.*;
import javax.swing.*;
public class demo extends JFrame {
public demo() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JToolBar toolbar = new JToolBar();
// JMenuBar toolbar = new JMenuBar();
toolbar.add(new JButton("One"));
toolbar.addSeparator();
// toolbar.add(new JSeparator());
toolbar.add(new JButton("Two"));
toolbar.addSeparator();
// toolbar.add(new JSeparator());
toolbar.add(new JButton("Three"));
toolbar.addSeparator();
// toolbar.add(new JSeparator());
toolbar.add(new JButton("Four"));
toolbar.add(new JSeparator());
// super.setJMenuBar(toolbar);
getContentPane().add(toolbar, BorderLayout.NORTH);
getContentPane().add(new JPanel(), BorderLayout.CENTER);
pack();
}
public static void main(String[] args) {
try {
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
} catch (Exception ex) {
ex.printStackTrace();
return;
}
demo test = new demo();
test.setVisible(true);
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
no found
(Incident Review ID: 246630)
======================================================================