com.extjs.gxt.ui.client.widget
クラス Layout

java.lang.Object
  extended by com.extjs.gxt.ui.client.event.BaseObservable
      extended by com.extjs.gxt.ui.client.widget.Layout
すべての実装インターフェース:
Observable
Direct Known Subclasses:
AnchorLayout, BorderLayout, ColumnLayout, FitLayout, FlowLayout, RowLayout, TableLayout

public abstract class Layout
extends BaseObservable

Layout provides the basic foundation for all other layout classes in GXT. It is a non-visual class that simply provides the base logic required to function as a layout. This class is intended to be extended.

Layout instances should not be shared with multiple containers.

See Also:
LayoutContainer

コンストラクタ 概要
Layout()
           
 
メソッド 概要
 java.lang.String getExtraStyle()
          Returns the extra style name.
 int getResizeDelay()
          Returns the window resize delay.
 boolean isRenderHidden()
          Returns true if the container will be render child components hidden.
 void layout()
           
 void setContainer(Container ct)
          Sets the layout's container.
 void setExtraStyle(java.lang.String extraStyle)
          Sets an optional extra CSS style name that will be added to the container.
 void setRenderHidden(boolean renderHidden)
          True to hide each contained component on render (defaults to false).
 void setResizeDelay(int resizeDelay)
          Sets the number of milliseconds to buffer resize events (defaults to 400).
 
クラス com.extjs.gxt.ui.client.event.BaseObservable から継承されたメソッド
addListener, fireEvent, fireEvent, getFiresEvents, hasListeners, hasListeners, removeAllListeners, removeListener, setFiresEvents
 
クラス java.lang.Object から継承されたメソッド
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタ 詳細

Layout

public Layout()
メソッド 詳細

layout

public void layout()

getExtraStyle

public java.lang.String getExtraStyle()
Returns the extra style name.

戻り値:
the extra style

getResizeDelay

public int getResizeDelay()
Returns the window resize delay.

戻り値:
the delay

isRenderHidden

public boolean isRenderHidden()
Returns true if the container will be render child components hidden.

戻り値:
the render hidden state

setContainer

public void setContainer(Container ct)
Sets the layout's container.

パラメータ:
ct - the container

setExtraStyle

public void setExtraStyle(java.lang.String extraStyle)
Sets an optional extra CSS style name that will be added to the container. This can be useful for adding customized styles to the container or any of its children using standard CSS rules.

パラメータ:
extraStyle - the extra style name

setRenderHidden

public void setRenderHidden(boolean renderHidden)
True to hide each contained component on render (defaults to false).

パラメータ:
renderHidden - true to render hidden

setResizeDelay

public void setResizeDelay(int resizeDelay)
Sets the number of milliseconds to buffer resize events (defaults to 400). Only applies when monitorResize = true.

パラメータ:
resizeDelay - the delay in milliseconds