Uses of Interface
com.jgoodies.forms.layout.Size
-
Packages that use Size Package Description com.jgoodies.forms.layout Contains the core classes of the JGoodies Forms framework: layout manager, column and row specifications, sizes and cell constraints.com.jgoodies.forms.util Consists of Forms framework helper classes for unit conversion and layout styles. -
-
Uses of Size in com.jgoodies.forms.layout
Classes in com.jgoodies.forms.layout that implement Size Modifier and Type Class Description classBoundedSizeDescribes sizes that provide lower and upper bounds as used by the JGoodies FormLayout.classConstantSizeAn implementation of theSizeinterface that represents constant sizes described by a value and unit, for example: 10 pixel, 15 point or 4 dialog units.classPrototypeSizeASizeimplementation that computes its width and height by a prototype String.(package private) static classSizes.ComponentSizeAn ordinal-based serializable typesafe enumeration that implements theSizeinterface for the component sizes: min, pref, default.Fields in com.jgoodies.forms.layout declared as Size Modifier and Type Field Description private SizeBoundedSize. basisHolds the base size.private SizeBoundedSize. lowerBoundHolds an optional lower bound.private SizeFormSpec. sizeHolds the size that describes how to size this column or row.private SizeBoundedSize. upperBoundHolds an optional upper bound.Methods in com.jgoodies.forms.layout that return Size Modifier and Type Method Description static SizeSizes. bounded(Size basis, Size lowerBound, Size upperBound)Creates and returns a BoundedSize for the given basis using the specified lower and upper bounds.SizeBoundedSize. getBasis()Returns the base size, which is not-null.SizeBoundedSize. getLowerBound()Returns the optional lower bound.SizeFormSpec. getSize()Returns the size.SizeBoundedSize. getUpperBound()Returns the optional upper bound.private SizeFormSpec. parseAtomicSize(java.lang.String token)Decodes and returns an atomic size that is either a constant size or a component size.private SizeFormSpec. parseBoundedSize(java.lang.String token)private SizeFormSpec. parseOldBoundedSize(java.lang.String token, boolean setMax)Parses an encoded compound size and sets the size fields.private SizeFormSpec. parseSize(java.lang.String token)Parses an encoded size spec and returns the size.Methods in com.jgoodies.forms.layout with parameters of type Size Modifier and Type Method Description static SizeSizes. bounded(Size basis, Size lowerBound, Size upperBound)Creates and returns a BoundedSize for the given basis using the specified lower and upper bounds.java.lang.StringLayoutMap. columnPut(java.lang.String key, Size value)private static booleanFormSpec. isConstant(Size aSize)java.lang.StringLayoutMap. rowPut(java.lang.String key, Size value)(package private) voidFormSpec. setSize(Size size)Constructors in com.jgoodies.forms.layout with parameters of type Size Constructor Description BoundedSize(Size basis, Size lowerBound, Size upperBound)Constructs a BoundedSize for the given basis using the specified lower and upper bounds.ColumnSpec(FormSpec.DefaultAlignment defaultAlignment, Size size, double resizeWeight)Constructs a ColumnSpec for the given default alignment, size and resize weight.ColumnSpec(Size size)Constructs a ColumnSpec for the given size using the default alignment, and no resizing.FormSpec(FormSpec.DefaultAlignment defaultAlignment, Size size, double resizeWeight)Constructs aFormSpecfor the given default alignment, size, and resize weight.RowSpec(FormSpec.DefaultAlignment defaultAlignment, Size size, double resizeWeight)Constructs a RowSpec from the given default orientation, size, and resize weight.RowSpec(Size size)Constructs a RowSpec for the given size using the default alignment, and no resizing. -
Uses of Size in com.jgoodies.forms.util
Fields in com.jgoodies.forms.util declared as Size Modifier and Type Field Description private static SizeMacLayoutStyle. BUTTON_HEIGHTprivate static SizeWindowsLayoutStyle. BUTTON_HEIGHTprivate static SizeMacLayoutStyle. BUTTON_WIDTHprivate static SizeWindowsLayoutStyle. BUTTON_WIDTHMethods in com.jgoodies.forms.util that return Size Modifier and Type Method Description abstract SizeLayoutStyle. getDefaultButtonHeight()Returns this style's default button height.SizeMacLayoutStyle. getDefaultButtonHeight()SizeWindowsLayoutStyle. getDefaultButtonHeight()abstract SizeLayoutStyle. getDefaultButtonWidth()Returns this style's default button width.SizeMacLayoutStyle. getDefaultButtonWidth()SizeWindowsLayoutStyle. getDefaultButtonWidth()
-