public class StackPanel extends ComplexPanel implements InsertPanel.ForIsWidget
This widget will only work in quirks mode. If your application is in
Standards Mode, use StackLayoutPanel
instead.
StackLayoutPanel
UIObject.DebugIdImpl, UIObject.DebugIdImplEnabled
InsertPanel.ForIsWidget
HasWidgets.ForIsWidget
DEBUG_ID_PREFIX
Constructor and Description |
---|
StackPanel()
Creates an empty stack panel.
|
Modifier and Type | Method and Description |
---|---|
void |
add(Widget w)
Adds a child widget.
|
void |
add(Widget w,
SafeHtml stackHtml)
Adds a new child with the given widget and header, optionally interpreting
the header as HTML.
|
void |
add(Widget w,
String stackText)
Adds a new child with the given widget and header.
|
void |
add(Widget w,
String stackText,
boolean asHTML)
Adds a new child with the given widget and header, optionally interpreting
the header as HTML.
|
void |
addHeaderStyleName(int index,
String styleName)
Adds the
styleName on the <tr> for the header specified by index . |
int |
getSelectedIndex()
Gets the currently selected child index.
|
void |
insert(IsWidget w,
int beforeIndex) |
void |
insert(Widget w,
int beforeIndex)
Inserts a child widget before the specified index.
|
void |
onBrowserEvent(Event event)
Fired whenever a browser event is received.
|
protected void |
onEnsureDebugId(String baseID)
Affected Elements:
-text# = The element around the header at the specified index.
-text-wrapper# = The element around the header at the specified index.
-content# = The element around the body at the specified index.
|
boolean |
remove(int index)
Removes the widget at the specified index.
|
boolean |
remove(Widget child)
Removes a child widget.
|
void |
removeHeaderStyleName(int index,
String styleName)
Removes the
styleName off the <tr> for the header specified by index . |
void |
setStackText(int index,
SafeHtml html)
Sets the html associated with a child by its index.
|
void |
setStackText(int index,
String text)
Sets the text associated with a child by its index.
|
void |
setStackText(int index,
String text,
boolean asHTML)
Sets the text associated with a child by its index.
|
void |
showStack(int index)
Shows the widget at the specified child index.
|
add, add, adjustIndex, checkIndexBoundsForAccess, checkIndexBoundsForInsertion, getChildren, getWidget, getWidgetCount, getWidgetIndex, getWidgetIndex, insert, insert, iterator
add, adopt, clear, doAttachChildren, doDetachChildren, orphan, remove
addAttachHandler, addBitlessDomHandler, addDomHandler, addHandler, asWidget, asWidgetOrNull, createHandlerManager, delegateEvent, fireEvent, getHandlerCount, getLayoutData, getParent, isAttached, isOrWasAttached, onAttach, onDetach, onLoad, onUnload, removeFromParent, setLayoutData, sinkEvents, unsinkEvents
addStyleDependentName, addStyleName, ensureDebugId, ensureDebugId, ensureDebugId, getAbsoluteLeft, getAbsoluteTop, getElement, getOffsetHeight, getOffsetWidth, getStyleElement, getStyleName, getStyleName, getStylePrimaryName, getStylePrimaryName, getTitle, isVisible, isVisible, removeStyleDependentName, removeStyleName, resolvePotentialElement, setElement, setElement, setHeight, setPixelSize, setSize, setStyleDependentName, setStyleName, setStyleName, setStyleName, setStyleName, setStylePrimaryName, setStylePrimaryName, setTitle, setVisible, setVisible, setWidth, sinkBitlessEvent, toString
add
getWidgetIndex
getWidget, getWidgetCount, getWidgetIndex
public void add(Widget w)
Panel
How to Override this Method
There are several important things that must take place in the correct order to properly add or insert a Widget to a Panel. Not all of these steps will be relevant to every Panel, but all of the steps must be considered.
ComplexPanel.adjustIndex(Widget, int)
.Widget.removeFromParent()
on the
Widget.WidgetCollection
at the appropriate index.Panel.adopt(Widget)
to finalize the add as the
very last step.add
in interface HasWidgets
add
in interface InsertPanel
add
in class Panel
w
- the widget to be addedHasWidgets.add(Widget)
public void add(Widget w, String stackText)
w
- the widget to be addedstackText
- the header text associated with this widgetpublic void add(Widget w, SafeHtml stackHtml)
w
- the widget to be addedstackHtml
- the header html associated with this widgetpublic void add(Widget w, String stackText, boolean asHTML)
w
- the widget to be addedstackText
- the header text associated with this widgetasHTML
- true
to treat the specified text as HTMLpublic int getSelectedIndex()
public void insert(IsWidget w, int beforeIndex)
insert
in interface InsertPanel.ForIsWidget
public void insert(Widget w, int beforeIndex)
InsertPanel
insert
in interface InsertPanel
w
- the child widget to be insertedbeforeIndex
- the index before which it will be insertedpublic void onBrowserEvent(Event event)
EventListener
onBrowserEvent
in interface EventListener
onBrowserEvent
in class Widget
event
- the event receivedpublic boolean remove(int index)
IndexedPanel
remove
in interface IndexedPanel
remove
in class ComplexPanel
index
- the index of the widget to be removedfalse
if the widget is not presentpublic boolean remove(Widget child)
Panel
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.
false
if it is not.Panel.orphan(Widget)
first while the child
Widget is still attached.WidgetCollection
.remove
in interface HasWidgets
remove
in class ComplexPanel
child
- the widget to be removedtrue
if the child was presentpublic void setStackText(int index, String text)
index
- the index of the child whose text is to be settext
- the text to be associated with itpublic void setStackText(int index, SafeHtml html)
index
- the index of the child whose text is to be sethtml
- the html to be associated with itpublic void setStackText(int index, String text, boolean asHTML)
index
- the index of the child whose text is to be settext
- the text to be associated with itasHTML
- true
to treat the specified text as HTMLpublic void showStack(int index)
index
- the index of the child to be shownprotected void onEnsureDebugId(String baseID)
onEnsureDebugId
in class UIObject
baseID
- the base ID used by the main elementUIObject.onEnsureDebugId(String)
public void addHeaderStyleName(int index, String styleName)
styleName
on the <tr>
for the header specified by index
.index
- the index of the header row to apply to the style tostyleName
- the name of the class to addpublic void removeHeaderStyleName(int index, String styleName)
styleName
off the <tr>
for the header specified by index
.index
- the index of the header row to remove the style fromstyleName
- the name of the class to removeCopyright © 2018. All rights reserved.