-
Bug
-
Resolution: Fixed
-
P3
-
1.3.0
-
linux-fcs
-
x86
-
linux
-
Verified
Name: ks88420 Date: 08/30/2000
java version "1.3.0beta_refresh"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0beta_refresh-b09)
Java HotSpot(TM) Client VM (build 1.3.0beta-b07, mixed mode)
Executing this code on Linux using the 1.3.0 Beta.
Using the Gnome desktop, when the test frame is iconified and deiconified, the
println statements are executed. However, when using KDE, these events do not
occur. Is this a limitation with KDE, or something to do with the 1.3 beta?
Test code below:
import java.awt.*;
import java.awt.event.*;
public class Test implements WindowListener
{
Frame frame;
static public void main(String args[]) {
Test test = new Test();
test.frame = new Frame();
test.frame.addWindowListener(test);
test.frame.setBounds(100, 100, 400, 400);
test.frame.setVisible(true);
}
public void windowOpened(WindowEvent e) {
System.out.println("windowOpened");
}
public void windowClosing(WindowEvent e) {
System.out.println("windowClosing");
frame.setVisible(false);
}
public void windowClosed(WindowEvent e) {
System.out.println("windowClosed");
}
public void windowIconified(WindowEvent e) {
System.out.println("windowIconified");
}
public void windowDeiconified(WindowEvent e) {
System.out.println("windowDeiconified");
}
public void windowActivated(WindowEvent e) {}
public void windowDeactivated(WindowEvent e) {}
}
(Review ID: 108834)
======================================================================
Name: ks88420 Date: 09/06/2000
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0beta_refresh-b09)
Java HotSpot(TM) Client VM (build 1.3.0beta-b07, mixed mode)
After installing Forte4j from forte_ce_1_0_1.class (build 842) under Linux, the
menus do not work. A minimally sized square box pops up and then immediately
goes away, when a menu (e.g., File, Edit, View, etc.) is clicked on.
When I run it as "forte4j.sh -classic", clicking on a menu will drop down a
correctly rendered menu, but it immediately disappears before a selection can be
made.
Note though, that I have ALSO installed this exact same forte4j build under
win98 and winNT4 with sun's jdk 1.3, and there were absolutely no problems.
I have also run NoMagic's MagicDrawUML product with this same jdk under Linux,
and all of its swing GUI operates correctly.
(Review ID: 109256)
======================================================================
- duplicates
-
JDK-4364255 The main window of Forte4J doesn't minimize(maximize) other IDE windows.
-
- Closed
-
- relates to
-
JDK-4390137 Frame is not getting visible in Linux once hidden
-
- Closed
-