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

JInternalFrame created with inconifiable value set to true is not iconifiable

XMLWordPrintable

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


      A JInternalFrame created by using the constructor
      JInternalFrame(String, true, true, true, true)
      is not iconifiable.

      The following application demonstrates this.

      ============================================================================
      /*
       * JInternalFrameBug.java
       * An internal frame created by using the constructor
       * JInternalFrame(String, true, true, true, true) is
       * not iconifiable
       *
       */

      import com.sun.java.swing.*;
      import java.awt.Color;
      import java.awt.BorderLayout;
      import java.awt.GridLayout;
      import java.awt.event.*;

      public class JInternalFrameBug extends JPanel {
         JInternalFrame internalFrame = new JInternalFrame("Internal Frame", true, true, true, true);

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

         public JInternalFrameBug() {
            JFrame frame = new JFrame("JInternalFrame Test");
            JPanel infoPanel = new JPanel();
            JDesktopPane dpane = new JDesktopPane();

            frame.setLayout(new BorderLayout());
            frame.setBackground(Color.white);
            dpane.setOpaque(true);
            dpane.setBackground(Color.pink);
            internalFrame.setBackground(Color.blue);
            internalFrame.setBounds(150, 10, 200, 250);
            dpane.add(internalFrame, JLayeredPane.PALETTE_LAYER);
            dpane.validate();
            dpane.repaint();

            infoPanel.setLayout(new GridLayout(0,1));
            infoPanel.add(new JLabel("new JInternalFrame(\"Internal Frame\", true, true, true, true)"));
            infoPanel.add(new JLabel("Should be resizable, closable, maximizable, and iconfiable."));
            frame.add(BorderLayout.NORTH, infoPanel);
            frame.add(BorderLayout.CENTER, dpane);

            frame.addWindowListener(new WindowAdapter() {
                   public void windowClosing(WindowEvent e) {System.exit(0);}
                   public void windowClosed(WindowEvent e) {System.exit(0);}
            });

            frame.pack();
            frame.setSize(500, 400);
            frame.setVisible(true);
         }
      }
      ============================================================================

            tballsunw Tom Ball (Inactive)
            gaurisha Gauri Sharma (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: