com.tssap.util.ui.pane
Interface IToolBarPane

All Superinterfaces:
IBasicPane

public interface IToolBarPane
extends IBasicPane

Version:
1.0

Method Summary
 org.eclipse.swt.widgets.ToolItem addPushButton(org.eclipse.swt.graphics.Image image, java.lang.String quickInfo)
          Adds a push button to the toolbar.
 org.eclipse.swt.widgets.ToolItem addPushButton(org.eclipse.swt.graphics.Image image, java.lang.String text, java.lang.String quickInfo)
          Adds a push button to the toolbar.
 org.eclipse.swt.widgets.ToolItem addPushButton(java.lang.String text, java.lang.String quickInfo)
          Adds a push button to the toolbar.
 org.eclipse.swt.widgets.ToolItem addRadioButton(org.eclipse.swt.graphics.Image image, java.lang.String quickInfo)
          Adds a push button to the toolbar which remains selected whereas the other buttons of
 org.eclipse.swt.widgets.ToolItem addRadioButton(org.eclipse.swt.graphics.Image image, java.lang.String text, java.lang.String quickInfo)
          Adds a push button to the toolbar which remains selected whereas the other buttons of
 org.eclipse.swt.widgets.ToolItem addRadioButton(java.lang.String text, java.lang.String quickInfo)
          Adds a push button to the toolbar which remains selected whereas the other buttons of the same toolbar become deselected.
 void addSeparator()
          Adds a separator to the toolbar.
 org.eclipse.swt.widgets.ToolItem addToggleButton(org.eclipse.swt.graphics.Image image, java.lang.String quickInfo)
          Adds a push button to the toolbar which remains selected.
 org.eclipse.swt.widgets.ToolItem addToggleButton(org.eclipse.swt.graphics.Image image, java.lang.String text, java.lang.String quickInfo)
          Adds a push button to the toolbar which remains selected.
 org.eclipse.swt.widgets.ToolItem addToggleButton(java.lang.String text, java.lang.String quickInfo)
          Adds a push button to the toolbar which remains selected.
 org.eclipse.swt.widgets.ToolItem addToolBarButton(org.eclipse.swt.graphics.Image pButtonImage)
          Deprecated. use addPushButton(...) instead.
 org.eclipse.swt.widgets.ToolItem addToolBarButton(org.eclipse.swt.graphics.Image pButtonImage, java.lang.String pQuickInfo)
          Deprecated. use addPushButton(...) instead.
 org.eclipse.swt.widgets.ToolItem addToolBarButton(java.lang.String pButtonText)
          Deprecated. use addPushButton(...) instead.
 org.eclipse.swt.widgets.ToolItem addToolBarButton(java.lang.String pButtonText, org.eclipse.swt.graphics.Image pButtonImage)
          Deprecated. use addPushButton(...) instead.
 org.eclipse.swt.widgets.ToolItem addToolBarButton(java.lang.String pButtonText, org.eclipse.swt.graphics.Image pButtonImage, java.lang.String pQuickInfo)
          Deprecated. use addPushButton(...) instead.
 org.eclipse.swt.widgets.ToolItem addToolBarButton(java.lang.String pButtonText, java.lang.String pQuickInfo)
          Deprecated. use addPushButton(...) instead.
 boolean isVertical()
          Returns information if toolbar is horizontal or vertical.
 
Methods inherited from interface com.tssap.util.ui.pane.IBasicPane
addDisposeListener, getComposite, getParent, getWidgetFactory, isPaneModifiable, setLayoutData
 

Method Detail

addToolBarButton

public org.eclipse.swt.widgets.ToolItem addToolBarButton(org.eclipse.swt.graphics.Image pButtonImage)
Deprecated. use addPushButton(...) instead.


addToolBarButton

public org.eclipse.swt.widgets.ToolItem addToolBarButton(java.lang.String pButtonText)
Deprecated. use addPushButton(...) instead.


addToolBarButton

public org.eclipse.swt.widgets.ToolItem addToolBarButton(java.lang.String pButtonText,
                                                         org.eclipse.swt.graphics.Image pButtonImage)
Deprecated. use addPushButton(...) instead.


addToolBarButton

