Uses of Class
com.jgoodies.forms.layout.ConstantSize
Packages that use ConstantSize
Package
Description
Contains optional builder classes of the Forms framework.
Consists of optional Forms framework factory classes that assist you
in building consistent forms quickly.
Contains the core classes of the JGoodies Forms framework:
layout manager, column and row specifications, sizes and cell constraints.
Consists of Forms framework helper classes for unit conversion and layout styles.
-
Uses of ConstantSize in com.jgoodies.forms.builder
Methods in com.jgoodies.forms.builder with parameters of type ConstantSizeModifier and TypeMethodDescriptionvoid
ButtonBarBuilder.addStrut
(ConstantSize width) Deprecated.Adds a horizontal strut of the specified width.void
ButtonBarBuilder2.addStrut
(ConstantSize width) Adds a horizontal strut of the specified width.void
ButtonStackBuilder.addStrut
(ConstantSize size) Adds a strut of a specified size.void
DefaultFormBuilder.setLineGapSize
(ConstantSize lineGapSize) Sets the size of gaps between component lines using the given constant size.void
DefaultFormBuilder.setParagraphGapSize
(ConstantSize paragraphGapSize) Sets the size of gaps between paragraphs using the given constant size. -
Uses of ConstantSize in com.jgoodies.forms.factories
Methods in com.jgoodies.forms.factories that return ConstantSizeModifier and TypeMethodDescriptionBorders.EmptyBorder.bottom()
Returns this border's bottom size.Borders.EmptyBorder.left()
Returns this border's left size.Borders.EmptyBorder.right()
Returns this border's right size.Borders.EmptyBorder.top()
Returns this border's top size.Methods in com.jgoodies.forms.factories with parameters of type ConstantSizeModifier and TypeMethodDescriptionstatic Border
Borders.createEmptyBorder
(ConstantSize top, ConstantSize left, ConstantSize bottom, ConstantSize right) Creates and returns anEmptyBorder
with the specified gaps.static ColumnSpec
FormFactory.createGapColumnSpec
(ConstantSize gapWidth) Deprecated.static RowSpec
FormFactory.createGapRowSpec
(ConstantSize gapHeight) Deprecated.Replaced byRowSpec.createGap(ConstantSize)
. -
Uses of ConstantSize in com.jgoodies.forms.layout
Fields in com.jgoodies.forms.layout declared as ConstantSizeModifier and TypeFieldDescriptionstatic final ConstantSize
Sizes.DLUX1
static final ConstantSize
Sizes.DLUX11
static final ConstantSize
Sizes.DLUX14
static final ConstantSize
Sizes.DLUX2
static final ConstantSize
Sizes.DLUX21
21 horizontal dialog units.static final ConstantSize
Sizes.DLUX3
static final ConstantSize
Sizes.DLUX4
static final ConstantSize
Sizes.DLUX5
static final ConstantSize
Sizes.DLUX6
static final ConstantSize
Sizes.DLUX7
static final ConstantSize
Sizes.DLUX8
static final ConstantSize
Sizes.DLUX9
static final ConstantSize
Sizes.DLUY1
static final ConstantSize
Sizes.DLUY11
static final ConstantSize
Sizes.DLUY14
static final ConstantSize
Sizes.DLUY2
static final ConstantSize
Sizes.DLUY21
21 vertical dialog units.static final ConstantSize
Sizes.DLUY3
static final ConstantSize
Sizes.DLUY4
static final ConstantSize
Sizes.DLUY5
static final ConstantSize
Sizes.DLUY6
static final ConstantSize
Sizes.DLUY7
static final ConstantSize
Sizes.DLUY8
static final ConstantSize
Sizes.DLUY9
static final ConstantSize
Sizes.ZERO
Methods in com.jgoodies.forms.layout that return ConstantSizeModifier and TypeMethodDescriptionstatic ConstantSize
Creates and returns an instance ofConstantSize
from the given encoded size and unit description.static ConstantSize
Sizes.dluX
(int value) Creates and returns a ConstantSize for the specified value in horizontal dialog units.static ConstantSize
Sizes.dluY
(int value) Creates and returns a ConstantSize for the specified value in vertical dialog units.static ConstantSize
Sizes.pixel
(int value) Creates and returns a ConstantSize for the specified pixel value.Methods in com.jgoodies.forms.layout with parameters of type ConstantSizeModifier and TypeMethodDescriptionstatic ColumnSpec
ColumnSpec.createGap
(ConstantSize gapWidth) Creates and returns aColumnSpec
that represents a gap with the specifiedConstantSize
.static RowSpec
RowSpec.createGap
(ConstantSize gapHeight) Creates and returns aRowSpec
that represents a gap with the specifiedConstantSize
. -
Uses of ConstantSize in com.jgoodies.forms.util
Methods in com.jgoodies.forms.util that return ConstantSizeModifier and TypeMethodDescriptionabstract ConstantSize
LayoutStyle.getButtonBarPad()
Returns a pad used to separate a button bar from a component.abstract ConstantSize
LayoutStyle.getDialogMarginX()
Returns this style's horizontal margin for general dialogs.abstract ConstantSize
LayoutStyle.getDialogMarginY()
Returns this style's vertical margin for general dialogs.abstract ConstantSize
LayoutStyle.getLabelComponentPadX()
Returns a gap used to separate a label and associated control.abstract ConstantSize
LayoutStyle.getLinePad()
Returns a narrow vertical pad used to separate lines.abstract ConstantSize
LayoutStyle.getNarrowLinePad()
Returns a narrow vertical pad used to separate lines.abstract ConstantSize
LayoutStyle.getParagraphPad()
Returns a pad used to separate paragraphs.abstract ConstantSize
LayoutStyle.getRelatedComponentsPadX()
Returns a horizontal gap used to separate related controls.abstract ConstantSize
LayoutStyle.getRelatedComponentsPadY()
Returns a vertical gap used to separate related controls.abstract ConstantSize
LayoutStyle.getTabbedDialogMarginX()
Returns this style's horizontal margin for dialogs that consist of a tabbed pane.abstract ConstantSize
LayoutStyle.getTabbedDialogMarginY()
Returns this style's vertical margin for dialogs that consist of a tabbed pane.abstract ConstantSize
LayoutStyle.getUnrelatedComponentsPadX()
Returns a horizontal gap used to separate unrelated controls.abstract ConstantSize
LayoutStyle.getUnrelatedComponentsPadY()
Returns a vertical gap used to separate unrelated controls.
ColumnSpec.createGap(ConstantSize)
.