更改 JtextPane 中的鼠标指针
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试以下操作:
其中
pane
是您的JTextPane
。You could try this:
Where
pane
is yourJTextPane
.您是否在关于向 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.