public org.eclipse.swt.widgets.ToolItem addToolBarButton(org.eclipse.swt.graphics.Image pButtonImage,
                                                         java.lang.String pQuickInfo)
Deprecated. use addPushButton(...) instead.


addToolBarButton

public org.eclipse.swt.widgets.ToolItem addToolBarButton(java.lang.String pButtonText,
                                                         java.lang.String pQuickInfo)
Deprecated. use addPushButton(...) instead.


addToolBarButton

public org.eclipse.swt.widgets.ToolItem addToolBarButton(java.lang.String pButtonText,
                                                         org.eclipse.swt.graphics.Image pButtonImage,
                                                         java.lang.String pQuickInfo)
Deprecated. use addPushButton(...) instead.


addPushButton

public org.eclipse.swt.widgets.ToolItem addPushButton(java.lang.String text,
                                                      java.lang.String quickInfo)
Adds a push button to the toolbar.
Parameters:
text - button text
quickInfo - additional info to be displayed (can be null but should not be !)
Returns:
created tool bar item

addPushButton

public org.eclipse.swt.widgets.ToolItem addPushButton(org.eclipse.swt.graphics.Image image,
                                                      java.lang.String quickInfo)
Adds a push button to the toolbar.
Parameters:
image - button image
quickInfo - additional info to be displayed (can be null but should not be !)
Returns:
created tool bar item

addPushButton

public org.eclipse.swt.widgets.ToolItem addPushButton(org.eclipse.swt.graphics.Image image,
                                                      java.lang.String text,
                                                      java.lang.String quickInfo)
Adds a push button to the toolbar.
Parameters:
image - button image
text - button text
quickInfo - additional info to be displayed (can be null but should not be !)
Returns:
created tool bar item

addToggleButton

public org.eclipse.swt.widgets.ToolItem addToggleButton(java.lang.String text,
                                                        java.lang.String quickInfo)
Adds a push button to the toolbar which remains selected.
Parameters:
text - button text
quickInfo - additional info to be displayed (can be null but should not be !)
Returns:
created tool bar item

addToggleButton

public org.eclipse.swt.widgets.ToolItem addToggleButton(org.eclipse.swt.graphics.Image image,
                                                        java.lang.String quickInfo)
Adds a push button to the toolbar which remains selected.
Parameters:
image - button image
quickInfo - additional info to be displayed (can be null but should not be !)
Returns:
created tool bar item

addToggleButton

public org.eclipse.swt.widgets.ToolItem addToggleButton(org.eclipse.swt.graphics.Image image,
                                                        java.lang.String text,
                                                        java.lang.String quickInfo)
Adds a push button to the toolbar which remains selected.
Parameters:
image - button image
text - button text
quickInfo - additional info to be displayed (can be null but should not be !)
Returns:
created tool bar item

addRadioButton

public org.eclipse.swt.widgets.ToolItem addRadioButton(java.lang.String text,
                                                       java.lang.String quickInfo)
Adds a push button to the toolbar which remains selected whereas the other buttons of the same toolbar become deselected.
Parameters:
text - button text
quickInfo - additional info to be displayed (can be null but should not be !)
Returns:
created tool bar item

addRadioButton

public org.eclipse.swt.widgets.ToolItem addRadioButton(org.eclipse.swt.graphics.Image image,
                                                       java.lang.String quickInfo)
Adds a push button to the toolbar which remains selected whereas the other buttons of
Parameters:
image - button image
quickInfo - additional info to be displayed (can be null but should not be !)
Returns:
created tool bar item

addRadioButton

public org.eclipse.swt.widgets.ToolItem addRadioButton(org.eclipse.swt.graphics.Image image,
                                                       java.lang.String text,
                                                       java.lang.String quickInfo)
Adds a push button to the toolbar which remains selected whereas the other buttons of
Parameters:
image - button image
text - button text
quickInfo - additional info to be displayed (can be null but should not be !)
Returns:
created tool bar item

addSeparator

public void addSeparator()
Adds a separator to the toolbar.

isVertical

public boolean isVertical()
Returns information if toolbar is horizontal or vertical.
Returns:
boolean true if vertical, false if horizontal


Copyright © 2005 SAP AG. All Rights Reserved.