Java styleddocument change attribute for next input

234 Views Asked by At

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?

1

There are 1 best solutions below

0
On

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.

public class TextEditorDemo {

   private JTextPane textpane;
   private JCheckBox checkbox;

   public TextEditorDemo()
   {
        initGUI();

        textpane.getStyledDocument().addDocumentListener(new DocumentListener()
        {
            @Override
            public void changedUpdate(DocumentEvent arg0) 
            {

            }

            @Override
            public void insertUpdate(DocumentEvent arg0) 
            {
                if(checkbox.isSelected())
                {
                     setBold(arg0);
                }
            }

            @Override
            public void removeUpdate(DocumentEvent arg0)
            {

            }
        });
   }

   private void initGUI()
   {
        JFrame frame = new JFrame("TextEditorDemo");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(400, 300);

        checkbox = new JCheckBox("Bold");
        textpane = new JTextPane();

        frame.getContentPane().add(checkbox, BorderLayout.NORTH);
        frame.getContentPane().add(textpane, BorderLayout.CENTER);
        frame.setVisible(true);
   }

   private void setBold(final DocumentEvent evt) 
   {
        if(evt.getLength() <= 1)
        {
             Runnable setColor = new Runnable() 
             {
                  @Override
                  public void run() 
                  {
                       Style style = textpane.addStyle("insert", null);
                       StyleConstants.setBold(style, true);
                       textpane.getStyledDocument().setCharacterAttributes(evt.getOffset(), evt.getLength(), style, true);
                  }
             };    
             SwingUtilities.invokeLater(setColor);
        }
    }

    public static void main(String[] args)
    {
        TextEditorDemo demo = new TextEditorDemo();
    }
}