5D艺术网首页
商城
|
资讯
|
作品
|
博客
|
教程
|
论坛
登录
注册
加为好友
发短消息
来自:
性别:秘密
最后登录:2009-03-18
http://jybbh.5d.cn/
首页
|
新闻
|
话题
|
博客
|
相册
|
艺术作品
|
社交关系
|
留言板
|
社交圈
2005/11/18 | 在Swing的JEditorPane控件中实现超级链接的CSS定义
类别(JAVA相关)
|
评论
(0)
|
阅读(58)
|
发表于 15:17
在Swing的JEditorPane控件中实现超级链接的CSS定义
作者:未知 时间:2005-02-22 12:12 出处:Blog 责编:chinaitpower
摘要:暂无
如下一个HTML文件
<html>
<head>
<style type='text/css'>
A{text-decoration: none; color: #000000; }
A:hover {text-decoration: underline; color: #FF0000; }
</style>
</head>
<body>
<a href="www.google.com">Google</a><br>
<a href="www.yahoo.com">Yahoo!</a>
</body>
</html>
在JEditorPane中显示的时候JEditorPane可以正确显示CSS中对A属性的设置,但是当鼠标移上去的时候却不能把A:hover中的定义显示出来。可能是因为JEditorPane只是在显示的时候解析了一下每一个Element的属性,当鼠标事件发生的时候不能动态的修改Element的属性。
下面来解决这个问题:
1,获取鼠标移入移出事件,用HyperlinkListener可以捕获,要注意的是这个Listener似乎有一个bug,在超级链接在JEditorPane边上的时候,快速移出JEditorPane似乎会没有EXITED事件的发生,这个bug可以通过给JEditorPane加一个鼠标事件解决(这里不详细描述)。
JEditorPane editor;
...... ......
HyperlinkListener hyperlinkListener = new HyperlinkListener() {
public void hyperlinkUpdate(HyperlinkEvent e) {
if (e.getEventType() == HyperlinkEvent.EventType.ENTERED){
System.out.println("Mouse Entered");
}else if (e.getEventType() == HyperlinkEvent.EventType.EXITED){
System.out.println("Mouse Exited");
}
}
};
editor.addHyperlinkListener(hyperlinkListener);
2,获取CSS中对于A和A:hover的属性定义
HTMLDocument doc = (HTMLDocument)editor.getDocument();
Style aStyle = doc.getStyleSheet().getStyle("a");
Style aHoverStyle = doc.getStyleSheet().getStyle("a:hover");
3,在鼠标事件中更换Style
JEditorPane editor;
...... ......
HyperlinkListener hyperlinkListener = new HyperlinkListener() {
public void hyperlinkUpdate(HyperlinkEvent e) {
String styleName = null;
if (e.getEventType() == HyperlinkEvent.EventType.ENTERED){
styleName = "a:hover";
}else if (e.getEventType() == HyperlinkEvent.EventType.EXITED){
styleName = "a";
}
if (styleName != null){
JieEditorPane editor = (JieEditorPane)e.getSource();
HTMLDocument doc = (HTMLDocument)editor.getDocument();
Style aStyle = doc.getStyleSheet().getStyle(styleName);
int start = e.getSourceElement().getStartOffset();
int end = e.getSourceElement().getEndOffset();
doc.setCharacterAttributes(start,end-start,aStyle,false);
}
}
};
editor.addHyperlinkListener(hyperlinkListener);
结论:JEditorPane能够支持简单的HTML和CSS(具体支持的标准不清楚),但是提供了良好的接口和API,我们可以通过这些API来增强JEditorPane的功能,来达到我们的需求。
-------------------------------------------
引用:http://www.chinaitpower.com/A/2005-02-22/148684.html
0
评论
Comments
日志分类
首页
[252]
Ken的日志
[63]
工作心得
[3]
编程相关
[28]
潮汕文化
[4]
计算机相关
[28]
WEB相关
[84]
JAVA相关
[20]
Eclipse相关
[7]
Tomcat相关
[1]
SQL
[14]