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

No focus rectangle on checkbox with html-formatted text

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.4.0
    • client-libs



      Name: sv35042 Date: 10/18/2002


      FULL PRODUCT VERSION :
      Java HotSpot(TM) Client VM (build 1.4.0-b92, mixed mode)

      FULL OPERATING SYSTEM VERSION :
      glibc-2.2.4-19.3
      kernel 2.4.2-2
      Red Hat Linux release 7.2

      A DESCRIPTION OF THE PROBLEM :
      The checkbox

      JCheckBox cbx = new JCheckBox("Hi there");

      displays a focus rectangle around the text when the
      checkbox has focus.

      JCheckBox cbx = new JCheckBox("<html>Hi there</html>");

      does NOT. It receives focus, but does not display the focus
      rectangle.



      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      1. Put two checkboxes, one with regular text, one with html-
      formatted text, in the content pane of a JFrame.
      2. Show the frame.
      3. Tab thru the two checkboxes.

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      I think checkboxes (and anything else supporting html-
      formatted text) should behave consistently regardless of
      how the actual text is formatted.

      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      import javax.swing.*;
      import java.awt.*;
      public class KeySample extends ExitableJFrame{
        public static void main(String[] args) {
          final JFrame frame = new JFrame("Focus Test");
          final JWindow window = new JWindow(frame);
          final JComponent pane = (JComponent) window.getContentPane();

          final JCheckBox cbx1 = new JCheckBox("<html>Hi there</html>");
          pane.add(cbx1, BorderLayout.NORTH);

          final JCheckBox cbx2 = new JCheckBox("Hi there");
          pane.add(cbx2, BorderLayout.SOUTH);

          window.setSize(400,300);
          frame.show();
          window.show();
         }
      }
      ---------- END SOURCE ----------
      (Review ID: 158439)
      ======================================================================

            duke J. Duke
            svioletsunw Scott Violet (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: