Uses of Class
net.infonode.tabbedpanel.Tab

Packages that use Tab
net.infonode.docking Core classes for the docking windows framework. 
net.infonode.tabbedpanel Core classes for creating and using tabbed panels and tabs 
net.infonode.tabbedpanel.border Special borders for tabs and tabbed panels 
net.infonode.tabbedpanel.theme.internal.laftheme   
net.infonode.tabbedpanel.titledtab TitledTab is a tab type with support for text, icon and a custom Swing component 
 

Uses of Tab in net.infonode.docking
 

Subclasses of Tab in net.infonode.docking
(package private)  class WindowTab
           
 

Uses of Tab in net.infonode.tabbedpanel
 

Fields in net.infonode.tabbedpanel declared as Tab
private  Tab TabStateChangedEvent.currentTab
           
private  Tab TabbedPanel.highlightedTab
           
private  Tab TabStateChangedEvent.previousTab
           
private  Tab TabEvent.tab
           
 

Methods in net.infonode.tabbedpanel that return Tab
private  Tab TabbedPanel.findTab(DraggableComponent draggableComponent)
           
 Tab TabStateChangedEvent.getCurrentTab()
          Gets the current Tab
 Tab TabbedPanel.getHighlightedTab()
          Gets the highlighted tab
static Tab TabbedUtils.getParentTab(java.awt.Component c)
          Gets the tab for whom the given component is a child.
 Tab TabStateChangedEvent.getPreviousTab()
          Gets the previous Tab
 Tab TabbedPanel.getSelectedTab()
          Gets the selected tab, i.e. the tab who's content component is currently displayed in this tabbed panel's content area
 Tab TabEvent.getTab()
          Gets the tab that is the source for this event
 Tab TabbedPanel.getTabAt(int index)
          Gets the tab at index
 

Methods in net.infonode.tabbedpanel with parameters of type Tab
 void TabbedPanel.addTab(Tab tab)
           Add a tab.
private  void TabbedPanel.doInsertTab(Tab tab, java.awt.Point p, int index)
           
private  void TabbedPanel.fireAddedEvent(Tab tab)
           
private  void TabbedPanel.fireDraggedEvent(Tab tab, java.awt.event.MouseEvent mouseEvent)
           
private  void TabbedPanel.fireDroppedEvent(Tab tab, java.awt.event.MouseEvent mouseEvent)
           
private  void TabbedPanel.fireHighlightedEvent(Tab tab, Tab oldTab)
           
private  void TabbedPanel.fireNotDroppedEvent(Tab tab)
           
private  void TabbedPanel.fireRemovedEvent(Tab tab)
           
private  void TabbedPanel.fireSelectedEvent(Tab tab, Tab oldTab)
           
private  void TabbedPanel.fireTabMoved(Tab tab)
           
 int TabbedPanel.getTabIndex(Tab tab)
          Gets the index for tab
 void TabbedPanel.insertTab(Tab tab, int index)
           Insert a tab at the specified tab index (position).
 void TabbedPanel.insertTab(Tab tab, java.awt.Point p)
           Insert a tab at the specified point.
 void TabbedPanel.moveTab(Tab tab, java.awt.Point p)
          Move tab to point p.
 void TabbedPanel.removeTab(Tab tab)
          Removes a tab
 void TabbedPanel.scrollTabToVisibleArea(Tab tab)
           Scrolls the given tab into the visible area of the tab area.
 void TabbedPanel.setHighlightedTab(Tab highlightedTab)
          Sets which tab that should be highlighted, i.e. signal highlighted state to the tab
 void TabbedPanel.setSelectedTab(Tab tab)
          Selects a tab, i.e. displays the tab's content component in this tabbed panel's content area
private  void TabbedPanel.updateTabProperties(Tab tab)
           
 

Constructors in net.infonode.tabbedpanel with parameters of type Tab
TabDragEvent(java.lang.Object source, Tab tab, java.awt.Point point)
          Deprecated. Use TabDragEvent.TabDragEvent(Object, java.awt.event.MouseEvent) instead.
TabEvent(java.lang.Object source, Tab tab)
          Constructs a TabEvent
TabRemovedEvent(java.lang.Object source, Tab tab, TabbedPanel tabbedPanel)
          Constructs a TabDragEvent
TabStateChangedEvent(java.lang.Object source, TabbedPanel tabbedPanel, Tab tab, Tab previousTab, Tab currentTab)
          Constructs a TabStateChangedEvent
 

Uses of Tab in net.infonode.tabbedpanel.border
 

Methods in net.infonode.tabbedpanel.border with parameters of type Tab
private static java.awt.Point OpenContentBorder.getTabBounds(java.awt.Component c, Tab tab, Direction orientation, int x, int y, int width, int height)
           
private  void TabLineBorder.initialize(Tab tab)
          Deprecated.  
 

Uses of Tab in net.infonode.tabbedpanel.theme.internal.laftheme
 

Fields in net.infonode.tabbedpanel.theme.internal.laftheme declared as Tab
private  Tab PaneUI.hoveredTab
           
private  Tab TabData.postTab
           
private  Tab TabData.preTab
           
 

Methods in net.infonode.tabbedpanel.theme.internal.laftheme that return Tab
 Tab TabData.getPostTab()
           
 Tab TabData.getPreTab()
           
 

Methods in net.infonode.tabbedpanel.theme.internal.laftheme with parameters of type Tab
private  int PaneUI.getInternalTabHeight(Tab tab)
           
private  int PaneUI.getInternalTabWidth(Tab tab)
           
 void PaneUI.setHoveredTab(Tab tab)
           
 void TabData.setPostTab(Tab postTab)
           
 void TabData.setPreTab(Tab preTab)
           
 

Uses of Tab in net.infonode.tabbedpanel.titledtab
 

Subclasses of Tab in net.infonode.tabbedpanel.titledtab
 class TitledTab
          A TitledTab is a tab that has support for text, icon and a custom Swing component (called title component).