Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
938ff593
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
938ff593
编写于
5月 20, 2010
作者:
M
malenkov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6910490: MatteBorder JScrollpane interaction
Reviewed-by: alexp
上级
cf2fc83f
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
102 addition
and
51 deletion
+102
-51
src/share/classes/javax/swing/border/MatteBorder.java
src/share/classes/javax/swing/border/MatteBorder.java
+16
-51
test/javax/swing/border/Test6910490.html
test/javax/swing/border/Test6910490.html
+9
-0
test/javax/swing/border/Test6910490.java
test/javax/swing/border/Test6910490.java
+77
-0
未找到文件。
src/share/classes/javax/swing/border/MatteBorder.java
浏览文件 @
938ff593
/*
* Copyright 1997-20
06
Sun Microsystems, Inc. All Rights Reserved.
* Copyright 1997-20
10
Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -26,7 +26,6 @@ package javax.swing.border;
import
java.awt.Graphics
;
import
java.awt.Insets
;
import
java.awt.Rectangle
;
import
java.awt.Component
;
import
java.awt.Color
;
...
...
@@ -133,63 +132,29 @@ public class MatteBorder extends EmptyBorder
g
.
fillRect
(
width
-
insets
.
right
,
0
,
insets
.
right
,
height
-
insets
.
bottom
);
}
else
if
(
tileIcon
!=
null
)
{
int
tileW
=
tileIcon
.
getIconWidth
();
int
tileH
=
tileIcon
.
getIconHeight
();
int
xpos
,
ypos
,
startx
,
starty
;
Graphics
cg
;
// Paint top matte edge
cg
=
g
.
create
();
cg
.
setClip
(
0
,
0
,
width
,
insets
.
top
);
for
(
ypos
=
0
;
insets
.
top
-
ypos
>
0
;
ypos
+=
tileH
)
{
for
(
xpos
=
0
;
width
-
xpos
>
0
;
xpos
+=
tileW
)
{
tileIcon
.
paintIcon
(
c
,
cg
,
xpos
,
ypos
);
}
}
cg
.
dispose
();
// Paint left matte edge
cg
=
g
.
create
();
cg
.
setClip
(
0
,
insets
.
top
,
insets
.
left
,
height
-
insets
.
top
);
starty
=
insets
.
top
-
(
insets
.
top
%
tileH
);
startx
=
0
;
for
(
ypos
=
starty
;
height
-
ypos
>
0
;
ypos
+=
tileH
)
{
for
(
xpos
=
startx
;
insets
.
left
-
xpos
>
0
;
xpos
+=
tileW
)
{
tileIcon
.
paintIcon
(
c
,
cg
,
xpos
,
ypos
);
}
}
cg
.
dispose
();
// Paint bottom matte edge
cg
=
g
.
create
();
cg
.
setClip
(
insets
.
left
,
height
-
insets
.
bottom
,
width
-
insets
.
left
,
insets
.
bottom
);
starty
=
(
height
-
insets
.
bottom
)
-
((
height
-
insets
.
bottom
)%
tileH
);
startx
=
insets
.
left
-
(
insets
.
left
%
tileW
);
for
(
ypos
=
starty
;
height
-
ypos
>
0
;
ypos
+=
tileH
)
{
for
(
xpos
=
startx
;
width
-
xpos
>
0
;
xpos
+=
tileW
)
{
tileIcon
.
paintIcon
(
c
,
cg
,
xpos
,
ypos
);
}
}
cg
.
dispose
();
// Paint right matte edge
cg
=
g
.
create
();
cg
.
setClip
(
width
-
insets
.
right
,
insets
.
top
,
insets
.
right
,
height
-
insets
.
top
-
insets
.
bottom
);
starty
=
insets
.
top
-
(
insets
.
top
%
tileH
);
startx
=
width
-
insets
.
right
-
((
width
-
insets
.
right
)%
tileW
);
for
(
ypos
=
starty
;
height
-
ypos
>
0
;
ypos
+=
tileH
)
{
for
(
xpos
=
startx
;
width
-
xpos
>
0
;
xpos
+=
tileW
)
{
tileIcon
.
paintIcon
(
c
,
cg
,
xpos
,
ypos
);
}
}
cg
.
dispose
();
paintEdge
(
c
,
g
,
0
,
0
,
width
-
insets
.
right
,
insets
.
top
,
tileW
,
tileH
);
paintEdge
(
c
,
g
,
0
,
insets
.
top
,
insets
.
left
,
height
-
insets
.
top
,
tileW
,
tileH
);
paintEdge
(
c
,
g
,
insets
.
left
,
height
-
insets
.
bottom
,
width
-
insets
.
left
,
insets
.
bottom
,
tileW
,
tileH
);
paintEdge
(
c
,
g
,
width
-
insets
.
right
,
0
,
insets
.
right
,
height
-
insets
.
bottom
,
tileW
,
tileH
);
}
g
.
translate
(-
x
,
-
y
);
g
.
setColor
(
oldColor
);
}
private
void
paintEdge
(
Component
c
,
Graphics
g
,
int
x
,
int
y
,
int
width
,
int
height
,
int
tileW
,
int
tileH
)
{
g
=
g
.
create
(
x
,
y
,
width
,
height
);
int
sY
=
-(
y
%
tileH
);
for
(
x
=
-(
x
%
tileW
);
x
<
width
;
x
+=
tileW
)
{
for
(
y
=
sY
;
y
<
height
;
y
+=
tileH
)
{
this
.
tileIcon
.
paintIcon
(
c
,
g
,
x
,
y
);
}
}
g
.
dispose
();
}
/**
* Reinitialize the insets parameter with this Border's current Insets.
* @param c the component for which this border insets value applies
...
...
test/javax/swing/border/Test6910490.html
0 → 100644
浏览文件 @
938ff593
<html>
<body>
If the border is painted over scroll bars then test fails.
Otherwise test passes.
<applet
width=
"600"
height=
"300"
code=
"Test6910490.class"
>
</applet>
</body>
</html>
test/javax/swing/border/Test6910490.java
0 → 100644
浏览文件 @
938ff593
/*
* Copyright 2010 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/
import
static
java
.
awt
.
Color
.
RED
;
import
java.awt.Component
;
import
java.awt.Dimension
;
import
java.awt.Graphics
;
import
java.awt.Insets
;
import
javax.swing.Icon
;
import
javax.swing.JApplet
;
import
javax.swing.JButton
;
import
javax.swing.JScrollPane
;
import
javax.swing.JSplitPane
;
import
javax.swing.border.MatteBorder
;
/*
* @test
* @bug 6910490
* @summary Tests a matte border around a component inside a scroll pane.
* @author Sergey Malenkov
* @run applet/manual=yesno Test6910490.html
*/
public
class
Test6910490
extends
JApplet
implements
Icon
{
@Override
public
void
init
()
{
Insets
insets
=
new
Insets
(
10
,
10
,
10
,
10
);
Dimension
size
=
new
Dimension
(
getWidth
()
/
2
,
getHeight
());
JSplitPane
pane
=
new
JSplitPane
(
JSplitPane
.
HORIZONTAL_SPLIT
,
create
(
"Color"
,
size
,
new
MatteBorder
(
insets
,
RED
)),
create
(
"Icon"
,
size
,
new
MatteBorder
(
insets
,
this
)));
pane
.
setDividerLocation
(
size
.
width
-
pane
.
getDividerSize
()
/
2
);
add
(
pane
);
}
private
JScrollPane
create
(
String
name
,
Dimension
size
,
MatteBorder
border
)
{
JButton
button
=
new
JButton
(
name
);
button
.
setPreferredSize
(
size
);
button
.
setBorder
(
border
);
return
new
JScrollPane
(
button
);
}
public
int
getIconWidth
()
{
return
10
;
}
public
int
getIconHeight
()
{
return
10
;
}
public
void
paintIcon
(
Component
c
,
Graphics
g
,
int
x
,
int
y
)
{
g
.
setColor
(
RED
);
g
.
fillRect
(
x
,
y
,
getIconWidth
(),
getIconHeight
());
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录