pivot.wtk
Interface TabPaneListener

All Known Implementing Classes:
TerraTabPaneSkin

public interface TabPaneListener

Tab pane listener interface.

Author:
gbrown

Method Summary
 void collapsibleChanged(TabPane tabPane)
          Called when a tab pane's collapsible flag has changed.
 void cornerChanged(TabPane tabPane, Component previousCorner)
          Called when a tab pane's corner component (the component in the free space next to the tabs) has changed.
 void tabInserted(TabPane tabPane, int index)
          Called when a tab has been inserted into a tab pane's tab sequence.
 void tabOrientationChanged(TabPane tabPane)
          Called when a tab pane's orientation has changed.
 void tabsRemoved(TabPane tabPane, int index, Sequence<Component> tabs)
          Called when a tab has been removed from a tab pane's tab sequence.
 

Method Detail

tabOrientationChanged

void tabOrientationChanged(TabPane tabPane)
Called when a tab pane's orientation has changed.

Parameters:
tabPane -

collapsibleChanged

void collapsibleChanged(TabPane tabPane)
Called when a tab pane's collapsible flag has changed.

Parameters:
tabPane -

tabInserted

void tabInserted(TabPane tabPane,
                 int index)
Called when a tab has been inserted into a tab pane's tab sequence.

Parameters:
tabPane -
index -

tabsRemoved

void tabsRemoved(TabPane tabPane,
                 int index,
                 Sequence<Component> tabs)
Called when a tab has been removed from a tab pane's tab sequence.

Parameters:
tabPane -
index -
tabs -

cornerChanged

void cornerChanged(TabPane tabPane,
                   Component previousCorner)
Called when a tab pane's corner component (the component in the free space next to the tabs) has changed.

Parameters:
tabPane -
previousCorner -