-
Bug
-
Resolution: Fixed
-
P4
-
1.3.1_03, 1.4.1, 1.4.2
-
b33
-
x86
-
windows_2000, windows_xp
-
Verified
Name: jk109818 Date: 01/21/2003
FULL PRODUCT VERSION :
java version "1.3.1_03"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_03-b03)
Java HotSpot(TM) Client VM (build 1.3.1_03-b03, mixed mode)
java version "1.4.1_01"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_01-b01)
Java HotSpot(TM) Client VM (build 1.4.1_01-b01, mixed mode)
FULL OPERATING SYSTEM VERSION :
Microsoft Windows 2000 [Version 5.00.2195]
EXTRA RELEVANT SYSTEM CONFIGURATION :
Multi screen system, 3 screens:
Screen 1: Barco 8 bit static grayscale
Screen 2: Barco 8 bit static grayscale
Screen 3: Matrox 32 bit color.
Primary monitor is Screen 3.
A DESCRIPTION OF THE PROBLEM :
In a system that is set up as above, put the primary
monitor on the right through Windows Display Settings. This
will make the origin (0,0) correspond to the top left
corner of the rightmost monitor, and the other monitors on
the left will have negative co-ordinates ( (-2400,0), (-
1200, 0) in this case).
In such a scenario, any JDialog/JWindow that is positioned
on the non-primary monitors will not catch mouseEntered and
mouseExited events at all. The same JDialog/JWindow
positioned on the primary monitor, will catch all events.
However, mouseClicked events are caught consistently.
Attached is a simple program to reproduce this.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
1. Set up the system as above, make sure the primary
monitor is on the right.
2. Position a dialog on any of the monitors and listen for
mouseEntered or mouseExited events.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class TestFrame1 extends JDialog implements ComponentListener,
MouseListener
{
public static void main(String[] args) {
new TestFrame1 ();
}
public TestFrame1() {
super();
init();
}
private void init() {
setLocation (-2300, 100);
setSize (500, 300);
addListeners();
show();
}
private void addListeners(){
addComponentListener (this);
addMouseListener(this);
}
public void mouseExited(MouseEvent e){
System.err.println ("Mouse Exited");
}
public void mouseEntered(MouseEvent e){
System.err.println ("Mouse Entered");
}
public void mouseClicked (MouseEvent e) {
System.err.println ("Mouse Clicked");
}
public void mousePressed (MouseEvent e) {
}
public void mouseReleased (MouseEvent e){
}
public void componentMoved (ComponentEvent e) {
Component source = (Component)e.getSource();
System.err.println ("\ngetLocation() = " + source.getLocation
());
}
public void componentResized (ComponentEvent e) {
}
public void componentShown (ComponentEvent e){
}
public void componentHidden (ComponentEvent e){
}
}
---------- END SOURCE ----------
(Review ID: 179775)
======================================================================