iText列表项或JTextArea中的行间距

时间:2012-10-04 10:50:07

标签: java swing itext jtextarea

我需要在我的GUI中同步我的PDF ListItem和JTextArea的行间距。我可以通过调整一个或另一个来做到这一点。

这一切都很有效,一个ListItem(或JTextArea)长度超过一行(在JTextArea中将换行设置为true)。

我可以调整两个ListItem之间的高度。该距离也将应用于单个多线ListItem的两行之间的高度。

但是,在我的GUI中,由于JTextArea中的compononet boreders和默认行间距,这两者并不相同。差异大约是一个像素,但是大规模可以累积并导致一些问题。

那么,有什么方法可以在JTextArea中设置行间距,或者我可以区分两个列表项之间的空格和同一列表项的两行吗?

我全都在使用任何类型的外部库以及可能需要的任何技巧......

3 个答案:

答案 0 :(得分:4)

要覆盖JTextArea的行间距,请查看PlainView(用于渲染PLainDocument)。

public void paint(Graphics g, Shape a)方法

中有以下几行
        drawLine(line, g, x, y);
        y += fontHeight;

因此,您可以调整渲染固定y偏移。

BasicTextAreaUI方法中创建视图。将其替换为您自己的PlainView

实现
public View create(Element elem) {
    Document doc = elem.getDocument();
    Object i18nFlag = doc.getProperty("i18n"/*AbstractDocument.I18NProperty*/);
    if ((i18nFlag != null) && i18nFlag.equals(Boolean.TRUE)) {
        // build a view that support bidi
        return createI18N(elem);
    } else {
        JTextComponent c = getComponent();
        if (c instanceof JTextArea) {
        JTextArea area = (JTextArea) c;
        View v;
        if (area.getLineWrap()) {
            v = new WrappedPlainView(elem, area.getWrapStyleWord());
        } else {
            v = new PlainView(elem);
        }
        return v;
        }
    }
    return null;
}

答案 1 :(得分:1)

使用ParagraphAttribute SpaceBelow控制行之间的空间。您可以使用4行或更少的代码执行此操作(请参阅下面的示例)。您将需要使用JTextPane来使用这些ParagraphAttributes(但JTextPane和JTextArea`是如此相似,您不应该注意到差异)。

import java.awt.*;
import javax.swing.*;
import javax.swing.text.*;


public class LineSpacingExample extends Box{
    JTextPane modifiedTA;
    //Modify this to whatever spacing you want between the rows.
    static final float spaceBelow = 5.0f;
    //Font height - automatically calculated by code below
    int fontHeight = 0;

    public LineSpacingExample(){
        super(BoxLayout.X_AXIS);

        //Demonstrating that the spacing is predictable
        final JPanel leftBox = new CustomBox();
        add(leftBox);

        //Sets the amount of space below a row (only code you need to add)
        DefaultStyledDocument pd = new DefaultStyledDocument();
        SimpleAttributeSet sas = new SimpleAttributeSet();
        StyleConstants.setSpaceBelow(sas, spaceBelow);
        pd.setParagraphAttributes(0, pd.getLength(), sas, false);

        modifiedTA= new JTextPane(pd);  
        add(modifiedTA);

        //Calculates the font height in pixels
        fontHeight = modifiedTA.getFontMetrics(modifiedTA.getFont()).getHeight();
    }

    /**
     * @param args
     */
    public static void main(String[] args) {
        final JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.add(new LineSpacingExample());
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    }

    //EXTRA! Paints the left hand side box - to show that the spacing is predictable in pixels
    public class CustomBox extends JPanel{

        public CustomBox() {
            super();
            setOpaque(true);
            setBackground(Color.orange);

        }

        public void paintComponent(Graphics g){
            super.paintComponent(g);
            int height = getSize().height;
            int drawLocation = 2; //To account for padding on the TextPane
            int row = 1;
            while(drawLocation < height){

                //Drawing the text row background
                g.setColor(Color.blue);
                g.fillRect(0, drawLocation, 50, fontHeight);

                //Drawing the text row number
                g.setColor(Color.white);
                g.drawString(Integer.toString(row++), 0, drawLocation+14);
                drawLocation += fontHeight;

                //Drawing the space row
                g.setColor(Color.green);
                g.fillRect(0, drawLocation, 50, (int)spaceBelow);
                drawLocation += spaceBelow;
            }
        }
    };

}

答案 2 :(得分:0)

您可以尝试使用JTextPane代替JTextArea,并相应地设置行间距,使其看起来像ListItems。

SimpleAttributeSet set = new SimpleAttributeSet();

StyleConstants.setLineSpacing(set, 0.5f);    // <--- your value here

textPane.setParagraphAttributes(set, true);

这不会影响现有文本的行间距,因此您应该在之后设置文本。