Example usage for Java com.vaadin.client LayoutManager fields, constructors, methods, implement or subclass
The text is from its open source code.
void | addElementResizeListener(Element element, ElementResizeListener listener) Adds a listener that will be notified whenever the size of a specific element changes. |
LayoutManager | get(ApplicationConnection connection) Gets the layout manager associated with the given ApplicationConnection . |
int | getInnerHeight(Element element) Gets the inner height (excluding margins, paddings and borders) of the given element, provided that it has been measured. |
int | getInnerWidth(Element element) Gets the inner width (excluding margins, paddings and borders) of the given element, provided that it has been measured. |
int | getOuterHeight(Element element) Gets the outer height (including margins, paddings and borders) of the given element, provided that it has been measured. |
int | getOuterWidth(Element element) Gets the outer width (including margins, paddings and borders) of the given element, provided that it has been measured. |
void | registerDependency(ManagedLayout owner, Element element) Registers that a ManagedLayout is depending on the size of an Element. |
void | removeElementResizeListener(Element element, ElementResizeListener listener) Removes an element resize listener from the provided element. |
void | setNeedsMeasure(ComponentConnector component) Informs this LayoutManager that the size of a component might have changed. |
void | unregisterDependency(ManagedLayout owner, Element element) Registers that a ManagedLayout is no longer depending on the size of an Element. |