org.apache.pivot.wtk
Interface SplitPaneListener

All Known Implementing Classes:
SplitPaneListener.Adapter, TerraSplitPaneSkin

public interface SplitPaneListener

Split pane listener interface.


Nested Class Summary
static class SplitPaneListener.Adapter
          Split pane listener adapter.
 
Method Summary
 void bottomRightChanged(SplitPane splitPane, Component previousBottomRight)
          Called when a split pane's bottom right component has changed.
 void lockedChanged(SplitPane splitPane)
          Called when a split pane's locked flag has changed.
 void orientationChanged(SplitPane splitPane)
          Called when a split pane's orientation has changed.
 void primaryRegionChanged(SplitPane splitPane)
          Called when a split pane's primary region has changed.
 void resizeModeChanged(SplitPane splitPane, SplitPane.ResizeMode previousResizeMode)
          Called when a split pane's split location has changed.
 void splitRatioChanged(SplitPane splitPane, float previousSplitRatio)
          Called when a split pane's split location has changed.
 void topLeftChanged(SplitPane splitPane, Component previousTopLeft)
          Called when a split pane's top left component has changed.
 

Method Detail

topLeftChanged

void topLeftChanged(SplitPane splitPane,
                    Component previousTopLeft)
Called when a split pane's top left component has changed.

Parameters:
splitPane - The source of the event.
previousTopLeft - The previous component. The new component can be found inside the splitPane.

bottomRightChanged

void bottomRightChanged(SplitPane splitPane,
                        Component previousBottomRight)
Called when a split pane's bottom right component has changed.

Parameters:
splitPane - The source of the event.
previousBottomRight - The previous component. The new component can be found inside the splitPane.

orientationChanged

void orientationChanged(SplitPane splitPane)
Called when a split pane's orientation has changed.

Parameters:
splitPane - The source of the event.

primaryRegionChanged

void primaryRegionChanged(SplitPane splitPane)
Called when a split pane's primary region has changed.

Parameters:
splitPane - The source of the event.

splitRatioChanged

void splitRatioChanged(SplitPane splitPane,
                       float previousSplitRatio)
Called when a split pane's split location has changed.

Parameters:
splitPane - The source of the event.
previousSplitRatio - The previous setting of the splitRatio.

lockedChanged

void lockedChanged(SplitPane splitPane)
Called when a split pane's locked flag has changed.

Parameters:
splitPane - The source of the event.

resizeModeChanged

void resizeModeChanged(SplitPane splitPane,
                       SplitPane.ResizeMode previousResizeMode)
Called when a split pane's split location has changed.

Parameters:
splitPane - The source of the event.
previousResizeMode - The previous setting of the resizeMode.