-
Bug
-
Resolution: Fixed
-
P4
-
1.2.2, 1.3.0
-
kestrel
-
generic, x86
-
generic, windows_nt, windows_2000
Name: mc57594 Date: 07/12/99
Reproduced with jdk1.2.2 on solaris 2.7
[chamness]
=============================================
Please use the following program for the test described below it:
import javax.swing.*;
import javax.swing.border.*;
import javax.swing.text.*;
import javax.swing.text.html.*;
import java.awt.event.*;
import java.awt.*;
import java.io.*;
class EditTest extends JFrame {
JEditorPane ep = null;
public EditTest() {
ep = new JEditorPane();
ep.setEditable(true);
ep.setContentType("text/html");
HTMLEditorKit kit = (HTMLEditorKit) ep.getEditorKit();
HTMLDocument doc = (HTMLDocument) kit.createDefaultDocument();
ep.setDocument( doc );
try {
String text = "<html><head><title>Sample Doc</title></head><body>This is a sentence with some text in it, which contains bold, underline and italic character attributes.<p></body></html>";
kit.read( new StringReader(text), doc, 0);
} catch ( Exception e ) {
e.printStackTrace();
}
getContentPane().setLayout(new BoxLayout(getContentPane(),
BoxLayout.Y_AXIS));
JPanel tp = new JPanel();
tp.setBorder(new EtchedBorder());
tp.add(ep);
getContentPane().add( tp );
// buttons
JPanel bp = new JPanel();
bp.setLayout(new FlowLayout());
bp.setBorder(new EtchedBorder());
getContentPane().add( bp );
String commands[] = {"font-bold","font-italic","font-underline",
"left-justify","center-justify","right-justify"};
Action as[] = kit.getActions();
for(int i=0; i< as.length; i++){
String s = (String)(as[i].getValue(Action.NAME));
for (int j=0; j<commands.length; j++)
if ( s.compareTo(commands[j]) == 0) {
JButton k = new JButton(s);
k.addActionListener( as[i]);
// k.addActionListener( new MyLinkAction("all", HTML.Tag.U, null) );
bp.add(k);
}
}
}
class MyLinkAction extends StyledEditorKit.StyledTextAction {
HTML.Tag tag;
SimpleAttributeSet attrSet;
String text;
/** Constructor, if there is a selection in the JEditorPane
@param name
@param _tag
@param _set */
MyLinkAction(String name, HTML.Tag _tag, SimpleAttributeSet _attrSet) {
super(name);
tag = _tag;
StyleSheet dss = ((HTMLDocument) ep.getDocument()).getStyleSheet();
Style rule = dss.getStyle("h1");
SimpleAttributeSet sas = new SimpleAttributeSet();
StyleConstants.setBold(sas, false);
_attrSet = sas;
attrSet = _attrSet;
}
/** Constructor, if there is no selection in the JEditorPane
@param name
@param _text
@param _tag
@param _set */
MyLinkAction(String name, String _text, HTML.Tag _tag,
SimpleAttributeSet _attrSet) {
super(name);
tag = _tag;
attrSet = _attrSet;
text = _text;
}
/** Inserts the html into the document.
@param e the event */
public void actionPerformed(ActionEvent ae) {
JEditorPane editor = ep;
if (editor != null && text == null) {
int offset = editor.getSelectionStart();
SimpleAttributeSet set = new SimpleAttributeSet();
set.addAttribute(tag, attrSet);
setCharacterAttributes(editor, set, false);
} else if (editor != null) {
HTMLDocument doc = (HTMLDocument)editor.getDocument();
int offset = editor.getSelectionStart();
int length = text.length();
StyledEditorKit k = getStyledEditorKit(editor);
MutableAttributeSet inputAttributes = k.getInputAttributes();
SimpleAttributeSet set = new SimpleAttributeSet();
set.addAttribute(tag, attrSet);
inputAttributes.addAttributes(set);
ActionEvent evt = new ActionEvent(editor, 0, text);
new DefaultEditorKit.InsertContentAction().actionPerformed(evt);
editor.select(offset, offset+length);
editor.select(offset,0);
}
// System.out.println(ep.dump());
}
}
public static void main (String args[]){
EditTest ct = new EditTest();
ct.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e){
System.exit(0);
}});
ct.setSize(500, 500);
ct.setVisible(true);
}
}
1. hightlight the text "bold, underline and italic" in the
test program
2. click the bold, italic and underline buttons respectively
3. hightlight the text "old, under" click the bold button
4. hightlight the text "line" click the bold button
I'm assuming the text "line" should have changed from bold to
regular weight text. This problem seems to only happen when
the mark of the highlight occurs between a boundary of text which
has the attribute turned off and the attribute turned on.
(Review ID: 85467)
======================================================================
Name: krT82822 Date: 10/12/99
orig synopsis: "wrong display of characters in a JTextPane on the screen and at printing"
Text cannot be bolded
if placed in a JTextPane with the Font Arial.
There is no error message, just no visible reaction.
The following example reproduces the bug in jdk1.2 and jdk1.3betha:
<<<<<<<<<<<<<<<<<<<<< snip >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.util.*;
import java.sql.*;
import java.awt.print.*;
import javax.swing.plaf.basic.*;
import javax.swing.*;
import javax.swing.text.*;
import javax.swing.event.*;
import javax.swing.border.*;
import javax.swing.text.rtf.*;
import javax.swing.undo.*;
public class TextExample extends JFrame implements Printable
{
protected String fontFamily = "Arial";
protected int fontSize = 11;
protected JTextPane textPane;
protected StyleContext styleContext;
protected DefaultStyledDocument doc;
protected StyledEditorKit kit;
protected JFileChooser fileChooser;
protected JToolBar toolBar;
protected JComboBox cbFonts;
protected JComboBox cbSizes;
protected JToggleButton boldButton;
protected JToggleButton italicButton;
protected String fontName = "";
protected String[] fontNames;
protected String[] fontSizes;
protected boolean update;
protected int startPos = -1;
protected int finishPos = -1;
public TextExample() {
super("Text Example");
setSize(600, 400);
textPane = new JTextPane();
kit = new StyledEditorKit();
textPane.setEditorKit(kit);
styleContext = new StyleContext();
doc = new DefaultStyledDocument(styleContext);
textPane.setDocument(doc);
JScrollPane ps = new JScrollPane(textPane);
getContentPane().add(ps, BorderLayout.CENTER);
JMenuBar menuBar = new JMenuBar();
// ************** file menu ***************************
JMenu mFile = new JMenu("File");
// menu item new
Action actionNew = new AbstractAction("New") {
public void actionPerformed(ActionEvent e) {
doc = new DefaultStyledDocument(styleContext);
textPane.setDocument(doc);
showAttributes(0);
}
};
JMenuItem item = mFile.add(actionNew);
// add menu item print
Action actionPrint = new AbstractAction("Print") {
public void actionPerformed(ActionEvent e) {
Thread runner = new Thread() {
public void run() {
printData();
}
};
runner.start();
}
};
item = mFile.add(actionPrint);
mFile.addSeparator();
// add menu item exit
Action actionExit = new AbstractAction("Exit") {
public void actionPerformed(ActionEvent e) {
System.exit(0);
}
};
item = mFile.add(actionExit);
menuBar.add(mFile);
setJMenuBar(menuBar);
// ************** tool bar for font adjustment ***************************
toolBar = new JToolBar();
GraphicsEnvironment ge = GraphicsEnvironment.
getLocalGraphicsEnvironment();
fontNames = ge.getAvailableFontFamilyNames();
//toolBar.addSeparator();
cbFonts = new JComboBox(fontNames);
cbFonts.setMaximumSize(cbFonts.getPreferredSize());
cbFonts.setEditable(true);
ActionListener lst = new ActionListener() {
public void actionPerformed(ActionEvent e) {
fontName = cbFonts.getSelectedItem().toString();
MutableAttributeSet attr = new SimpleAttributeSet();
StyleConstants.setFontFamily(attr, fontName);
setAttributeSet(attr);
textPane.grabFocus();
}
};
cbFonts.addActionListener(lst);
toolBar.add(cbFonts);
toolBar.addSeparator();
fontSizes = new String[] {"8", "9", "10", "11", "12", "14",
"16", "18", "20", "22", "24", "26", "28", "36", "48", "72"};
cbSizes = new JComboBox(fontSizes);
cbSizes.setMaximumSize(cbSizes.getPreferredSize());
cbSizes.setEditable(true);
lst = new ActionListener() {
public void actionPerformed(ActionEvent e) {
int newFontSize = 0;
try {
newFontSize = Integer.parseInt(cbSizes.
getSelectedItem().toString());
}
catch (NumberFormatException ex) { return; }
fontSize = newFontSize;
MutableAttributeSet attr = new SimpleAttributeSet();
StyleConstants.setFontSize(attr, fontSize);
setAttributeSet(attr);
textPane.grabFocus();
}
};
cbSizes.addActionListener(lst);
toolBar.add(cbSizes);
toolBar.addSeparator();
boldButton = new JToggleButton("bold");
lst = new ActionListener() {
public void actionPerformed(ActionEvent e) {
MutableAttributeSet attr = new SimpleAttributeSet();
StyleConstants.setBold(attr, boldButton.isSelected());
setAttributeSet(attr);
textPane.grabFocus();
}
};
boldButton.addActionListener(lst);
toolBar.add(boldButton);
toolBar.addSeparator();
italicButton = new JToggleButton("italic");
lst = new ActionListener() {
public void actionPerformed(ActionEvent e) {
MutableAttributeSet attr = new SimpleAttributeSet();
StyleConstants.setBold(attr, italicButton.isSelected());
setAttributeSet(attr);
textPane.grabFocus();
}
};
italicButton.addActionListener(lst);
toolBar.add(italicButton);
getContentPane().add(toolBar, BorderLayout.NORTH);
WindowListener wndCloser = new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
};
addWindowListener(wndCloser);
CaretListener caretLst = new CaretListener() {
public void caretUpdate(CaretEvent e) {
showAttributes(e.getDot());
}
};
textPane.addCaretListener(caretLst);
FocusListener focusLst = new FocusListener() {
public void focusGained(FocusEvent e) {
if (startPos>=0 && finishPos>=0)
if (textPane.getCaretPosition()==startPos) {
textPane.setCaretPosition(finishPos);
textPane.moveCaretPosition(startPos);
}
else
textPane.select(startPos, finishPos);
}
public void focusLost(FocusEvent e) {
startPos = textPane.getSelectionStart();
finishPos = textPane.getSelectionEnd();
}
};
textPane.addFocusListener(focusLst);
showAttributes(0);
setVisible(true);
}
protected void setAttributeSet(AttributeSet attr) {
setAttributeSet(attr, false);
}
protected void setAttributeSet(AttributeSet attr,
boolean setParagraphAttributes)
{
if (update)
return;
int xStart = textPane.getSelectionStart();
int xFinish = textPane.getSelectionEnd();
if (!textPane.hasFocus()) {
xStart = startPos;
xFinish = finishPos;
}
if (setParagraphAttributes)
doc.setParagraphAttributes(xStart,
xFinish - xStart, attr, false);
else if (xStart != xFinish)
doc.setCharacterAttributes(xStart,
xFinish - xStart, attr, false);
else {
MutableAttributeSet inputAttributes =
kit.getInputAttributes();
inputAttributes.addAttributes(attr);
}
}
protected void showAttributes(int p) {
update = true;
AttributeSet a = doc.getCharacterElement(p).
getAttributes();
String name = StyleConstants.getFontFamily(a);
if (!fontName.equals(name)) {
fontName = name;
cbFonts.setSelectedItem(name);
}
int size = StyleConstants.getFontSize(a);
if (fontSize != size) {
fontSize = size;
cbSizes.setSelectedItem(Integer.toString(fontSize));
}
boolean bold = StyleConstants.isBold(a);
if (bold != boldButton.isSelected())
boldButton.setSelected(bold);
boolean italic = StyleConstants.isItalic(a);
if (italic != italicButton.isSelected())
italicButton.setSelected(italic);
update = false;
}
public void printData() {
getJMenuBar().repaint();
try {
PrinterJob prnJob = PrinterJob.getPrinterJob();
prnJob.setPrintable(this);
if (!prnJob.printDialog())
return;
setCursor( Cursor.getPredefinedCursor(
Cursor.WAIT_CURSOR));
prnJob.print();
setCursor( Cursor.getPredefinedCursor(
Cursor.DEFAULT_CURSOR));
JOptionPane.showMessageDialog(this,
"Printing completed successfully", "Info",
JOptionPane.INFORMATION_MESSAGE);
}
catch (PrinterException e) {
e.printStackTrace();
System.err.println("Print error: "+e.toString());
}
}
public int print(Graphics pg, PageFormat pageFormat,
int pageIndex) throws PrinterException {
if(pageIndex != 0) return NO_SUCH_PAGE;
pg.translate((int)pageFormat.getImageableX(),
(int)pageFormat.getImageableY());
int wPage = (int)pageFormat.getImageableWidth();
int hPage = (int)pageFormat.getImageableHeight();
pg.setClip(0, 0, wPage, hPage);
// paint text on the pinter graphics context
textPane.paintAll(pg);
return PAGE_EXISTS;
}
public static void main(String argv[]) {
new TextExample();
}
// end of class TextExample
}
>>>>>>>>>>>>>>>>>>>>>>>>>>> snip <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
(Review ID: 96417)
======================================================================
- duplicates
-
JDK-4285372 events get lost under Windows 2000
-
- Closed
-