3

我有一些代码试图确定文本区域的给定垂直切片内的文本,其中垂直切片被指定为 Y 坐标而不是线条。

顺便说一句,转换为使用线数学是解决这个问题的一个很好的解决方法,所以这就是我要解决的问题,但我可以设想你可能只有一个 Y 坐标的情况,而且看起来像这样的事情会出现,所以无论如何我都会问它。

我将我的问题简化为一个相当简约的(lol Java)示例。我们显示一个带有一些文本的框架,然后尝试确定最接近文本区域开头的文本的字符偏移量。我们从常识中知道它将为 0,但以编程方式解决这个问题是问题所在。

public static void main(String[] args) throws Exception {
    SwingUtilities.invokeLater(new Runnable() {
        @Override
        public void run() {
            new RtlTest().run();
        }
    });
}

JFrame frame;
JTextArea textArea;

public void run() {
    textArea = new JTextArea(
        "\u05D4\u05D5\u05D3\u05E2\u05EA \u05D8\u05D9\u05D9\u05D2\u05E8 " +
        "\u05D8\u05E7\u05E1\u05D8 \u05D1\u05E2\u05D1\u05E8\u05D9\u05EA");

    frame = new JFrame();
    frame.setLayout(new BorderLayout());
    frame.add(new JScrollPane(textArea), BorderLayout.CENTER);
    frame.setSize(400, 300);
    frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    frame.setVisible(true);
    SwingUtilities.invokeLater(new Runnable() {
        @Override
        public void run() {
            measure();
        }
    });
}

public void measure() {
    try {
        System.out.println("Either the line is left to right or it's right to left " +
                           "(or a mix), so one of these two values should be 0:");
        System.out.println(textArea.viewToModel(new Point(0, 0)));
        System.out.println(textArea.viewToModel(new Point(textArea.getWidth() - 1, 0)));

        Rectangle firstLetterView = textArea.modelToView(0);
        System.out.println("This one should definitely be 0, right? " +
                           "I mean, we got the coordinates from Swing itself:");
        System.out.println(textArea.viewToModel(new Point(firstLetterView.x,
                                                          firstLetterView.y)));

        frame.dispose();
    } catch (BadLocationException e) {
        throw new IllegalStateException(e);
    }
}

输出相当令人惊讶:

Either the line is left to right or it's right to left (or a mix),
    so one of these two values should be 0:
23
23
This one should definitely be 0, right? I mean, we got the coordinates from Swing itself:
24

惊喜点:

  1. 最靠近左上角的字符不是字符 0。
  2. 最靠近右上角的字符不是字符 0。
  3. 离字符 0 位置最近的字符不是字符 0。
4

1 回答 1

5

在您的代码中添加以下行:

textArea.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);

您的输出数字会改变 - 但您的文本将从文本区域的右侧显示。我希望这是你想要的。

编辑:

根据这个希伯来语和阿拉伯语应该在 RT 方向。

于 2012-09-29T13:34:55.853 回答