I have JTextPane and a checkbox representing lets say bold font. So if checkbox is checked, I want whatever I type in JTextPane to be bold. I do not want to change whole font for JTextPane , I just want to set next char to be bold. I made this, and it works:
///framework is JTextPane
framework.addKeyListener(new KeyListener() {
StyledDocument doc = framework.getStyledDocument();
@Override
public void keyTyped(KeyEvent e) {
// TODO Auto-generated method stub
if(boldcheck.isSelected()){
StyleContext sc = new StyleContext();
Style ns = sc.addStyle("a", null);
ns.addAttribute(StyleConstants.Bold, new Boolean(true));
try {
String s = Character.toString(e.getKeyChar());
doc.insertString(doc.getLength(),s, ns);
framework.remove(doc.getLength());
} catch (BadLocationException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
///// rest of keylistener
but i do not think it is good idea to do
doc.insertString(doc.getLength(),s, ns);
framework.remove(doc.getLength());
I tried with doc.setCharacterAttributes(doc.getLength(),1, ns, true)
but it wont work, and if i do doc.setCharacterAttributes(doc.getLength()-1,1, ns, true)
in keyReleased
it will work badly and I mean a will first see what I typed and than I will see it chaning and if I type fast it won't change attributes for some letters. So does anybody know better way to do this?
The following runnable code may suit your requirements. I leave it up to you to decide that it is better or not. Hope it is useful.