Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
9b98edba
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看板
提交
9b98edba
编写于
9月 16, 2013
作者:
A
alexsch
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8008728: [macosx] Swing. JDialog. Modal dialog goes to background
Reviewed-by: serb
上级
10c9e7df
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
133 addition
and
2 deletion
+133
-2
src/macosx/classes/sun/lwawt/macosx/CPlatformWindow.java
src/macosx/classes/sun/lwawt/macosx/CPlatformWindow.java
+3
-2
src/macosx/native/sun/awt/AWTWindow.m
src/macosx/native/sun/awt/AWTWindow.m
+16
-0
test/java/awt/Modal/ModalDialogOrderingTest/ModalDialogOrderingTest.java
...odal/ModalDialogOrderingTest/ModalDialogOrderingTest.java
+114
-0
未找到文件。
src/macosx/classes/sun/lwawt/macosx/CPlatformWindow.java
浏览文件 @
9b98edba
...
...
@@ -820,6 +820,7 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
}
nativeSetEnabled
(
getNSWindowPtr
(),
!
blocked
);
checkBlockingAndOrder
();
}
public
final
void
invalidateShadow
(){
...
...
@@ -984,7 +985,7 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
setStyleBits
(
SHOULD_BECOME_KEY
|
SHOULD_BECOME_MAIN
,
isFocusable
);
// set both bits at once
}
private
boolean
checkBlocking
()
{
private
boolean
checkBlocking
AndOrder
()
{
LWWindowPeer
blocker
=
(
peer
==
null
)?
null
:
peer
.
getBlocker
();
if
(
blocker
==
null
)
{
return
false
;
...
...
@@ -1040,7 +1041,7 @@ public class CPlatformWindow extends CFRetainedResource implements PlatformWindo
private
void
windowDidBecomeMain
()
{
assert
CThreading
.
assertAppKit
();
if
(
checkBlocking
())
return
;
if
(
checkBlocking
AndOrder
())
return
;
// If it's not blocked, make sure it's above its siblings
orderAboveSiblings
();
}
...
...
src/macosx/native/sun/awt/AWTWindow.m
浏览文件 @
9b98edba
...
...
@@ -366,6 +366,22 @@ AWT_ASSERT_APPKIT_THREAD;
-
(
BOOL
)
canBecomeMainWindow
{
AWT_ASSERT_APPKIT_THREAD
;
if
(
!
self
.
isEnabled
){
// Native system can bring up the NSWindow to
// the top even if the window is not main.
// We should bring up the modal dialog manually
[
AWTToolkit
eventCountPlusPlus
];
JNIEnv
*
env
=
[
ThreadUtilities
getJNIEnv
];
jobject
platformWindow
=
[
self
.
javaPlatformWindow
jObjectWithEnv
:
env
];
if
(
platformWindow
!=
NULL
)
{
static
JNF_MEMBER_CACHE
(
jm_checkBlockingAndOrder
,
jc_CPlatformWindow
,
"checkBlockingAndOrder"
,
"()Z"
);
JNFCallVoidMethod
(
env
,
platformWindow
,
jm_checkBlockingAndOrder
);
(
*
env
)
->
DeleteLocalRef
(
env
,
platformWindow
);
}
}
return
self
.
isEnabled
&&
IS
(
self
.
styleBits
,
SHOULD_BECOME_MAIN
);
}
...
...
test/java/awt/Modal/ModalDialogOrderingTest/ModalDialogOrderingTest.java
0 → 100644
浏览文件 @
9b98edba
/*
* Copyright (c) 2011, Oracle and/or its affiliates. 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
import
java.awt.Color
;
import
java.awt.Dialog
;
import
java.awt.Frame
;
import
java.awt.Rectangle
;
import
java.awt.Robot
;
import
java.awt.Toolkit
;
import
java.awt.event.InputEvent
;
import
sun.awt.SunToolkit
;
/*
* @test
* @bug 8008728
* @summary [macosx] Swing. JDialog. Modal dialog goes to background
* @author Alexandr Scherbatiy
* @run main ModalDialogOrderingTest
*/
public
class
ModalDialogOrderingTest
{
private
static
final
Color
DIALOG_COLOR
=
Color
.
GREEN
;
private
static
final
Color
FRAME_COLOR
=
Color
.
BLUE
;
public
static
void
main
(
String
[]
args
)
{
final
Frame
frame
=
new
Frame
(
"Test"
);
frame
.
setSize
(
100
,
100
);
frame
.
setBackground
(
FRAME_COLOR
);
frame
.
setVisible
(
true
);
final
Dialog
modalDialog
=
new
Dialog
((
Frame
)
null
,
true
);
modalDialog
.
setTitle
(
"Modal Dialog"
);
modalDialog
.
setSize
(
50
,
50
);
modalDialog
.
setBackground
(
DIALOG_COLOR
);
modalDialog
.
setModal
(
true
);
new
Thread
(
new
Runnable
()
{
@Override
public
void
run
()
{
runTest
(
modalDialog
,
frame
);
}
}).
start
();
modalDialog
.
setVisible
(
true
);
}
private
static
void
runTest
(
Dialog
dialog
,
Frame
frame
)
{
try
{
SunToolkit
toolkit
=
(
SunToolkit
)
Toolkit
.
getDefaultToolkit
();
Robot
robot
=
new
Robot
();
robot
.
setAutoDelay
(
15
);
robot
.
mouseMove
(
300
,
300
);
while
(!
dialog
.
isVisible
())
{
toolkit
.
realSync
();
}
Rectangle
dialogBounds
=
dialog
.
getBounds
();
Rectangle
frameBounds
=
frame
.
getBounds
();
double
x0
=
dialogBounds
.
getX
();
double
y0
=
dialogBounds
.
getY
();
double
x1
=
dialogBounds
.
getX
()
+
dialogBounds
.
getWidth
();
double
y1
=
dialogBounds
.
getY
()
+
dialogBounds
.
getHeight
();
double
x2
=
frameBounds
.
getX
()
+
frameBounds
.
getWidth
();
double
y2
=
frameBounds
.
getY
()
+
frameBounds
.
getHeight
();
int
clickX
=
(
int
)
((
x2
+
x1
)
/
2
);
int
clickY
=
(
int
)
((
y2
+
y1
)
/
2
);
robot
.
mouseMove
(
clickX
,
clickY
);
robot
.
mousePress
(
InputEvent
.
BUTTON1_MASK
);
robot
.
mouseRelease
(
InputEvent
.
BUTTON1_MASK
);
toolkit
.
realSync
();
int
colorX
=
(
int
)
((
x0
+
x1
)
/
2
);
int
colorY
=
(
int
)
((
y0
+
y1
)
/
2
);
Color
color
=
robot
.
getPixelColor
(
colorX
,
colorY
);
dialog
.
setVisible
(
false
);
frame
.
setVisible
(
false
);
if
(!
DIALOG_COLOR
.
equals
(
color
))
{
throw
new
RuntimeException
(
"The frame is on top"
+
" of the modal dialog!"
);
}
}
catch
(
Exception
ex
)
{
throw
new
RuntimeException
(
ex
);
}
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录