G O S

S

ScrolledComposite - Class in org.eclipse.swt.custom
A ScrolledComposite provides scrollbars and will scroll its content when the user uses the scrollbars.
ScrolledComposite(Composite, int) - Constructor for class org.eclipse.swt.custom.ScrolledComposite
Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
setAlwaysShowScrollBars(boolean) - Method in class org.eclipse.swt.custom.ScrolledComposite
Set the Always Show Scrollbars flag.
setContent(Control) - Method in class org.eclipse.swt.custom.ScrolledComposite
Set the content that will be scrolled.
setExpandHorizontal(boolean) - Method in class org.eclipse.swt.custom.ScrolledComposite
Configure the ScrolledComposite to resize the content object to be as wide as the ScrolledComposite when the width of the ScrolledComposite is greater than the minimum width specified in setMinWidth.
setExpandVertical(boolean) - Method in class org.eclipse.swt.custom.ScrolledComposite
Configure the ScrolledComposite to resize the content object to be as tall as the ScrolledComposite when the height of the ScrolledComposite is greater than the minimum height specified in setMinHeight.
setLayout(Layout) - Method in class org.eclipse.swt.custom.ScrolledComposite
Sets the layout which is associated with the receiver to be the argument which may be null.
setMinHeight(int) - Method in class org.eclipse.swt.custom.ScrolledComposite
Specify the minimum height at which the ScrolledComposite will begin scrolling the content with the vertical scroll bar.
setMinSize(Point) - Method in class org.eclipse.swt.custom.ScrolledComposite
Specify the minimum width and height at which the ScrolledComposite will begin scrolling the content with the horizontal scroll bar.
setMinSize(int, int) - Method in class org.eclipse.swt.custom.ScrolledComposite
Specify the minimum width and height at which the ScrolledComposite will begin scrolling the content with the horizontal scroll bar.
setMinWidth(int) - Method in class org.eclipse.swt.custom.ScrolledComposite
Specify the minimum width at which the ScrolledComposite will begin scrolling the content with the horizontal scroll bar.
setOrigin(Point) - Method in class org.eclipse.swt.custom.ScrolledComposite
Scrolls the content so that the specified point in the content is in the top left corner.
setOrigin(int, int) - Method in class org.eclipse.swt.custom.ScrolledComposite
Scrolls the content so that the specified point in the content is in the top left corner.
setShowFocusedControl(boolean) - Method in class org.eclipse.swt.custom.ScrolledComposite
Configure the receiver to automatically scroll to a focused child control to make it visible.
showControl(Control) - Method in class org.eclipse.swt.custom.ScrolledComposite
Scrolls the content of the receiver so that the control is visible.

G O S