-
Bug
-
Resolution: Fixed
-
P4
-
1.4.1, 5.0u4
-
beta
-
x86, sparc
-
solaris_9, windows_2000
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2126346 | 5.0u5 | Igor Kushnirskiy | P4 | Resolved | Fixed | b03 |
FULL PRODUCT VERSION :
java version "1.4.1_02"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_02-b06)
Java HotSpot(TM) Client VM (build 1.4.1_02-b06, mixed mode)
FULL OS VERSION :
Microsoft Windows 2000 [Version 5.00.2195]
A DESCRIPTION OF THE PROBLEM :
Most of the cases, the preferred size returned by JTextPane is correct. However it is incorrect for some specific strings that need to be displayed (occurs 20% of the time). In these cases the height that is returned correspond to the height needed to actually display the document PLUS an extra (blank) line.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Run the program.
EXPECTED VERSUS ACTUAL BEHAVIOR :
As you can see during the execution of the program, the string "Test Cediti po poiii" could be displayed on a single line. However the preferred size that is computed has height 34 instead of 18.
Run the program. You get the following output:
___Resizing to: 104,123
___Resizing to: 104,123
setting field to value>> Test
preferred size: java.awt.Dimension[width=27,height=18]
___Resizing to: 104,123
setting field to value>> Test Cediti po poiii
preferred size: java.awt.Dimension[width=105,height=34]
___Resizing to: 104,123
setting field to value>> Test Cediti po poiiix
preferred size: java.awt.Dimension[width=110,height=34]
___Resizing to: 104,123
setting field to value>>
preferred size: java.awt.Dimension[width=3,height=18]
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import javax.swing.*;
import javax.swing.border.LineBorder;
import javax.swing.text.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class DenisTest {
public static void main(String args[]) {
new DenisTest().bugWithTextPaneDemoPanel();
}
private Timer timer;
static JTextPane textPane = new JTextPane() {
public void setSize(Dimension d) {
System.out.println("___Resizing to: " + d);
super.setSize(d);
}
public void setBounds(int x, int y, int width, int height) {
System.out.println("___Resizing to: " + width + "," + height);
super.setBounds(x, y, width, height);
}
};
static private transient StyledDocument document;
static private transient Style style;
private void bugWithTextPaneDemoPanel() {
JFrame mainFrame = new JFrame("Test");
mainFrame.setSize(50, 150);
mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Container mainPanel = mainFrame.getContentPane();
mainPanel.add(textPane);
StyleContext context = new StyleContext();
document = new DefaultStyledDocument(context);
style = context.getStyle(StyleContext.DEFAULT_STYLE);
StyleConstants.setAlignment(style, StyleConstants.ALIGN_CENTER);
textPane.setDocument(document);
textPane.setBackground(Color.ORANGE);
textPane.setOpaque(true);
textPane.setBorder(new LineBorder(Color.DARK_GRAY));
//Create a timer.
timer = new Timer(ONE_SECOND, new ActionListener() {
String[] msgs = new String[]{"Test", "Test Cediti po poiii", "Test Cediti po poiiix", ""};
int count = 0;
public void actionPerformed(ActionEvent evt) {
String msg=msgs[count++];
testString(msg);
if (count >= msgs.length)
System.exit(0);
}
});
mainFrame.setVisible(true);
timer.start();
}
private void testString(String msg) {
System.out.println("\nsetting field to value>> "+msg);
try {
document.remove(0, document.getLength());
document.insertString(0, msg, style);
} catch (BadLocationException e) {
e.printStackTrace();
}
System.out.println("preferred size: " + textPane.getPreferredSize());
}
public final static int ONE_SECOND = 1000;
}
---------- END SOURCE ----------
(Review ID: 185011)
======================================================================
###@###.### 10/13/04 17:55 GMT
- backported by
-
JDK-2126346 JTextPane returns too large preferredSize in some specific cases
-
- Resolved
-
- duplicates
-
JDK-6264570 2124360 Fix was broken,(Space added after named anchors)
-
- Closed
-
- relates to
-
JDK-4813831 HTML in JEditorPane - contents of table cells do not wrap correctly
-
- Resolved
-
-
JDK-4829215 BasicTextUI.getMinimumSize needs to be speced out
-
- Open
-
-
JDK-4207472 Space added after named anchors
-
- Resolved
-
-
JDK-4446522 JTextArea.getPreferredSize() incorrect when line wrapping is used
-
- Resolved
-
-
JDK-6340106 REGRESSION: JTextPane - Selection for empty lines is not visible
-
- Closed
-
-
JDK-6431335 REGRESSION: No caret is shown on empty Textpanes with Synth Look and Feel
-
- Closed
-
-
JDK-4794439 ListCellRenderer in JList rendering HTML text calculates it own size wrong
-
- Closed
-