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

JSplitPane: preserve "hidden" state of one component on resize of parent frame

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 1.3.1_02
    • 1.3.0, 1.3.1_01
    • client-libs
    • 02
    • x86, sparc
    • solaris_8, windows_nt



        Name: krC82822 Date: 03/14/2001


        14 Mar 2001, eval1127@eng -- see also # 4407335 and resizeWeight property notes.
        Perhaps we should add a "keepHidden" property.
        -----------
        java version "1.3.0"
        Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
        Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)

        I have a JFrame with a JSplitPane as the only component. I have set the
        JSplitPane to be OneTouchExpandable. When I run the code, if I hide one pane of
        the JSplitPane and resize the window horizontally, the hidden frame reappears.
        I think that on resize, the hidden frame should remain hidden instead of
        resizing back to its minimum size.

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

        public class Test {

          public static void main(String args[]) {
            JFrame f = new JFrame("SplitPane Problem");
            Container c = f.getContentPane();

            c.setLayout(new BorderLayout());

            JSplitPane splitPane = new JSplitPane
              (JSplitPane.HORIZONTAL_SPLIT, new JButton("TEST"),
               new JButton("TEST 2"));

            splitPane.setOneTouchExpandable(true);

            c.add(splitPane, BorderLayout.CENTER);

            f.pack();
            f.show();
          }
        }
        (Review ID: 118815)
        ======================================================================

              svioletsunw Scott Violet (Inactive)
              kryansunw Kevin Ryan (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: