| java.lang.Object com.xoetrope.builder.w3c.html.XHtmlLayout
XHtmlLayout | public class XHtmlLayout implements LayoutManager(Code) | | A layout manager for html pages. Components flow along the page length occupying
slots that span the width of the container.
Copyright (c) Xoetrope Ltd., 2002-2006
$Revision: 1.2 $
License: see License.txt
|
XHtmlLayout | public XHtmlLayout(XHtmlBuilder htmlBuilder)(Code) | | Creates a new layout manager
Parameters: htmlBuilder - the html builder for the current document |
addLayoutComponent | public void addLayoutComponent(String name, Component comp)(Code) | | If the layout manager uses a per-component string,
adds the component comp to the layout,
associating it
with the string specified by name .
Parameters: name - the string to be associated with the component Parameters: comp - the component to be added |
layoutContainer | public void layoutContainer(Container parent)(Code) | | Lays out the specified container.
Parameters: parent - the container to be laid out |
preferredLayoutSize | public Dimension preferredLayoutSize(Container parent)(Code) | | Calculates the preferred size dimensions for the specified
container, given the components it contains.
Parameters: parent - the container to be laid out See Also: XHtmlLayout.minimumLayoutSize |
removeLayoutComponent | public void removeLayoutComponent(Component comp)(Code) | | Removes the specified component from the layout.
Parameters: comp - the component to be removed |
|
|