Examples of preferredLayoutSize()


Examples of javax.swing.JSpinner.DefaultEditor.preferredLayoutSize()

    public void testDefaultEditor_LayoutSizes() {
        DefaultEditor defaultEditor = (DefaultEditor) spinner.createEditor(abstractModel);
        spinner.setEditor(defaultEditor);
        assertEquals(defaultEditor.minimumLayoutSize(spinner), Utilities.addInsets(
                defaultEditor.getTextField().getMinimumSize(), spinner.getInsets()));
        assertEquals(defaultEditor.preferredLayoutSize(spinner), Utilities.addInsets(
                defaultEditor.getTextField().getPreferredSize(), spinner.getInsets()));
    }

    public void testNumberEditor_NumberEditor() {
        spinner.getModel().setValue(new Integer(5));
View Full Code Here

Examples of javax.swing.OverlayLayout.preferredLayoutSize()

  void testWithoutChildren(TestHarness h)
  {
    h.checkPoint("withoutChildren");
    JPanel c = new JPanel();
    OverlayLayout l = new OverlayLayout(c);
    h.check(l.preferredLayoutSize(c).width, 0);
    h.check(l.preferredLayoutSize(c).height, 0);
  }

  /**
   * Tests this method with one child component.
View Full Code Here

Examples of javax.swing.OverlayLayout.preferredLayoutSize()

  {
    h.checkPoint("withoutChildren");
    JPanel c = new JPanel();
    OverlayLayout l = new OverlayLayout(c);
    h.check(l.preferredLayoutSize(c).width, 0);
    h.check(l.preferredLayoutSize(c).height, 0);
  }

  /**
   * Tests this method with one child component.
   *
 
View Full Code Here

Examples of javax.swing.OverlayLayout.preferredLayoutSize()

    c1.setMinimumSize(new Dimension(10, 10));
    c1.setPreferredSize(new Dimension(20, 20));
    c1.setMaximumSize(new Dimension(30, 30));
    c.add(c1);
    OverlayLayout l = new OverlayLayout(c);
    h.check(l.preferredLayoutSize(c).width, 20);
    h.check(l.preferredLayoutSize(c).height, 20);
  }

  /**
   * Tests this method with two child components.
View Full Code Here

Examples of javax.swing.OverlayLayout.preferredLayoutSize()

    c1.setPreferredSize(new Dimension(20, 20));
    c1.setMaximumSize(new Dimension(30, 30));
    c.add(c1);
    OverlayLayout l = new OverlayLayout(c);
    h.check(l.preferredLayoutSize(c).width, 20);
    h.check(l.preferredLayoutSize(c).height, 20);
  }

  /**
   * Tests this method with two child components.
   *
 
View Full Code Here

Examples of javax.swing.OverlayLayout.preferredLayoutSize()

    c2.setMinimumSize(new Dimension(40, 40));
    c2.setPreferredSize(new Dimension(50, 50));
    c2.setMaximumSize(new Dimension(60, 60));
    c.add(c2);
    OverlayLayout l = new OverlayLayout(c);
    h.check(l.preferredLayoutSize(c).width, 50);
    h.check(l.preferredLayoutSize(c).height, 50);
  }

  /**
   * Tests this method with 3 child components that have different alignment
View Full Code Here

Examples of javax.swing.OverlayLayout.preferredLayoutSize()

    c2.setPreferredSize(new Dimension(50, 50));
    c2.setMaximumSize(new Dimension(60, 60));
    c.add(c2);
    OverlayLayout l = new OverlayLayout(c);
    h.check(l.preferredLayoutSize(c).width, 50);
    h.check(l.preferredLayoutSize(c).height, 50);
  }

  /**
   * Tests this method with 3 child components that have different alignment
   * values.
 
View Full Code Here

Examples of javax.swing.OverlayLayout.preferredLayoutSize()

    c3.setPreferredSize(new Dimension(50, 50));
    c3.setMaximumSize(new Dimension(60, 60));
    c3.setAlignmentX(1.0F);
    c.add(c3);
    OverlayLayout l = new OverlayLayout(c);
    h.check(l.preferredLayoutSize(c).width, 75);
    h.check(l.preferredLayoutSize(c).height, 50);
  }

  /**
   * Tests this method with the wrong container.
View Full Code Here

Examples of javax.swing.OverlayLayout.preferredLayoutSize()

    c3.setMaximumSize(new Dimension(60, 60));
    c3.setAlignmentX(1.0F);
    c.add(c3);
    OverlayLayout l = new OverlayLayout(c);
    h.check(l.preferredLayoutSize(c).width, 75);
    h.check(l.preferredLayoutSize(c).height, 50);
  }

  /**
   * Tests this method with the wrong container.
   *
 
View Full Code Here

Examples of javax.swing.OverlayLayout.preferredLayoutSize()

    JPanel c1 = new JPanel();
    JPanel c2 = new JPanel();
    OverlayLayout l = new OverlayLayout(c1);
    try
      {
        h.check(l.preferredLayoutSize(c2).width, 30);
        h.fail("minimumLayoutSize must throw AWTError when "
               + "called with wrong container.");
      }
    catch (AWTError ex)
      {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.