Package com.google.gwt.user.client.ui
Class ComplexPanel
- java.lang.Object
-
- com.google.gwt.user.client.ui.UIObject
-
- com.google.gwt.user.client.ui.Widget
-
- com.google.gwt.user.client.ui.Panel
-
- com.google.gwt.user.client.ui.ComplexPanel
-
- All Implemented Interfaces:
HasAttachHandlers,HasHandlers,EventListener,HasVisibility,HasWidgets,HasWidgets.ForIsWidget,IndexedPanel,IndexedPanel.ForIsWidget,IsWidget,java.lang.Iterable<Widget>
- Direct Known Subclasses:
AbsolutePanel,CellPanel,DeckLayoutPanel,DeckPanel,DockLayoutPanel,FlowPanel,HTMLPanel,LayoutPanel,RenderablePanel,StackPanel
public abstract class ComplexPanel extends Panel implements IndexedPanel.ForIsWidget
Abstract base class for panels that can contain multiple child widgets.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.google.gwt.user.client.ui.UIObject
UIObject.DebugIdImpl, UIObject.DebugIdImplEnabled
-
Nested classes/interfaces inherited from interface com.google.gwt.user.client.ui.HasWidgets
HasWidgets.ForIsWidget
-
Nested classes/interfaces inherited from interface com.google.gwt.user.client.ui.IndexedPanel
IndexedPanel.ForIsWidget
-
-
Field Summary
-
Fields inherited from class com.google.gwt.user.client.ui.Widget
eventsToSink
-
Fields inherited from class com.google.gwt.user.client.ui.UIObject
DEBUG_ID_PREFIX, MISSING_ELEMENT_ERROR, SETELEMENT_TWICE_ERROR
-
-
Constructor Summary
Constructors Constructor Description ComplexPanel()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected voidadd(Widget child, Element container)Adds a new child widget to the panel, attaching its Element to the specified container Element.protected voidadd(Widget child, Element container)Deprecated.Call and overrideadd(Widget, Element)instead.protected intadjustIndex(Widget child, int beforeIndex)Adjusts beforeIndex to account for the possibility that the given widget is already a child of this panel.protected voidcheckIndexBoundsForAccess(int index)Checks thatindexis in the range [0, getWidgetCount()), which is the valid range on accessible indexes.protected voidcheckIndexBoundsForInsertion(int index)Checks thatindexis in the range [0, getWidgetCount()], which is the valid range for indexes on an insertion.(package private) voiddoLogicalClear()protected WidgetCollectiongetChildren()Gets the list of children contained in this panel.WidgetgetWidget(int index)Gets the child widget at the specified index.intgetWidgetCount()Gets the number of child widgets in this panel.intgetWidgetIndex(IsWidget child)intgetWidgetIndex(Widget child)Gets the index of the specified child widget.protected voidinsert(Widget child, Element container, int beforeIndex, boolean domInsert)Insert a new child Widget into this Panel at a specified index, attaching its Element to the specified container Element.protected voidinsert(Widget child, Element container, int beforeIndex, boolean domInsert)Deprecated.Call and overrideinsert(com.google.gwt.user.client.ui.Widget,com.google.gwt.dom.client.Element,int,boolean)instead.java.util.Iterator<Widget>iterator()Gets an iterator for the contained widgets.booleanremove(int index)Removes the widget at the specified index.booleanremove(Widget w)Removes a child widget.-
Methods inherited from class com.google.gwt.user.client.ui.Panel
add, add, adopt, clear, doAttachChildren, doDetachChildren, orphan, remove
-
Methods inherited from class com.google.gwt.user.client.ui.Widget
addAttachHandler, addBitlessDomHandler, addDomHandler, addHandler, asWidget, asWidgetOrNull, createHandlerManager, delegateEvent, ensureHandlers, fireEvent, getHandlerCount, getHandlerManager, getLayoutData, getParent, isAttached, isOrWasAttached, onAttach, onBrowserEvent, onDetach, onLoad, onUnload, removeFromParent, replaceElement, setLayoutData, setParent, sinkEvents, unsinkEvents
-
Methods inherited from class com.google.gwt.user.client.ui.UIObject
addStyleDependentName, addStyleName, ensureDebugId, ensureDebugId, ensureDebugId, getAbsoluteLeft, getAbsoluteTop, getElement, getOffsetHeight, getOffsetWidth, getStyleElement, getStyleName, getStyleName, getStylePrimaryName, getStylePrimaryName, getTitle, isVisible, isVisible, onEnsureDebugId, removeStyleDependentName, removeStyleName, resolvePotentialElement, setElement, setElement, setHeight, setPixelSize, setSize, setStyleDependentName, setStyleName, setStyleName, setStyleName, setStyleName, setStylePrimaryName, setStylePrimaryName, setTitle, setVisible, setVisible, setWidth, sinkBitlessEvent, toString
-
-
-
-
Method Detail
-
getWidget
public Widget getWidget(int index)
Description copied from interface:IndexedPanelGets the child widget at the specified index.- Specified by:
getWidgetin interfaceIndexedPanel- Parameters:
index- the child widget's index- Returns:
- the child widget
-
getWidgetCount
public int getWidgetCount()
Description copied from interface:IndexedPanelGets the number of child widgets in this panel.- Specified by:
getWidgetCountin interfaceIndexedPanel- Returns:
- the number of children
-
getWidgetIndex
public int getWidgetIndex(Widget child)
Description copied from interface:IndexedPanelGets the index of the specified child widget.- Specified by:
getWidgetIndexin interfaceIndexedPanel- Parameters:
child- the widget to be found- Returns:
- the widget's index, or
-1if it is not a child of this panel
-
getWidgetIndex
public int getWidgetIndex(IsWidget child)
- Specified by:
getWidgetIndexin interfaceIndexedPanel.ForIsWidget
-
iterator
public java.util.Iterator<Widget> iterator()
Description copied from interface:HasWidgetsGets an iterator for the contained widgets. This iterator is required to implementIterator.remove().- Specified by:
iteratorin interfaceHasWidgets- Specified by:
iteratorin interfacejava.lang.Iterable<Widget>
-
remove
public boolean remove(int index)
Description copied from interface:IndexedPanelRemoves the widget at the specified index.- Specified by:
removein interfaceIndexedPanel- Parameters:
index- the index of the widget to be removed- Returns:
falseif the widget is not present
-
remove
public boolean remove(Widget w)
Description copied from class:PanelRemoves a child widget.How to Override this Method
There are several important things that must take place in the correct order to properly remove a Widget from a Panel. Not all of these steps will be relevant to every Panel, but all of the steps must be considered.
- Validate: Make sure this Panel is actually the parent of the
child Widget; return
falseif it is not. - Orphan: Call
Panel.orphan(Widget)first while the child Widget is still attached. - Physical Detach: Adjust the DOM to account for the removal of the child Widget. The Widget's Element must be physically removed from the DOM.
- Logical Detach: Update the Panel's state variables to reflect
the removal of the child Widget. Example: the Widget is removed from the
Panel's
WidgetCollection.
- Specified by:
removein interfaceHasWidgets- Specified by:
removein classPanel- Parameters:
w- the widget to be removed- Returns:
trueif the child was present
- Validate: Make sure this Panel is actually the parent of the
child Widget; return
-
add
protected void add(Widget child, Element container)
Adds a new child widget to the panel, attaching its Element to the specified container Element.- Parameters:
child- the child widget to be addedcontainer- the element within which the child will be contained
-
add
@Deprecated protected void add(Widget child, Element container)
Deprecated.Call and overrideadd(Widget, Element)instead.
-
adjustIndex
protected int adjustIndex(Widget child, int beforeIndex)
Adjusts beforeIndex to account for the possibility that the given widget is already a child of this panel.- Parameters:
child- the widget that might be an existing childbeforeIndex- the index at which it will be added to this panel- Returns:
- the modified index
-
checkIndexBoundsForAccess
protected void checkIndexBoundsForAccess(int index)
Checks thatindexis in the range [0, getWidgetCount()), which is the valid range on accessible indexes.- Parameters:
index- the index being accessed
-
checkIndexBoundsForInsertion
protected void checkIndexBoundsForInsertion(int index)
Checks thatindexis in the range [0, getWidgetCount()], which is the valid range for indexes on an insertion.- Parameters:
index- the index where insertion will occur
-
getChildren
protected WidgetCollection getChildren()
Gets the list of children contained in this panel.- Returns:
- a collection of child widgets
-
insert
protected void insert(Widget child, Element container, int beforeIndex, boolean domInsert)
Insert a new child Widget into this Panel at a specified index, attaching its Element to the specified container Element. The child Element will either be attached to the container at the same index, or simply appended to the container, depending on the value ofdomInsert.- Parameters:
child- the child Widget to be addedcontainer- the Element within whichchildwill be containedbeforeIndex- the index before whichchildwill be inserteddomInsert- iftrue, insertchildintocontaineratbeforeIndex; otherwise appendchildto the end ofcontainer.
-
insert
@Deprecated protected void insert(Widget child, Element container, int beforeIndex, boolean domInsert)
Deprecated.Call and overrideinsert(com.google.gwt.user.client.ui.Widget,com.google.gwt.dom.client.Element,int,boolean)instead.
-
doLogicalClear
void doLogicalClear()
-
-