Package org.lobobrowser.html.renderer
Interface RenderableContainer
-
- All Known Implementing Classes:
HtmlBlockPanel,RBlock,RImgControl
public interface RenderableContainerA RenderableContainer is either usually a parent block or the root GUI component. It's is a Renderable or GUI component whose layout may be invalidated.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.awt.ComponentaddComponent(java.awt.Component component)voidaddDelayedPair(DelayedPair pair)voidclearDelayedPairs()voidfocus()java.util.CollectiongetDelayedPairs()java.awt.PointgetGUIPoint(int x, int y)java.awt.ColorgetPaintedBackgroundColor()RenderableContainergetParentContainer()voidinvalidateLayoutUpTree()voidrelayout()voidrepaint(int x, int y, int width, int height)voidupdateAllWidgetBounds()
-
-
-
Method Detail
-
addComponent
java.awt.Component addComponent(java.awt.Component component)
-
invalidateLayoutUpTree
void invalidateLayoutUpTree()
-
repaint
void repaint(int x, int y, int width, int height)
-
relayout
void relayout()
-
updateAllWidgetBounds
void updateAllWidgetBounds()
-
getPaintedBackgroundColor
java.awt.Color getPaintedBackgroundColor()
-
getGUIPoint
java.awt.Point getGUIPoint(int x, int y)
-
focus
void focus()
-
addDelayedPair
void addDelayedPair(DelayedPair pair)
-
getDelayedPairs
java.util.Collection getDelayedPairs()
-
getParentContainer
RenderableContainer getParentContainer()
-
clearDelayedPairs
void clearDelayedPairs()
-
-