gpt4 book ai didi

java - ComponentView 在顶部有不必要的额外插入

转载 作者:行者123 更新时间:2023-11-30 08:01:18 24 4
gpt4 key购买 nike

我在创建需要 ComponentView 的自定义文档时遇到问题(因为我想使用普通的 swing 组件监听器)。

目前的样子是这样的: Wrong offset

显然,额外的填充(或者正如我发现的那样,父级 BoxView 内的 minorInset)是错误的,它会将整个组件向下移动几个像素,准确地说是 6 个像素。

我添加组件如下:

public class InlineLabelTest extends JFrame {

public InlineLabelTest() {
try {
final JTextPane textPane = new JTextPane();
textPane.setEditorKit(new InlineLabelKit());

final LabelDocument document = (LabelDocument) textPane.getDocument();
document.insertString(0, "Lorem ipsum", new SimpleAttributeSet());
document.insertLabel(document.getLength(), "dateAndTime");

setLayout(new BorderLayout());
add(new JScrollPane(textPane));

} catch (BadLocationException e) {
e.printStackTrace();
}
}

public static void main(String[] args) {
SwingUtilities.invokeLater(() -> new InlineLabelTest().setVisible(true));
}


private static class InlineLabelKit extends StyledEditorKit {
private LabelViewFactory factory;


@Override
public ViewFactory getViewFactory() {
if (factory == null) {
factory = new LabelViewFactory();
}

return factory;
}

@Override
public Document createDefaultDocument() {
return new LabelDocument();
}

}

private static class LabelDocument extends DefaultStyledDocument {

public void insertLabel(int offset, String label) {
final ArrayList<ElementSpec> specs = new ArrayList<>();
final JButton flag = new JButton(label);

// The combination of the border and the font adds the inset
flag.setBorder(BorderFactory.createLineBorder(Color.ORANGE));
flag.setFont(new Font(Font.SANS_SERIF, Font.BOLD, 10));

final SimpleAttributeSet inner = new SimpleAttributeSet();
StyleConstants.setComponent(inner, flag);

specs.add(new ElementSpec(inner, ElementSpec.StartTagType));
specs.add(new ElementSpec(inner, ElementSpec.ContentType, label.toCharArray(), 0, label.length()));
specs.add(new ElementSpec(inner, ElementSpec.EndTagType));

try {
insert(offset, specs.toArray(new ElementSpec[specs.size()]));

} catch (BadLocationException e) {
e.printStackTrace();
}
}
}

private static class LabelViewFactory implements ViewFactory {

@Override
public View create(Element elem) {
switch (elem.getName()) {
case AbstractDocument.SectionElementName: return new BoxView(elem, View.Y_AXIS);
case AbstractDocument.ParagraphElementName: return new ParagraphView(elem);
case StyleConstants.ComponentElementName: return new ComponentView(elem);
case StyleConstants.IconElementName: return new IconView(elem);
default: return new LabelView(elem);
}
}

}

}

似乎是自定义边框和字体(或影响其默认大小的任何更改)的组合创建了插图。

如何去掉多余的填充?为什么系统还要在 ComponentView 周围添加一个 BoxView?有什么我错过的吗?

提前非常感谢!

最佳答案

好吧,经过一整天的研究和调试,我发现我必须手动在我想要设置的组件上设置 Y 对齐。

实际发生的情况(简单来说)是,文本基线大约为文本高度的 85%,而组件基线默认回到 50%(因为它不是文本,而是一个框),因此添加了从顶部插入,差异为 35%。

通过在要添加的组件上指定 Y 对齐可以轻松解决此问题:

JButton component = new JButton(text);
FontMetrics fontMetrics = component.getFontMetrics(component.getFont());
LineMetrics metrics = fontMetrics.getLineMetrics(text, component.getGraphics());

float ascent = metrics.getAscent(), descent = metrics.getDescent();
component.setAlignmentY(ascent / (ascent + descent));

关于java - ComponentView 在顶部有不必要的额外插入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31874460/

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