Recently I have been working on a Java text editor project and I would like to use a JTextPane
to replace the old JTextArea
in order to implement syntax highlighting. However, a JTextPane
lacks methods in JTextArea
(such as append()
, getLineStartOffset()
etc) and I want to reimplement them in my class MyTextPane
(a sub-class of JTextPane
) but have run into troubles.
My current code (only a small self-contained part):
import java.awt.*;
import javax.swing.*;
import javax.swing.text.*;
public class MyTextPane extends JTextPane
{
public MyTextPane()
{
super();
}
public void append(String text)
{
try
{
Document doc = this.getDocument();
doc.insertString(doc.getLength(),text,null);
}
catch (BadLocationException ex)
{
//must succeed
throw new InternalError(ex.getMessage());
}
}
public void insert(String text, int pos)
{
try
{
this.getStyledDocument().insertString(pos,text,null);
}
catch (BadLocationException ex)
{
throw new IllegalArgumentException(ex);
}
}
public void replaceRange(String str, int start, int end)
{
try
{
Document doc = this.getDocument();
doc.remove(start,end-start);
doc.insertString(start,str,null);
}
catch (BadLocationException ex)
{
throw new IllegalArgumentException(ex);
}
}
public void setLineWrap(boolean isLineWrap)
{
/*
* implements later
*/
}
public boolean getLineWrap()
{
/*
* implements later
*/
return true;
}
public void setWrapStyleWord(boolean isWrapStyleWord)
{
/*
* implements later
*/
}
public boolean getWrapStyleWord()
{
/*
* implements later
*/
return true;
}
public void setTabSize(int size)
{
/*
* implements later
*/
}
public int getTabSize()
{
/*
* implements later
*/
return 4;
}
public int getLineCount()
{
//follow JTextArea implementation
Element root = this.getDocument().getDefaultRootElement();
return root.getElementCount();
}
public int getLineStartOffset(int line) throws BadLocationException
{
//follow JTextArea implementation
int count = this.getLineCount();
Document doc = this.getDocument();
if (line < 0)
{
throw new BadLocationException("Negative line", -1);
}
if (line >= count)
{
throw new BadLocationException("No such line", doc.getLength() + 1);
}
return doc.getDefaultRootElement().getElement(line).getStartOffset();
}
public int getLineEndOffset(int line) throws BadLocationException
{
//follow JTextArea implementation
int count = this.getLineCount();
Document doc = this.getDocument();
if (line < 0)
{
throw new BadLocationException("Negative line", -1);
}
if (line >= count)
{
throw new BadLocationException("No such line", doc.getLength() + 1);
}
int end = doc.getDefaultRootElement().getElement(line).getEndOffset();
return (line==count-1)?(end-1):end;
}
public int getLineOfOffset(int off) throws BadLocationException
{
//follow JTextArea implementation
Document doc = this.getDocument();
if (off < 0)
{
throw new BadLocationException("Can't translate offset to line", -1);
}
if (off > doc.getLength())
{
throw new BadLocationException("Can't translate offset to line", doc.getLength() + 1);
}
return doc.getDefaultRootElement().getElementIndex(off);
}
public static void main(String[] args)
{
final SimpleAttributeSet BOLD_SET = new SimpleAttributeSet();
StyleConstants.setBold(BOLD_SET, true);
StyleConstants.setForeground(BOLD_SET, new Color(0,0,125));
SwingUtilities.invokeLater(new Runnable()
{
@Override
public void run()
{
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new BorderLayout());
MyTextPane textPane = new MyTextPane();
frame.add(new JScrollPane(textPane), BorderLayout.CENTER);
frame.setSize(200,200);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
}
As you can see, I have already added back some methods like append()
. However, I can't think of any ways to control the line wrap policy.
The default behavior is quite strange: when there are one short word and one long word,
if I consecutively enter characters without a space,
it firstly appears like wrapping by words. However when I continue to enter characters,
it does not wrap at all.
Is there any elegant way to control the wrapping policy of a JTextPane
? In other words, can a JTextPane
wrap words like a JTextArea
? I found so many duplicates (like this, this and this) but couldn't find a solution. Thanks in advance.