gpt4 book ai didi

java - E4 - 如何从 SourceViewer 中删除插入符号?

转载 作者:行者123 更新时间:2023-12-02 05:22:34 27 4
gpt4 key购买 nike

我需要显示一些与源代码非常相似的东西,但它不应该可以修改它(但我仍然需要绘画注释等功能)。用例更像是 - 您单击某行,会发生一些事情,会显示一些注释等)。

所以我决定尝试使用eclipse应用平台,因为它的jface.text看起来非常不错。

我正在尝试使用 SourceViewer 来实现我的目的。它可以配置为不可编辑,但如果您单击它,它仍然会绘制插入符号。

问题:如何禁用插入符号的绘制?

编辑:如果您知道比 SourceViewer 更好的东西,并且可以满足我的需要,请告诉我。

SourceViewer sv = new SourceViewer(parent, new CompositeRuler(), 0);
sv.setEditable(false);
sv.configure(new SourceViewerConfiguration());
sv.addVerticalRulerColumn(new LineNumberRulerColumn());
sv.setDocument(new Document(""));

最佳答案

看起来您应该能够将插入符号设置为空:

sv.getTextWidget().setCaret(null);

关于java - E4 - 如何从 SourceViewer 中删除插入符号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26384122/

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