更改 JtextPane 中的鼠标指针

发布于 2024-11-19 03:15:39 字数 275 浏览 2 评论 0原文

我有一个 JTextPane ,其内容类型为 text/plain。我向该 JTextPane 设置了一些文本,它包含一些显示 URL 的文本。当我将鼠标指向该文本时,我想仅将鼠标指针更改为手形指针。 这个功能可以实现吗? 注意:我将 JTextPane 的内容设置为 text/plain。 更改为 text/html

无法

I have a JTextPane which has the content type text/plain. I set some texts to that JTextPane and it contain some texts which display URLs. I want to change the mouse pointer when I point the mouse to that text only into the hand pointer.
Is this function achievable?
Note: I have the content of the JTextPane as text/plain. It cannot be changed to text/html

thanx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

彡翼 2024-11-26 03:15:39

您可以尝试以下操作:

pane.setCursor(new Cursor(Cursor.HAND_CURSOR));

其中 pane 是您的 JTextPane

You could try this:

pane.setCursor(new Cursor(Cursor.HAND_CURSOR));

Where pane is your JTextPane.

沒落の蓅哖 2024-11-26 03:15:39

您是否在关于向 JTextPane 添加工具提示的帖子中阅读了我的回答?

嗯,概念是一样的。您使用 MouseListener 并转换鼠标点以获取插入符号位置处的文本。当您位于网址文本上方时,您会更改光标。

Utilities 类可能会帮助您访问插入符号位置处的文本。

如果您需要更多帮助,请发布您的 SSCCE,其中显示您已尝试过的内容以及您遇到的问题。

Did you read my answer in your posting on Adding tooltips to JTextPane?

Well the concept is the same. You use a MouseListener and convert the mouse point to get the text at the caret position. When you are over a url text then you change the cursor.

The Utilities class might help you access the text at the caret location.

If you need more help then post your SSCCE that shows what you have tried and shows what problems you are having.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文