-
Bug
-
Resolution: Fixed
-
P3
-
1.4.0, 1.4.2, 6
-
b72
-
generic, x86
-
generic, linux
Name: rmT116609 Date: 04/28/2003
FULL PRODUCT VERSION :
java version "1.4.2-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2-beta-b19)
Java HotSpot(TM) Client VM (build 1.4.2-beta-b19, 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)
java version "1.4.0-rc"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-rc-b91)
Java HotSpot(TM) Client VM (build 1.4.0-rc-b91, mixed mode)
FULL OS VERSION :
glibc-2.2.4-25mdk
Kernel: Linux 2.4.18-6mdk #1 Fri Mar 15 02:59:08 CET 2002
i686 unknown
Release: Mandrake Linux release 8.2 (Bluebird) for i586
A DESCRIPTION OF THE PROBLEM :
If either a MouseListener or MouseMotionListener is added to a JFrame's root pane, then the frame decoration will not move or resize the window nor will the pointer change icon. Only applies if the root pane is supplying the frame decoration. Does not apply to JInternalFrame, irrespective of whether listener is added to the internal or external frame root pane.
Tested on Metal PL&F. CDE/Motif and GTK PL&Fs do not appear to support this feature.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import javax.swing.*;
import java.awt.event.*;
class FrameBug {
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setUndecorated(true);
frame.getRootPane().setWindowDecorationStyle(
javax.swing.JRootPane.FRAME
);
// Either of the next two lines will do.
frame.getRootPane().addMouseListener(new MouseAdapter() {});
//frame.getRootPane().addMouseMotionListener(new MouseMotionAdapter() {});
frame.pack();
frame.setVisible(true);
}
}
---------- END SOURCE ----------
(Review ID: 184904)
======================================================================
FULL PRODUCT VERSION :
java version "1.4.2-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2-beta-b19)
Java HotSpot(TM) Client VM (build 1.4.2-beta-b19, 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)
java version "1.4.0-rc"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-rc-b91)
Java HotSpot(TM) Client VM (build 1.4.0-rc-b91, mixed mode)
FULL OS VERSION :
glibc-2.2.4-25mdk
Kernel: Linux 2.4.18-6mdk #1 Fri Mar 15 02:59:08 CET 2002
i686 unknown
Release: Mandrake Linux release 8.2 (Bluebird) for i586
A DESCRIPTION OF THE PROBLEM :
If either a MouseListener or MouseMotionListener is added to a JFrame's root pane, then the frame decoration will not move or resize the window nor will the pointer change icon. Only applies if the root pane is supplying the frame decoration. Does not apply to JInternalFrame, irrespective of whether listener is added to the internal or external frame root pane.
Tested on Metal PL&F. CDE/Motif and GTK PL&Fs do not appear to support this feature.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import javax.swing.*;
import java.awt.event.*;
class FrameBug {
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setUndecorated(true);
frame.getRootPane().setWindowDecorationStyle(
javax.swing.JRootPane.FRAME
);
// Either of the next two lines will do.
frame.getRootPane().addMouseListener(new MouseAdapter() {});
//frame.getRootPane().addMouseMotionListener(new MouseMotionAdapter() {});
frame.pack();
frame.setVisible(true);
}
}
---------- END SOURCE ----------
(Review ID: 184904)
======================================================================
- relates to
-
JDK-6491619 No mouse events from titlebar in JRootPane of JFrame
-
- Closed
-