net.mygwt.ui.client.widget.layout |
|
Java Source File Name | Type | Comment |
BorderLayout.java | Class | A border layout lays out it children, arranging and resizing its widgets to
fit in five regions: north, south, east, west, and center. |
BorderLayoutData.java | Class | Layout data describing a "region" in a border panel. |
FillLayout.java | Class | FillLayout lays out widgets in a single row or column, forcing
them to be the same size. |
FlowLayout.java | Class | Layout that positions its children using normal HTML layout
behavior. |
RowData.java | Class | Layout data for RowLayouts . |
RowLayout.java | Class | RowLayouts determine the size and position of the children of a
Container by placing them either in horizontal row or a
vertical column within the parent Container .
RowLayout aligns all widgets in one row if the type is set to horizontal, and
one column if it is set to vertical. |
StackLayout.java | Class | This Layout stacks all the widgets one on top of the other and resizes all
widgets to have the same size and location. |
TableLayout.java | Class | TableLayout allows you to easily render content into an HTML
table. |
TableLayoutData.java | Class | Layout data for TableLayout . |