How do you set the tab size in a JEditorPane?

前端 未结 3 2036
后悔当初
后悔当初 2020-12-16 19:17

A JTextArea\'s tab size can easily be set using setTabSize(int).

Is there a similar way to do it with a JEditorPane?

R

相关标签:
3条回答
  • 2020-12-16 19:40

    In case anyone's using a StyledDocument (The link on the other answer died)

    You create a TabSet which is an array of TabStops. In my case I only cared about the 1st tab, and I wanted it 20px from the left, so this code worked for me:

    StyleContext sc = StyleContext.getDefaultStyleContext();
    TabSet tabs = new TabSet(new TabStop[] { new TabStop(20) });
    AttributeSet paraSet = sc.addAttribute(SimpleAttributeSet.EMPTY, StyleConstants.TabSet, tabs);
    pane.setParagraphAttributes(paraSet, false);
    
    0 讨论(0)
  • 2020-12-16 19:42

    Took me a while to figure this out. And decided to use TabStop's in a TabSet that have calculated width based on the font size. This has to be reset when ever the font size changes (in the paint() method of the JEditPane).

    Complicated stuff! :(

    0 讨论(0)
  • 2020-12-16 19:43

    As JEditorPane is designed to support different kinds of content types, it does not provide a way to specify a "tab size" directly, because the meaning of that should be defined by the content model. However when you use a model that's a PlainDocument or one of its descendants, there is a "tabSizeAttribute" that provides what you are looking for.

    Example:

    JEditorPane pane = new JEditorPane(...);
    ...
    Document doc = pane.getDocument();
    if (doc instanceof PlainDocument) {
        doc.putProperty(PlainDocument.tabSizeAttribute, 8);
    }
    ...
    

    From the Javadoc:

    /**
     * Name of the attribute that specifies the tab
     * size for tabs contained in the content.  The
     * type for the value is Integer.
     */
    public static final String tabSizeAttribute = "tabSize";
    
    0 讨论(0)
提交回复
热议问题