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

JMenuItem with HTML text does not highlight when mouse moves over it

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P4 P4
    • None
    • 1.3.1_06, 1.4.1, 1.4.1_03, 1.4.2
    • client-libs

      Name: jk109818 Date: 06/17/2003


      FULL PRODUCT VERSION :
      java version "1.4.1_03"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_03-b02)
      Java HotSpot(TM) Client VM (build 1.4.1_03-b02, mixed mode)

      FULL OS VERSION :
      ver Win 2000 professional

      A DESCRIPTION OF THE PROBLEM :
      In the windows LnF if a JMenuItem's text is set up with html then it does not highlight when the mouse moves over it. As the JMenuItem's background colour darkens when the mouse moves over it, it is like trying to read black text on a black background.

      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      Run the app. click on the menu and move the mouse over the menu items.

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      When the mouse moves over 'Item 2' in the menu then I expect the text to turn white as with 'Item 1' and 'Item 3'.
      ACTUAL -
      The text remains black and it is impossible to read on the dark background.

      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      import java.awt.*;
      import java.awt.event.*;
      import javax.swing.*;

      public class TestApp extends JFrame
      {
          /**
           * Default constructor.
           */
          public TestApp() {
              super("TestApp");

              this.addWindowListener(new WindowAdapter() {
                  public void windowClosing(WindowEvent ev) {
                      System.exit(0);
                  }
              });

              JMenuBar menuBar = new JMenuBar();

              JMenu menu = new JMenu("Menu 1");

              JMenuItem item1 = new JMenuItem("Item 1");
              item1.addActionListener(new ActionListener() {
                  public void actionPerformed(ActionEvent ev) {
                      System.out.println("Item 1 has been clicked.");
                  }
              });

              JMenuItem item2 = new JMenuItem("<html><body>Item 2<body>");
              item2.addActionListener(new ActionListener() {
                  public void actionPerformed(ActionEvent ev) {
                      System.out.println("Item 2 has been clicked.");
                  }
              });

              JMenuItem item3 = new JMenuItem("Item 3");
              item3.addActionListener(new ActionListener() {
                  public void actionPerformed(ActionEvent ev) {
                      System.out.println("Item 3 has been clicked.");
                  }
              });

              menu.add(item1);
              menu.add(item2);
              menu.add(item3);

              menuBar.add(menu);

              this.setJMenuBar(menuBar);

              try {
                  UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
                  SwingUtilities.updateComponentTreeUI(SwingUtilities.getRoot(this));
              } catch (Exception e) {
                  System.out.println("Failed loading L&F: ");
                  System.out.println(e);
              }

              this.setSize(300, 200);
              this.setVisible(true);
          }


          /**
           * Application startup method.
           */
          public static void main(String[] args) {
              new TestApp();
          }
      }

      ---------- END SOURCE ----------
      (Review ID: 188364)
      ======================================================================

            Unassigned Unassigned
            jkimsunw Jeffrey Kim (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: