- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在创建需要 ComponentView 的自定义文档时遇到问题(因为我想使用普通的 swing 组件监听器)。
显然,额外的填充(或者正如我发现的那样,父级 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/
jQuery attributeContainsPrefix [name^="value"] 对比 attributeStartsWith [name|="value"] 实际区别是什么? 最佳答案
在1.1部分在RFC 6749中,有四种角色:资源拥有者、资源服务器、客户端和授权服务器。 如果客户端和资源所有者是同一实体,OAuth 是否变得多余或不必要? 例如,我有一个封闭的 API 和一个面
我有一段代码,其中有一个带有保护子句的 raise 语句: def validate_index index # Change to SizeError raise ArgumentError
我看到了这篇文章( JPA Entity Lifecycle Events vs database trigger ),但它并没有像我在这里那样明确地询问: 当我插入 PK 值为 (null) 的行时
所以,我有一段代码看起来像 if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2){ // Do something }
我是一名优秀的程序员,十分优秀!