-
Bug
-
Resolution: Duplicate
-
P4
-
7u6
-
None
Subject: <AWT Dev> [Bug 100300] JDK7 looses focus under e16 window manager
Date: Wed, 27 Feb 2013 16:45:11 +0100
From: Jaime Peñalba <jpenalbae@gmail.com>
To: awt-dev@openjdk.java.net
Last week I reported the following bug:
https://bugs.openjdk.java.net/show_bug.cgi?id=100300 but Anthony Petrov
suggested me to bring the topic here.
------------------------------------------------------------------------------------------------------------------------------
First of all this bug has been introduced on JDK7 as JDK6 works
perfectly under
enlightenmenet e16 window manager.
To reproduce this bug just run any java application under the window manager
e16 using JDK7. All my tests have been done using version "e16-1.0.11" and
openjdk-7u6-fcs-src-b24-28_aug_2012.zip. Here are the e16 binaries which I
compiled and which I'm using:
http://www.painsec.com/writeups/resources/misc/e16-1.0.11-bin.tar.bz2
Steps to reproduce the bug:
- Run any java swing/awt application under e16-1.0.11 window manager.
- Change focus to another window/application.
- Return focus to the java application.
- It will no longer allow you to write on any text field.
The problem is that once the java window loose the focus it never regains it
again loosing the ability to input text although mouse clicks still work
fine.
I'm not used to X11 programming neither to hacking the OpenJDK, anyway
trying
to hunt the bug I found that a proper focus event is handled in the
following
manner:
at
sun.awt.X11.XWindowPeer.handleFocusEvent(XWindowPeer.java:806)
at
sun.awt.X11.XDecoratedPeer.handleFocusEvent(XDecoratedPeer.java:225)
at
sun.awt.X11.XFocusProxyWindow.handleFocusEvent(XFocusProxyWindow.java:77)
at
sun.awt.X11.XFocusProxyWindow.dispatchEvent(XFocusProxyWindow.java:70)
at
sun.awt.X11.XBaseWindow.dispatchToWindow(XBaseWindow.java:1066)
at sun.awt.X11.XToolkit.dispatchEvent(XToolkit.java:577)
at sun.awt.X11.XToolkit.run(XToolkit.java:686)
at sun.awt.X11.XToolkit.run(XToolkit.java:607)
at java.lang.Thread.run(Thread.java:722)
But under e16 the event gets lost at:
at
sun.awt.X11.XBaseWindow.dispatchToWindow(XBaseWindow.java:1066)
at sun.awt.X11.XToolkit.dispatchEvent(XToolkit.java:577)
at sun.awt.X11.XToolkit.run(XToolkit.java:686)
at sun.awt.X11.XToolkit.run(XToolkit.java:607
The code sun.awt.X11.XBaseWindow.dispatchToWindow is as follows
/**
* Dispatches event to the grab Window or event source window
depending
* on whether the grab is active and on the event type
*/
static void dispatchToWindow(XEvent ev) {
XBaseWindow target = XAwtState.getGrabWindow();
if (target == null || !isGrabbedEvent(ev, target)) {
target =
XToolkit.windowToXWindow(ev.get_xany().get_window());
}
if (target != null && target.checkInitialised()) {
target.dispatchEvent(ev);
}
}
After some tinkering I discovered that the obtained "XBaseWindow target"
points
to a "XContentWindow" object instead of a "XFocusProxyWindow" object as
expected, and the "XContentWindow" class extending "XWindow" doesn't have a
"dispatchEvent()" method so the event gets lost forever.
I don't know why XContentWindow is catching the event instead of
XFocusProxyWindow, looks like the real bug is because of that, but I didn't
managed to trace why the event is being associated with XContentWindow.
As an ugly workaround I implemented the "dispatchEvent()" and
"handleFocusEvent()" under the "XContentWindow" class calling to
"parentFrame.handleFocusEvent(xev)" where parentFrame should be the real
main
window (XDecoratedPeer). This dirty hack works, but I don't think that
this is
the way to do it, as JDK6 works fine without implementing these methods
under
the "XContentWindow" class.
Date: Wed, 27 Feb 2013 16:45:11 +0100
From: Jaime Peñalba <jpenalbae@gmail.com>
To: awt-dev@openjdk.java.net
Last week I reported the following bug:
https://bugs.openjdk.java.net/show_bug.cgi?id=100300 but Anthony Petrov
suggested me to bring the topic here.
------------------------------------------------------------------------------------------------------------------------------
First of all this bug has been introduced on JDK7 as JDK6 works
perfectly under
enlightenmenet e16 window manager.
To reproduce this bug just run any java application under the window manager
e16 using JDK7. All my tests have been done using version "e16-1.0.11" and
openjdk-7u6-fcs-src-b24-28_aug_2012.zip. Here are the e16 binaries which I
compiled and which I'm using:
http://www.painsec.com/writeups/resources/misc/e16-1.0.11-bin.tar.bz2
Steps to reproduce the bug:
- Run any java swing/awt application under e16-1.0.11 window manager.
- Change focus to another window/application.
- Return focus to the java application.
- It will no longer allow you to write on any text field.
The problem is that once the java window loose the focus it never regains it
again loosing the ability to input text although mouse clicks still work
fine.
I'm not used to X11 programming neither to hacking the OpenJDK, anyway
trying
to hunt the bug I found that a proper focus event is handled in the
following
manner:
at
sun.awt.X11.XWindowPeer.handleFocusEvent(XWindowPeer.java:806)
at
sun.awt.X11.XDecoratedPeer.handleFocusEvent(XDecoratedPeer.java:225)
at
sun.awt.X11.XFocusProxyWindow.handleFocusEvent(XFocusProxyWindow.java:77)
at
sun.awt.X11.XFocusProxyWindow.dispatchEvent(XFocusProxyWindow.java:70)
at
sun.awt.X11.XBaseWindow.dispatchToWindow(XBaseWindow.java:1066)
at sun.awt.X11.XToolkit.dispatchEvent(XToolkit.java:577)
at sun.awt.X11.XToolkit.run(XToolkit.java:686)
at sun.awt.X11.XToolkit.run(XToolkit.java:607)
at java.lang.Thread.run(Thread.java:722)
But under e16 the event gets lost at:
at
sun.awt.X11.XBaseWindow.dispatchToWindow(XBaseWindow.java:1066)
at sun.awt.X11.XToolkit.dispatchEvent(XToolkit.java:577)
at sun.awt.X11.XToolkit.run(XToolkit.java:686)
at sun.awt.X11.XToolkit.run(XToolkit.java:607
The code sun.awt.X11.XBaseWindow.dispatchToWindow is as follows
/**
* Dispatches event to the grab Window or event source window
depending
* on whether the grab is active and on the event type
*/
static void dispatchToWindow(XEvent ev) {
XBaseWindow target = XAwtState.getGrabWindow();
if (target == null || !isGrabbedEvent(ev, target)) {
target =
XToolkit.windowToXWindow(ev.get_xany().get_window());
}
if (target != null && target.checkInitialised()) {
target.dispatchEvent(ev);
}
}
After some tinkering I discovered that the obtained "XBaseWindow target"
points
to a "XContentWindow" object instead of a "XFocusProxyWindow" object as
expected, and the "XContentWindow" class extending "XWindow" doesn't have a
"dispatchEvent()" method so the event gets lost forever.
I don't know why XContentWindow is catching the event instead of
XFocusProxyWindow, looks like the real bug is because of that, but I didn't
managed to trace why the event is being associated with XContentWindow.
As an ugly workaround I implemented the "dispatchEvent()" and
"handleFocusEvent()" under the "XContentWindow" class calling to
"parentFrame.handleFocusEvent(xev)" where parentFrame should be the real
main
window (XDecoratedPeer). This dirty hack works, but I don't think that
this is
the way to do it, as JDK6 works fine without implementing these methods
under
the "XContentWindow" class.
- duplicates
-
JDK-7147075 JTextField doesn't get focus or loses focus forever
- Resolved
-
JDK-8013429 Swing apps stop accepting keyboard input when run over X Windows
- Closed
- relates to
-
JDK-6522725 Component in a minimized Frame has focus and receives key events
- Closed
-
JDK-6613426 two WM_TAKE_FOCUS messages on one mouse click in GNOME Metacity 2.16.0
- Closed