0

因此,在我的应用程序中,我使用了一个自定义组件,它是 JTextPane 的扩展。我需要扩展它的样式。我已经设法关闭自动换行,因为该组件旨在充当 JTextField,即不是多行。

然而,我面临的问题是,如果文本跨越可见区域之外,则当不在 JScrollpane 内使用时,JTextPane 似乎不能很好地处理非文字包装的文本。可见区域之外的文本不能像使用 JTextField 时那样移动。

我不想使用 JScrollpane,因为我有很多假定 JTextComponent 的遗留代码。

所以我的问题是,有没有办法使可见区域与插入符号位置保持一致,以便在键入到达可见边缘或尝试选择跨越可见区域的文本时,该文本会像 JTextField 那样移动到视图中。

下面是我的问题的一个工作示例。它在 JTextPane 上方显示了一个 JTextField。如果您在文本字段中键入内容,您会看到可见区域随着文本移动。如果您在文本窗格中键入,则不会发生这种情况。

另外,我在 java 7 中这样做。

提前致谢。

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

public class NoAutoScroll {
    public NoAutoScroll() {
        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        JTextField textField = new JTextField();
        textField.setText("This text field can show the text outside the visible area.");
        textField.setPreferredSize(new Dimension(150, 30));

        JTextPane textPane = new JTextPane();
        textPane.setEditorKit(new MyEditorKit());
        textPane.setText("This text pane cannot show the text outside the visible area.");
        textPane.setPreferredSize(new Dimension(150, 30));
        textPane.setBorder(textField.getBorder());

        JPanel mainPanel = new JPanel(new GridBagLayout());
        GridBagConstraints constraints = new GridBagConstraints();
        constraints.gridx = 0;
        constraints.gridy = 0;
        mainPanel.add(new JLabel("JTextField"), constraints);
        constraints.gridx = 1;
        constraints.gridy = 0;
        mainPanel.add(textField, constraints);
        constraints.gridx = 0;
        constraints.gridy = 1;
        mainPanel.add(new JLabel("JTextPane"), constraints);
        constraints.gridx = 1;
        constraints.gridy = 1;
        mainPanel.add(textPane, constraints);

        frame.add(mainPanel);
        frame.pack();
        frame.setVisible(true);
    }

    public class MyViewFactory implements ViewFactory {

        private final class NonBreakingLabelView extends LabelView {
            private NonBreakingLabelView(Element elem) {
                super(elem);
            }

            @Override
            public int getBreakWeight(int axis, float pos, float len){
                return BadBreakWeight;
            }
        }

        @Override
        public View create(final Element elem) {
            String kind = elem.getName();
            if (kind != null) {
                if (kind.equals(AbstractDocument.ContentElementName)) {
                return new NonBreakingLabelView(elem);
                } else if (kind.equals(AbstractDocument.ParagraphElementName)) {
                    return new ParagraphView(elem);
                } else if (kind.equals(AbstractDocument.SectionElementName)) {
                return new BoxView(elem, View.Y_AXIS);
                } else if (kind.equals(StyleConstants.ComponentElementName)) {
                return new ComponentView(elem);
                } else if (kind.equals(StyleConstants.IconElementName)) {
                return new IconView(elem);
                }
            }

            // default to text display
            return new LabelView(elem);
        }
    }

    @SuppressWarnings("serial")
    public class MyEditorKit extends StyledEditorKit {

        @Override
        public ViewFactory getViewFactory() {
            return new MyViewFactory();
        }
    }

    public static void main(String[] args) {
        new NoAutoScroll();
    }
}
4

1 回答 1

2

正确的方法

  • 没有就不可能JScrollPane,你可以隐藏两者JScrollBars

肮脏的黑客

  • 持有两个Documents, second 和 visible 只会ScrollIncrememt从添加到 的鼠标事件中生成JTextPane,但是没有理由使用JTextPane,JLabel而是使用,
于 2012-11-14T14:57:01.387 回答