Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
857dd28a
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看板
提交
857dd28a
编写于
8月 30, 2016
作者:
A
asaha
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
6c3a3e6c
000a6d0c
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
24 addition
and
0 deletion
+24
-0
.hgtags
.hgtags
+2
-0
src/macosx/native/sun/awt/AWTWindow.m
src/macosx/native/sun/awt/AWTWindow.m
+22
-0
未找到文件。
.hgtags
浏览文件 @
857dd28a
...
...
@@ -628,6 +628,8 @@ e915a408ebf7ba05b36d1b714e166a1d9e5c7edd jdk8u102-b11
901ecf04370c7c03c61e22ab87a266c355baff54 jdk8u102-b13
48c99b42383912886c005891c04b5f599adf6722 jdk8u102-b14
222d3ac3aa1f99f16e31c1c4a10f916ce83ff759 jdk8u102-b31
e3839fe291add6e0ea199457fb31c9312cc5dd77 jdk8u102-b32
275fcb7d4e3e70a37ac70c33d087a805ba182f1e jdk8u102-b33
ebc56c2e803597ef409a5296addc986b390d934d jdk8u111-b00
c4f03717831993e4658b8366810ca4682ece952d jdk8u111-b01
de1d09f09e571e38afdf1fb72984ec210e7c19e6 jdk8u111-b02
...
...
src/macosx/native/sun/awt/AWTWindow.m
浏览文件 @
857dd28a
...
...
@@ -800,6 +800,18 @@ AWT_ASSERT_APPKIT_THREAD;
-
(
void
)
sendEvent
:(
NSEvent
*
)
event
{
if
([
event
type
]
==
NSLeftMouseDown
||
[
event
type
]
==
NSRightMouseDown
||
[
event
type
]
==
NSOtherMouseDown
)
{
// Move parent windows to front and make sure that a child window is displayed
// in front of its nearest parent.
if
(
self
.
ownerWindow
!=
nil
)
{
JNIEnv
*
env
=
[
ThreadUtilities
getJNIEnvUncached
];
jobject
platformWindow
=
[
self
.
javaPlatformWindow
jObjectWithEnv
:
env
];
if
(
platformWindow
!=
NULL
)
{
static
JNF_MEMBER_CACHE
(
jm_orderAboveSiblings
,
jc_CPlatformWindow
,
"orderAboveSiblings"
,
"()V"
);
JNFCallVoidMethod
(
env
,
platformWindow
,
jm_orderAboveSiblings
);
(
*
env
)
->
DeleteLocalRef
(
env
,
platformWindow
);
}
}
[
self
orderChildWindows
:
YES
];
NSPoint
p
=
[
NSEvent
mouseLocation
];
NSRect
frame
=
[
self
.
nsWindow
frame
];
...
...
@@ -1100,6 +1112,16 @@ JNF_COCOA_ENTER(env);
NSWindow
*
nsWindow
=
OBJC
(
windowPtr
);
[
ThreadUtilities
performOnMainThreadWaiting
:
NO
block
:
^
(){
[
nsWindow
orderBack
:
nil
];
// Order parent windows
AWTWindow
*
awtWindow
=
(
AWTWindow
*
)[
nsWindow
delegate
];
while
(
awtWindow
.
ownerWindow
!=
nil
)
{
awtWindow
=
awtWindow
.
ownerWindow
;
if
([
AWTWindow
isJavaPlatformWindowVisible
:
awtWindow
.
nsWindow
])
{
[
awtWindow
.
nsWindow
orderBack
:
nil
];
}
}
// Order child windows
[(
AWTWindow
*
)[
nsWindow
delegate
]
orderChildWindows
:
NO
];
}];
JNF_COCOA_EXIT
(
env
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录