|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.google.gwt.user.client.ui.UIObject
com.google.gwt.user.client.ui.Widget
com.google.gwt.user.client.ui.Composite
com.google.gwt.user.client.ui.TabPanel
public class TabPanel
A panel that represents a tabbed set of pages, each of which contains another widget. Its child widgets are shown as the user selects the various tabs associated with them. The tabs can contain arbitrary HTML.
Note that this widget is not a panel per se, but rather a
Composite
that aggregates a
TabBar
and a
DeckPanel
. It does, however, implement
HasWidgets
.
public class TabPanelExample implements EntryPoint { public void onModuleLoad() { // Create a tab panel with three tabs, each of which displays a different // piece of text. TabPanel tp = new TabPanel(); tp.add(new HTML("Foo"), "foo"); tp.add(new HTML("Bar"), "bar"); tp.add(new HTML("Baz"), "baz"); // Show the 'bar' tab initially. tp.selectTab(1); // Add it to the root panel. RootPanel.get().add(tp); } }
Constructor Summary | |
---|---|
TabPanel()
Creates an empty tab panel. |
Method Summary | |
---|---|
void |
add(Widget w)
Adds a child widget. |
void |
add(Widget w,
java.lang.String tabText)
Adds a widget to the tab panel. |
void |
add(Widget w,
java.lang.String tabText,
boolean asHTML)
Adds a widget to the tab panel. |
void |
add(Widget w,
Widget tabWidget)
Adds a widget to the tab panel. |
void |
addTabListener(TabListener listener)
Adds a listener interface to receive click events. |
void |
clear()
Removes all child widgets. |
DeckPanel |
getDeckPanel()
Gets the deck panel within this tab panel. |
TabBar |
getTabBar()
Gets the tab bar within this tab panel. |
Widget |
getWidget(int index)
Gets the child widget at the specified index. |
int |
getWidgetCount()
Gets the number of child widgets in this panel. |
int |
getWidgetIndex(Widget widget)
Gets the index of the specified child widget. |
void |
insert(Widget widget,
java.lang.String tabText,
boolean asHTML,
int beforeIndex)
Inserts a widget into the tab panel. |
void |
insert(Widget widget,
java.lang.String tabText,
int beforeIndex)
Inserts a widget into the tab panel. |
void |
insert(Widget widget,
Widget tabWidget,
int beforeIndex)
Inserts a widget into the tab panel. |
java.util.Iterator |
iterator()
Gets an iterator for the contained widgets. |
boolean |
onBeforeTabSelected(SourcesTabEvents sender,
int tabIndex)
Fired just before a tab is selected. |
void |
onTabSelected(SourcesTabEvents sender,
int tabIndex)
Fired when a tab is selected. |
boolean |
remove(int index)
Removes the widget at the specified index. |
boolean |
remove(Widget widget)
Removes the given widget, and its associated tab. |
void |
removeTabListener(TabListener listener)
Removes a previously added listener interface. |
void |
selectTab(int index)
Programmatically selects the specified tab. |
Methods inherited from class com.google.gwt.user.client.ui.Composite |
---|
getElement, getWidget, initWidget, isAttached, onAttach, onDetach, setWidget |
Methods inherited from class com.google.gwt.user.client.ui.Widget |
---|
doAttachChildren, doDetachChildren, getParent, onBrowserEvent, onLoad, onUnload, removeFromParent, setElement |
Methods inherited from class com.google.gwt.user.client.ui.UIObject |
---|
addStyleDependentName, addStyleName, getAbsoluteLeft, getAbsoluteTop, getOffsetHeight, getOffsetWidth, getStyleElement, getStyleName, getStyleName, getStylePrimaryName, getStylePrimaryName, getTitle, isVisible, isVisible, removeStyleDependentName, removeStyleName, setHeight, setPixelSize, setSize, setStyleName, setStyleName, setStyleName, setStylePrimaryName, setStylePrimaryName, setTitle, setVisible, setVisible, setWidth, sinkEvents, toString, unsinkEvents |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public TabPanel()
Method Detail |
---|
public void add(Widget w)
HasWidgets
add
in interface HasWidgets
w
- the widget to be addedpublic void add(Widget w, java.lang.String tabText)
w
- the widget to be addedtabText
- the text to be shown on its tabpublic void add(Widget w, java.lang.String tabText, boolean asHTML)
w
- the widget to be addedtabText
- the text to be shown on its tabasHTML
- true
to treat the specified text as HTMLpublic void add(Widget w, Widget tabWidget)
w
- the widget to be addedtabWidget
- the widget to be shown in the tabpublic void addTabListener(TabListener listener)
SourcesTabEvents
addTabListener
in interface SourcesTabEvents
listener
- the listener interface to addpublic void clear()
HasWidgets
clear
in interface HasWidgets
public DeckPanel getDeckPanel()
public TabBar getTabBar()
public Widget getWidget(int index)
IndexedPanel
getWidget
in interface IndexedPanel
index
- the child widget's index
public int getWidgetCount()
IndexedPanel
getWidgetCount
in interface IndexedPanel
public int getWidgetIndex(Widget widget)
IndexedPanel
getWidgetIndex
in interface IndexedPanel
widget
- the widget to be found
-1
if it is not a child of
this panelpublic void insert(Widget widget, java.lang.String tabText, boolean asHTML, int beforeIndex)
widget
- the widget to be insertedtabText
- the text to be shown on its tabasHTML
- true
to treat the specified text as HTMLbeforeIndex
- the index before which it will be insertedpublic void insert(Widget widget, Widget tabWidget, int beforeIndex)
widget
- the widget to be inserted.tabWidget
- the widget to be shown on its tab.beforeIndex
- the index before which it will be inserted.public void insert(Widget widget, java.lang.String tabText, int beforeIndex)
widget
- the widget to be insertedtabText
- the text to be shown on its tabbeforeIndex
- the index before which it will be insertedpublic java.util.Iterator iterator()
HasWidgets
Iterator.remove()
.
iterator
in interface HasWidgets
public boolean onBeforeTabSelected(SourcesTabEvents sender, int tabIndex)
TabListener
onBeforeTabSelected
in interface TabListener
sender
- the TabBar
or TabPanel
whose tab was
selected.tabIndex
- the index of the tab about to be selected
false
to disallow the selection. If any listener
returns false, then the selection will be disallowed.public void onTabSelected(SourcesTabEvents sender, int tabIndex)
TabListener
onTabSelected
in interface TabListener
sender
- the TabBar
or TabPanel
whose tab was selectedtabIndex
- the index of the tab that was selectedpublic boolean remove(int index)
IndexedPanel
remove
in interface IndexedPanel
index
- the index of the widget to be removed
false
if the widget is not presentpublic boolean remove(Widget widget)
remove
in interface HasWidgets
widget
- the widget to be removed
true
if the widget was presentpublic void removeTabListener(TabListener listener)
SourcesTabEvents
removeTabListener
in interface SourcesTabEvents
listener
- the listener interface to removepublic void selectTab(int index)
index
- the index of the tab to be selected
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |