Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4138555

JDK1.2Beta4-F,Win95,window look: buttons not painting focus

XMLWordPrintable

      CONF: JDK1.2Beta4F, Window95, Window look.

      Any button(incliding check box, radio,and toggle) doesn't paint focus at windows95 and only in window look.

      1) Run SwingSet
      2) Switch look to motif and then to window look(directly switch to window causes exception(bug4138077) sometime)
      3) Select 'Buttons' tab
      4) Make sure 'Paint Focus' is checked
      5) Press a button
      6) Focus is not painted
      bae-chul.kim@eng 1998-05-14

      Name: skT88420 Date: 04/19/99


      Running an unsigned Java applet using Swing 1.0.3. The applet creates numerous JDialogs from JOptionPanes. The client machine is Windows95/98 (works fine on NT), and the client is using the 1.1 Java Plug-in. (I was unable to identify if this bug was a JFC or plug-in bug.)

      When the client machine views the very first instance of a JOptionPane dialog in the applet, the buttons at the bottom of the JOptionPane are partially cut off. However, the next time the user views a JOptionPane in the course of the same applet, the JOptionPane dialog will display in full. This behavior is somewhat inconsistent: Sometimes the second instance of a JOptionPane is cut off instead of or in addition to the first, and sometimes the problem doesn't occur at all. However, the bug occurs about 90% of the time.

      Here is the relevant chunk of code:

      public static void showMessageDialog(Component parentComponent,
      Object message, String title, int messageType)
      {
      parentComponent.setEnabled(false);

              JOptionPane pane = new JOptionPane(message, messageType);
              JDialog dialog = pane.createDialog(parentComponent, title);

              dialog.setResizable(false);

              dialog.setVisible(true);
              dialog.dispose();

      parentComponent.setEnabled(true);
      }
      ======================================================================

            duke J. Duke
            bkimsunw Bae-chul Kim (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: