gpt4 book ai didi

java - JTextArea 的行号和调整 JTextArea 文本大小的问题

转载 作者:行者123 更新时间:2023-12-02 10:49:27 30 4
gpt4 key购买 nike

此代码计算 JTextArea 的每一行并添加行数
左 JTextPane

import java.awt.BorderLayout;
import java.awt.Color;

import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.border.MatteBorder;
import javax.swing.event.DocumentEvent;
import javax.swing.event.DocumentListener;
import javax.swing.text.Element;
import javax.swing.text.SimpleAttributeSet;
import javax.swing.text.StyleConstants;
import javax.swing.text.StyledDocument;

public class LineNumber extends JFrame implements DocumentListener {

private static final long serialVersionUID = -1093726028044203117L;

private JScrollPane scroll;
private JTextArea textArea;
private TextPane lineArea;

public static void main(String[] args) {

new LineNumber().setVisible(true);

}

public LineNumber() {

super("Line Numbers");

setSize(500, 500);
setLocationRelativeTo(null);
setDefaultCloseOperation(EXIT_ON_CLOSE);

setUI();
}

private void setUI() {

textArea = new JTextArea();
textArea.getDocument().addDocumentListener(this);

lineArea = new TextPane(0, 3);
lineArea.setText(getLine());

lineArea.setEditable(false);
lineArea.setFocusable(false);
lineArea.setBorder(new MatteBorder(0, 0, 0, 1, new Color(248, 248, 248)));
lineArea.setBackground(new Color(255, 255, 255));
lineArea.setForeground(Color.GRAY);

scroll = new JScrollPane(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);

scroll.setViewportView(textArea);
scroll.setRowHeaderView(lineArea);
getContentPane().add(scroll, BorderLayout.CENTER);

}

public void changedUpdate(DocumentEvent event) {

lineArea.setText(getLine());

}

public void insertUpdate(DocumentEvent event) {

lineArea.setText(getLine());
}

public void removeUpdate(DocumentEvent event) {


lineArea.setText(getLine());

}

private String getLine() {

int caretPos = 0;
String lines = "";

caretPos = textArea.getDocument().getLength();
Element root = textArea.getDocument().getDefaultRootElement();

for (int i = 1; i < root.getElementIndex(caretPos) + 2; i++)
lines += String.format("%s \n", i);

return lines;

}

private int getLength() {

int caretPos = 0;
int length = 0;

caretPos = textArea.getDocument().getLength();
Element root = textArea.getDocument().getDefaultRootElement();

int max = 0;
for (int i = 1; i < root.getElementIndex(caretPos) + 2; i++)
length = String.valueOf(Math.max(i, max)).length();

return length;

}


private void setRightAlign() {

StyledDocument doc = lineArea.getStyledDocument();
SimpleAttributeSet right = new SimpleAttributeSet();

StyleConstants.setAlignment(right, StyleConstants.ALIGN_RIGHT);
doc.setParagraphAttributes(0, doc.getLength(), right, false);

}

}

如果 lineArea 和 textArea 使用相同的字体和大小
程序运行良好,但如果更改或调整文本区域的字体
它不适用于不同的字体大小
并且结束距离实际结束线太短

code work good and care balance with line number

更改文本区域字体或字体大小后:

enter image description here

调整线条区域和文本区域大小后不平衡
我不想改变文本区域字体的大小
只需要平衡文本区域与行号

最佳答案

我不知道 TextPane 类是什么,因为它不是标准的 JDK 组件。

如果它是 JTextArea,那么也许您可以重写 getRowHeight(..) 方法以根据主 JTextArea 的 Font 返回高度。

如果它是 JTextPane,那么也许您可以使用 StyleConstants.setSpaceBelow(...) 在每行后面添加额外的空格。因此,您需要获取用于计算每个字体高度的两种字体的字体规范。那么区别就在于您在下面的空间方法中使用的 about。

另一个选择是使用我在上一个问题中提供的类。它已经支持此功能。

关于java - JTextArea 的行号和调整 JTextArea 文本大小的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52282533/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com