|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.zkoss.zk.ui.AbstractComponent
org.zkoss.zk.ui.HtmlBasedComponent
org.zkoss.zul.impl.XulElement
org.zkoss.zul.LayoutRegion
public abstract class LayoutRegion
A layout region in a border layout.
Events:
onOpen, onSize.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class org.zkoss.zk.ui.HtmlBasedComponent |
|---|
HtmlBasedComponent.ExtraCtrl |
| Nested classes/interfaces inherited from class org.zkoss.zk.ui.AbstractComponent |
|---|
AbstractComponent.Children |
| Field Summary |
|---|
| Fields inherited from class org.zkoss.zk.ui.HtmlBasedComponent |
|---|
_zclass |
| Fields inherited from interface org.zkoss.zk.ui.Component |
|---|
APPLICATION_SCOPE, COMPONENT_SCOPE, DESKTOP_SCOPE, PAGE_SCOPE, REQUEST_SCOPE, SESSION_SCOPE, SPACE_SCOPE |
| Fields inherited from interface org.zkoss.zk.ui.sys.ComponentCtrl |
|---|
CE_BUSY_IGNORE, CE_DUPLICATE_IGNORE, CE_IMPORTANT, CE_NON_DEFERRABLE, CE_REPEAT_IGNORE |
| Constructor Summary | |
|---|---|
LayoutRegion()
|
|
| Method Summary | |
|---|---|
void |
beforeChildAdded(Component child,
Component refChild)
Default: does nothing. |
void |
beforeParentChanged(Component parent)
Default: does nothing. |
java.lang.String |
getBorder()
Returns the border. |
java.lang.String |
getCmargins()
Returns the collapsed margins, which is a list of numbers separated by comma. |
protected abstract int[] |
getDefaultCmargins()
Returns the default collapsed margin. |
java.lang.String |
getMargins()
Returns the margins, which is a list of numbers separated by comma. |
int |
getMaxsize()
Returns the maximum size of the resizing element. |
int |
getMinsize()
Returns the minimum size of the resizing element. |
abstract java.lang.String |
getPosition()
Returns this regions position (north/south/east/west/center). |
abstract java.lang.String |
getSize()
Returns the size of this region. |
java.lang.String |
getTitle()
Returns the title. |
java.lang.String |
getZclass()
Returns the ZK Cascading Style class(es) for this component. |
boolean |
isAutoscroll()
Returns whether enable overflow scrolling. |
boolean |
isCollapsible()
Returns whether set the initial display to collapse. |
boolean |
isFlex()
Returns whether to grow and shrink vertical/horizontal to fit their given space, so called flexibility. |
boolean |
isOpen()
Returns whether it is open (i.e., not collapsed. |
boolean |
isSplittable()
Returns whether enable the split functionality. |
protected void |
renderProperties(ContentRenderer renderer)
Renders the content of this component, excluding the enclosing tags and children. |
void |
service(AuRequest request,
boolean everError)
Processes an AU request. |
void |
setAutoscroll(boolean autoscroll)
Sets whether enable overflow scrolling. |
void |
setBorder(java.lang.String border)
Sets the border (either none or normal). |
void |
setCmargins(java.lang.String cmargins)
Sets the collapsed margins for the element "0,1,2,3" that direction is "top,left,right,bottom" Default: "3,3,3,3" for center, "0,3,3,0" for east and west, and "3,0,0,3" for north and south. |
void |
setCollapsible(boolean collapsible)
Sets whether set the initial display to collapse. |
void |
setFlex(boolean flex)
Sets whether to grow and shrink vertical/horizontal to fit their given space, so called flexibility. |
void |
setMargins(java.lang.String margins)
Sets margins for the element "0,1,2,3" that direction is "top,left,right,bottom" |
void |
setMaxsize(int maxsize)
Sets the maximum size of the resizing element. |
void |
setMinsize(int minsize)
Sets the minimum size of the resizing element. |
void |
setOpen(boolean open)
Opens or collapses the splitter. |
abstract void |
setSize(java.lang.String size)
Sets the size of this region. |
void |
setSplittable(boolean splittable)
Sets whether enable the split functionality. |
void |
setTitle(java.lang.String title)
Sets the title. |
| Methods inherited from class org.zkoss.zul.impl.XulElement |
|---|
clone, getContext, getCtrlKeys, getPopup, getTooltip, setContext, setContext, setCtrlKeys, setPopup, setPopup, setTooltip, setTooltip |
| Methods inherited from class org.zkoss.zk.ui.HtmlBasedComponent |
|---|
focus, getAction, getDraggable, getDroppable, getExtraCtrl, getHeight, getHflex, getLeft, getRenderdefer, getSclass, getStyle, getTooltiptext, getTop, getVflex, getWidth, getZindex, getZIndex, setAction, setClass, setDraggable, setDroppable, setFocus, setHeight, setHeightDirectly, setHflex, setHflexDirectly, setLeft, setLeftDirectly, setRenderdefer, setSclass, setStyle, setTooltiptext, setTop, setTopDirectly, setVflex, setWidth, setWidthDirectly, setZclass, setZindex, setZIndex, setZIndexDirectly |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public LayoutRegion()
| Method Detail |
|---|
public java.lang.String getBorder()
The border actually controls what CSS class to use: If border is null, it implies "none".
If you also specify the CSS class (HtmlBasedComponent.setClass(java.lang.String)), it overwrites
whatever border you specify here.
Default: "normal".
public void setBorder(java.lang.String border)
border - the border. If null or "0", "none" is assumed.public boolean isFlex()
Default: false.
public void setFlex(boolean flex)
public java.lang.String getMargins()
Default: "0,0,0,0".
public void setMargins(java.lang.String margins)
public boolean isAutoscroll()
Default: false.
public void setAutoscroll(boolean autoscroll)
public abstract java.lang.String getPosition()
Borderlayout.NORTH,
Borderlayout.SOUTH,
Borderlayout.EAST,
Borderlayout.WEST,
Borderlayout.CENTERpublic abstract void setSize(java.lang.String size)
HtmlBasedComponent.setHeight(String) and HtmlBasedComponent.setWidth(String). If this region
is North or South, this method will invoke
HtmlBasedComponent.setHeight(String). If this region is West or
East, this method will invoke HtmlBasedComponent.setWidth(String).
Otherwise it will throw a UnsupportedOperationException.
public abstract java.lang.String getSize()
HtmlBasedComponent.getHeight() and HtmlBasedComponent.getWidth(). If this region is
North or South, this method will invoke
HtmlBasedComponent.getHeight(). If this region is West or East,
this method will invoke HtmlBasedComponent.getWidth(). Otherwise it will throw a
UnsupportedOperationException.
public java.lang.String getTitle()
Default: null.
public void setTitle(java.lang.String title)
public boolean isSplittable()
Default: false.
public void setSplittable(boolean splittable)
public void setMaxsize(int maxsize)
public int getMaxsize()
Default: 2000.
public void setMinsize(int minsize)
public int getMinsize()
Default: 0.
public java.lang.String getCmargins()
setCmargins(java.lang.String),
getDefaultCmargins()public void setCmargins(java.lang.String cmargins)
Default: "3,3,3,3" for center, "0,3,3,0" for east and west, and "3,0,0,3" for north and south.
getCmargins(),
getDefaultCmargins()protected abstract int[] getDefaultCmargins()
public boolean isCollapsible()
It only applied when getTitle() is not null. (since 3.5.0)
Default: false.
public void setCollapsible(boolean collapsible)
It only applied when getTitle() is not null. (since 3.5.0)
public boolean isOpen()
isCollapsible() is not false.
Default: true.
public void setOpen(boolean open)
isCollapsible() is not false.
public java.lang.String getZclass()
HtmlBasedComponentDefault: null (the default value depends on element).
HtmlBasedComponent.setZclass(java.lang.String)) will completely replace the default style
of a component. In other words, the default style of a component
is associated with the default value of HtmlBasedComponent.getZclass().
Once it is changed, the default style won't be applied at all.
If you want to perform small adjustments, use HtmlBasedComponent.setSclass(java.lang.String)
instead.
getZclass in class HtmlBasedComponentHtmlBasedComponent.getSclass()
public void beforeChildAdded(Component child,
Component refChild)
AbstractComponent
beforeChildAdded in interface ComponentCtrlbeforeChildAdded in class AbstractComponentchild - the child to be added (never null).refChild - another child component that the new child
will be inserted before it. If null, the new child will be the
last child.ComponentCtrl.beforeChildAdded(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.Component)public void beforeParentChanged(Component parent)
AbstractComponent
beforeParentChanged in interface ComponentCtrlbeforeParentChanged in class AbstractComponentparent - the new parent. If null, it means detachment.ComponentCtrl.beforeParentChanged(org.zkoss.zk.ui.Component)
protected void renderProperties(ContentRenderer renderer)
throws java.io.IOException
HtmlBasedComponentSee also ZK Client-side Reference: Property Rendering
renderProperties in class XulElementjava.io.IOException
public void service(AuRequest request,
boolean everError)
Default: in addition to what are handled by service(org.zkoss.zk.au.AuRequest, boolean),
it also handles onOpen.
service in interface ComponentCtrlservice in class HtmlBasedComponenteverError - whether any error ever occured before
processing this request.AbstractComponent.setAuService(org.zkoss.zk.au.AuService)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||