-
Bug
-
Resolution: Unresolved
-
P4
-
None
-
6
-
Cause Known
-
generic, x86
-
generic, windows_2000
Name: jk109818 Date: 02/03/2003
FULL PRODUCT VERSION :
1.4.1; Java HotSpot(TM) Client VM 1.4.1-b21; Sun Microsystems Inc.
FULL OPERATING SYSTEM VERSION :
Microsoft Windows 2000 [Version 5.00.2195]
A DESCRIPTION OF THE PROBLEM :
I have created a simple JFrame with BorderLayout with
JComboBox added to NORTH and JTextField to SOUTH. If the
JFrame is resized to the size that is lower than the size of
both (combo, textfield)components together those components
are overlayed. Then if you click on JTextField and move a
cursor via arrows the textfield text overdraw the combo
component.
See screenshot:
http://www.netbeans.org/issues/showattachment.cgi?attach_id=8758
Originally reported as:
http://www.netbeans.org/issues/show_bug.cgi?id=28350
The bug can be also reproduced with JDK 1.3.1_03
EXPECTED VERSUS ACTUAL BEHAVIOR :
Resizing of the frame should respect the minumum size of its
components.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import java.awt.BorderLayout;
import java.awt.Dimension;
public class Resizing extends javax.swing.JFrame {
private javax.swing.JTextField jTextField1;
private javax.swing.JComboBox jComboBox1;
public Resizing() {
initComponents();
}
private void initComponents() {
jComboBox1 = new javax.swing.JComboBox();
jTextField1 = new javax.swing.JTextField();
addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent evt) {
Resizing.this.exitForm(evt);
}
});
getContentPane().add(jComboBox1, java.awt.BorderLayout.NORTH);
jTextField1.setText("jTextField1");
getContentPane().add(jTextField1, java.awt.BorderLayout.SOUTH);
pack();
}
private void exitForm(java.awt.event.WindowEvent evt) {
System.exit(0);
}
public static void main(String args[]) {
new Resizing().show();
}
}
---------- END SOURCE ----------
(Review ID: 180699)
======================================================================
- duplicates
-
JDK-5074211 Rezising the internal frame causes components to overlap
-
- Closed
-
-
JDK-5005498 Rezising the internal frame causes components to overlap
-
- Closed
-