org.gwtbootstrap3.client.ui
Class TabPane

java.lang.Object
  extended by com.google.gwt.user.client.ui.UIObject
      extended by com.google.gwt.user.client.ui.Widget
          extended by com.google.gwt.user.client.ui.Panel
              extended by com.google.gwt.user.client.ui.ComplexPanel
                  extended by org.gwtbootstrap3.client.ui.base.ComplexWidget
                      extended by org.gwtbootstrap3.client.ui.html.Div
                          extended by org.gwtbootstrap3.client.ui.TabPane
All Implemented Interfaces:
HasAttachHandlers, HasHandlers, EventListener, HasVisibility, HasWidgets, HasWidgets.ForIsWidget, IndexedPanel, IndexedPanel.ForIsWidget, IsWidget, Iterable<Widget>, HasActive, HasId, HasInlineStyle, HasPull, HasResponsiveness

public class TabPane
extends Div
implements HasActive

Container widget for the tab pane

Bootstrap Documentation

UiBinder example

 <b:TabContent>
    <b:TabPane/>
    <b:TabPane/>
 </b:TabContent>
 
 

Author:
Joshua Godi
See Also:
TabContent

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.IndexedPanel
IndexedPanel.ForIsWidget
 
Nested classes/interfaces inherited from interface com.google.gwt.user.client.ui.HasWidgets
HasWidgets.ForIsWidget
 
Field Summary
 
Fields inherited from class com.google.gwt.user.client.ui.UIObject
DEBUG_ID_PREFIX
 
Constructor Summary
TabPane()
          Creates the default widget with the default styles
 
Method Summary
 boolean isActive()
          Gets whether or not the widget has the active styles
 void setActive(boolean active)
          Sets the widget with the active styles or not
 void setFade(boolean fade)
          Sets whether or not to fade the tab pane in/out when clicked Must set in="true" on the first tab if using fade!!
 void setIn(boolean in)
          When using fade, but set the first tabpane with in="true" to work properly
 
Methods inherited from class org.gwtbootstrap3.client.ui.base.ComplexWidget
add, getId, getPull, insert, setColor, setHiddenOn, setId, setMarginBottom, setMarginLeft, setMarginRight, setMarginTop, setPaddingBottom, setPaddingLeft, setPaddingRight, setPaddingTop, setPull, setVisibleOn
 
Methods inherited from class com.google.gwt.user.client.ui.ComplexPanel
add, add, adjustIndex, checkIndexBoundsForAccess, checkIndexBoundsForInsertion, getChildren, getWidget, getWidgetCount, getWidgetIndex, getWidgetIndex, insert, insert, iterator, remove, remove
 
Methods inherited from class com.google.gwt.user.client.ui.Panel
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, fireEvent, getHandlerCount, getLayoutData, getParent, isAttached, isOrWasAttached, onAttach, onBrowserEvent, onDetach, onLoad, onUnload, removeFromParent, setLayoutData, 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
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TabPane

public TabPane()
Creates the default widget with the default styles

Method Detail

setFade

public void setFade(boolean fade)
Sets whether or not to fade the tab pane in/out when clicked Must set in="true" on the first tab if using fade!!

Parameters:
fade - true=fade content in/out, false=don't fade

setIn

public void setIn(boolean in)
When using fade, but set the first tabpane with in="true" to work properly

Parameters:
in - whether or not the first tab pane will be faded properly

setActive

public void setActive(boolean active)
Sets the widget with the active styles or not

Specified by:
setActive in interface HasActive
Parameters:
active - true=gets active styles, false=removes active styles

isActive

public boolean isActive()
Gets whether or not the widget has the active styles

Specified by:
isActive in interface HasActive
Returns:
true=has active styles, false=does not have active styles


Copyright © 2015. All rights reserved.