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

No documentation for MetalLookAndFeel.setCurrentTheme()

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Unresolved
    • Icon: P4 P4
    • None
    • 1.4.1
    • client-libs
    • Fix Understood
    • x86
    • linux



      Name: rmT116609 Date: 01/22/2003


      FULL PRODUCT VERSION :
      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)


      FULL OPERATING SYSTEM VERSION : Vine Linux 2.5

      A DESCRIPTION OF THE PROBLEM :

      There's no API-doc for MetalLookAndFeel.setCurrentTheme() method. Can we have multiple MetalLookAndFeel with different MetalTheme in one AppContext?

       Actually, we are restricted to have only one MetalTheme in one AppContext. When we call setCurrentTheme(), it will partially affects component's rendering even if we did not call setLookAndFeel() nor updateUI(). Some properties are
      changed, some are not.

       This is a different case from 4804502. 4804502 is obviously a bug because AppContext is different. In this case, we are in one AppContext, and the specification of setCurrentTheme itself is ambiguous.


      REPRODUCIBILITY :
      This bug can be reproduced always.

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

      import javax.swing.*;
      import javax.swing.plaf.*;
      import javax.swing.plaf.metal.*;

      public class Test extends JFrame {
        public static void main(String[] args) {
          try {
            UIManager.setLookAndFeel(new MetalLookAndFeel());
          } catch (Exception ex) {
          }
          Test f = new Test();
          f.validate();
          f.show();
        }
        Test() {
          JPanel contentPane = (JPanel) this.getContentPane();
          contentPane.setLayout(new BorderLayout());
          this.setSize(new Dimension(400, 300));
          JPanel panel = new JPanel();
          JButton button = new JButton();
          button.setText("AFTER CLICKING THIS, REPAINT THE FRAME");
          button.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(ActionEvent e) {
              changeOnlyCurrentTheme();
            }
          });
          contentPane.add(panel, BorderLayout.CENTER);
          panel.add(button, null);
          panel.add(new JSlider(), null);
          panel.add(new JProgressBar(), null);
          panel.add(new JCheckBox("check"), null);
          panel.add(new JComboBox(), null);
          panel.add(new JScrollBar(), null);

        }

        void changeOnlyCurrentTheme() {
            MetalLookAndFeel.setCurrentTheme(new DefaultMetalTheme() {
              private ColorUIResource color = new ColorUIResource(Color.red);
              private FontUIResource font = new FontUIResource(new Font("Dialog",
      Font.BOLD, 40));
              protected ColorUIResource getBlack() { return color; }
              protected ColorUIResource getWhite() { return color; }
              protected ColorUIResource getPrimary1() { return color; }
              protected ColorUIResource getPrimary2() { return color; }
              protected ColorUIResource getPrimary3() { return color; }
              protected ColorUIResource getSecondary1() { return color; }
              protected ColorUIResource getSecondary2() { return color; }
              protected ColorUIResource getSecondary3() { return color; }
              public FontUIResource getControlTextFont() { return font; }
              public FontUIResource getSystemTextFont() { return font; }
              public FontUIResource getUserTextFont() { return font; }
              public FontUIResource getMenuTextFont() { return font; }
              public FontUIResource getWindowTitleFont() { return font; }
              public FontUIResource getSubTextFont() { return font; }
            });
        }
      }

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

            Unassigned Unassigned
            rmandalasunw Ranjith Mandala (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Imported:
              Indexed: