| java.lang.Object com.google.gwt.user.client.ui.UIObject com.google.gwt.user.client.ui.Widget com.google.gwt.user.client.ui.Panel com.google.gwt.user.client.ui.ComplexPanel com.google.gwt.user.client.ui.CellPanel
All known Subclasses: com.google.gwt.user.client.ui.HorizontalPanel, com.google.gwt.user.client.ui.DockPanel, com.google.gwt.user.client.ui.VerticalPanel,
CellPanel | abstract public class CellPanel extends ComplexPanel (Code) | | A panel whose child widgets are contained within the cells of a table. Each
cell's size may be set independently. Each child widget can take up a subset
of its cell and can be aligned within it.
|
CellPanel | public CellPanel()(Code) | | |
getSpacing | public int getSpacing()(Code) | | Gets the amount of spacing between this panel's cells.
the inter-cell spacing, in pixels |
setBorderWidth | public void setBorderWidth(int width)(Code) | | Sets the width of the border to be applied to all cells in this panel. This
is particularly useful when debugging layouts, in that it allows you to see
explicitly the cells that contain this panel's children.
Parameters: width - the width of the panel's cell borders, in pixels |
setCellHeight | public void setCellHeight(Widget w, String height)(Code) | | Sets the height of the cell associated with the given widget, related to
the panel as a whole.
Parameters: w - the widget whose cell height is to be set Parameters: height - the cell's height, in CSS units |
setCellHorizontalAlignment | public void setCellHorizontalAlignment(Widget w, HorizontalAlignmentConstant align)(Code) | | Sets the horizontal alignment of the given widget within its cell.
Parameters: w - the widget whose horizontal alignment is to be set Parameters: align - the widget's horizontal alignment, as defined inHasHorizontalAlignment. |
setCellHorizontalAlignment | protected void setCellHorizontalAlignment(Element td, HorizontalAlignmentConstant align)(Code) | | |
setCellVerticalAlignment | public void setCellVerticalAlignment(Widget w, VerticalAlignmentConstant align)(Code) | | Sets the vertical alignment of the given widget within its cell.
Parameters: w - the widget whose vertical alignment is to be set Parameters: align - the widget's vertical alignment, as defined inHasVerticalAlignment. |
setCellVerticalAlignment | protected void setCellVerticalAlignment(Element td, VerticalAlignmentConstant align)(Code) | | |
setCellWidth | public void setCellWidth(Widget w, String width)(Code) | | Sets the width of the cell associated with the given widget, related to the
panel as a whole.
Parameters: w - the widget whose cell width is to be set Parameters: width - the cell's width, in CSS units |
setSpacing | public void setSpacing(int spacing)(Code) | | Sets the amount of spacing between this panel's cells.
Parameters: spacing - the inter-cell spacing, in pixels |
|
|