-
Bug
-
Resolution: Fixed
-
P4
-
1.4.0
-
03
-
generic, x86
-
generic, windows_2000
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2117725 | 1.4.2 | Denis Mikhalkin | P4 | Resolved | Fixed | mantis |
If a Window is set to unfocusable by Window.setFocusableWindow(false), any action, e.g., clicking on the window to try to give it focus, should not generate any focus event by that action, and the focus should remain in the same component that has focus previously.
One of the requesters of setFocusableWindow is the Input Method Framework, and due to this problem, IMF needs to add some workaround.
naoto.sato@Eng 2001-04-30
Name: rpR10076 Date: 08/02/2001
The following testcase can be used to demonstrate the problem:
import java.awt.*;
import java.awt.event.*;
public class Test {
public static void main(String[] args) {
Frame frame;
Window window;
Button button1;
Button button2;
frame = new Frame("test");
button1 = new Button("button1");
button1.addFocusListener(new MyFocusListener());
button2 = new Button("button2");
frame.setSize(200, 200);
frame.setLocation(200, 200);
frame.add(button1);
window = new Window(frame);
window.setSize(100, 100);
window.setFocusableWindowState(false);
window.add(button2);
frame.setVisible(true);
window.setVisible(true);
}
}
class MyFocusListener implements FocusListener {
public void focusGained(FocusEvent evt) {
System.out.println("Focus gained");
}
public void focusLost(FocusEvent evt) {
System.out.println("Focus lost");
}
}
======================================================================
One of the requesters of setFocusableWindow is the Input Method Framework, and due to this problem, IMF needs to add some workaround.
naoto.sato@Eng 2001-04-30
Name: rpR10076 Date: 08/02/2001
The following testcase can be used to demonstrate the problem:
import java.awt.*;
import java.awt.event.*;
public class Test {
public static void main(String[] args) {
Frame frame;
Window window;
Button button1;
Button button2;
frame = new Frame("test");
button1 = new Button("button1");
button1.addFocusListener(new MyFocusListener());
button2 = new Button("button2");
frame.setSize(200, 200);
frame.setLocation(200, 200);
frame.add(button1);
window = new Window(frame);
window.setSize(100, 100);
window.setFocusableWindowState(false);
window.add(button2);
frame.setVisible(true);
window.setVisible(true);
}
}
class MyFocusListener implements FocusListener {
public void focusGained(FocusEvent evt) {
System.out.println("Focus gained");
}
public void focusLost(FocusEvent evt) {
System.out.println("Focus lost");
}
}
======================================================================
- backported by
-
JDK-2117725 Action to unfocusable window should not generate any focus event
-
- Resolved
-
- duplicates
-
JDK-4587678 Unable to select an item in the combo popup
-
- Closed
-
- relates to
-
JDK-5101912 MouseDrag events are not delivered to the component when they are non-focusable
-
- Open
-
-
JDK-4840551 IMFTest failure - no prompt commit from lookup choice operation
-
- Closed
-
-
JDK-4293626 RFE: Need support for focus-free windows
-
- Resolved
-