Package org.eclipse.swt.layout
SWT layout classes.
Package Specification
This package contains several standard layout classes which provide automated positioning and sizing support for SWT widgets.-
Class Summary Class Description FillLayout FillLayout
is the simplest layout class.FormAttachment Instances of this class are used to define the edges of a control within aFormLayout
.FormData Instances of this class are used to define the attachments of a control in aFormLayout
.FormLayout Instances of this class control the position and size of the children of a composite control by usingFormAttachments
to optionally configure the left, top, right and bottom edges of each child.GridData GridData
is the layout data object associated withGridLayout
.GridLayout Instances of this class lay out the control children of aComposite
in a grid.RowData Each control controlled by aRowLayout
can have its initial width and height specified by setting aRowData
object into the control.RowLayout Instances of this class determine the size and position of the children of aComposite
by placing them either in horizontal rows or vertical columns within the parentComposite
.