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

Swing Components all displayed too larg in deployment UI

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P2 P2
    • 7
    • 7
    • client-libs
    • 7
    • generic
    • generic

      All of the dialogs created by Deployment code in JDK7 are extra large - sometimes bigger than the screen.
      This happens either when running plugin or webstart from JDK7 with JDK7 jre, and does not happen when running plugin or webstart from JDK7 with JDK6 jre.

      It can also be seen in the following simple stand alone test case.
      The testcase uses the UITextArea class from deployment. If there is somethine we are doing wrong there please show us:


      import java.awt.*;
      import javax.swing.*;
      import javax.swing.border.*;

      public class Test1 {

          public Test1() {
              SwingUtilities.invokeLater(new Runnable() {
                  public void run() {
                      JDialog dialog = new JDialog((Dialog) null, true);

                      dialog.setTitle ("this is a test");

                      dialog.getContentPane().setLayout(new BorderLayout());
                      UITextArea t1 = new UITextArea();
                      UITextArea t2 = new UITextArea();
                      t1.setText("This is the text that goes on top");
                      t2.setText("This is the text that goes on right");


                      dialog.getContentPane().add(t1, BorderLayout.NORTH);
                      dialog.getContentPane().add(t2, BorderLayout.EAST);

                      JPanel pan = new JPanel();


                      dialog.getContentPane().add(pan, BorderLayout.SOUTH);

                      dialog.pack();
                      dialog.setResizable(false);
                      dialog.setLocation(100,100);
                      dialog.setVisible(true);
                  }
              });

          }
          public static void main(String[] argv) {
              new Test1();
          }

      private class UITextArea extends JTextArea
      {
          int preferred_width = 360;
          Image backgroundImage = null;

          /** Creates a new instance of UITextArea */
          public UITextArea() {

              JLabel label = new JLabel();

              // Set empty border
              setBorder(new EmptyBorder(new Insets(0, 5, 0, 0)));
              setEditable(false);
              setLineWrap(true);
              setWrapStyleWord(true);
              setFont(label.getFont());
              setRows(0);
              setHighlighter(null);
              invalidate();
          }

          /** Creates a new instance of UITextArea
           */
          public UITextArea(String text) {
              this();
              setText(text);
          }

          /** Creates a new instance of UITextArea with font size <fz>,
           * and specified preferred width.
           * This is used by the dialog UI template.
           */
          public UITextArea(int fz, int my_width, boolean bold) {
              this();
              preferred_width = my_width;
              JLabel label = new JLabel();
              Font system_font = label.getFont();
              Font new_font;
              if (bold) {
                    new_font= system_font.deriveFont(Font.BOLD,(float)fz);
              } else {
                    new_font= system_font.deriveFont((float)fz);
              }
              // Set empty border
              setBorder(new EmptyBorder(new Insets(0, 0, 0, 0)));
              setFont(new_font);
              invalidate();
          }

          public boolean isFocusTraversable() {
              return false;
          }

          public void setText(String text)
          {
              super.setText(text);
              invalidate();
          }

          public void setBackgroundImage(Image image) {
              backgroundImage = image;
              boolean isOpaque = (backgroundImage == null);
              setOpaque(isOpaque);
          }

          // use parents background color, not the UIResource, but the real color
          public void paintComponent(Graphics g) {
              if (backgroundImage != null) {
                  g.drawImage(backgroundImage, 0, 0, this);
              } else {
                  setBackground(new Color(
                      getParent().getBackground().getRGB()));
              }
              super.paintComponent(g);
          }

          public Dimension getPreferredSize() {
              Dimension d;
              if (backgroundImage != null) {
                  d = new Dimension(backgroundImage.getWidth(this),
                                    backgroundImage.getHeight(this));
              } else {
                  // if user hasn't set any preferred rows or columns,
                  // prefer a size that is 360 pixels wide
                  if ((getRows() == 0) && (getColumns() == 0)) {
                      int columns = (preferred_width / getColumnWidth());
                      setColumns(columns);
                      d = super.getPreferredSize();
                      setColumns(0);
                  } else {
                      d = super.getPreferredSize();
                  }
              }
              return d;
          }

      }

      }

            peterz Peter Zhelezniakov
            herrick Andy Herrick (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: