Eclipse Platform
2.1

Uses of Class
org.eclipse.swt.widgets.Control

Packages that use Control
org.eclipse.compare Provides support for performing structural and textual compare operations on arbitrary data and displaying the results. 
org.eclipse.compare.contentmergeviewer Support for compare and merge viewers which show the content side-by-side. 
org.eclipse.debug.ui Provides a generic debugger user interface that clients may customize via standard workbench extension points. 
org.eclipse.debug.ui.actions

Provides a set of actions related to running and debugging applications. 

org.eclipse.jface.action Provides support for shared UI resources such as menus, tool bars, and status lines. 
org.eclipse.jface.dialogs Provides support for dialogs. 
org.eclipse.jface.preference Provides a framework for preferences. 
org.eclipse.jface.resource Provides support for managing resources such as SWT fonts and images. 
org.eclipse.jface.text Provides a framework for creating, manipulating, displaying and editing text documents. 
org.eclipse.jface.text.source Provides a framework for connecting document regions with annotations and for displaying those annotations in combination with an ITextViewer
org.eclipse.jface.util Provides useful building blocks used throughout JFace, including property change events, a listener list implementation, and runtime checked assertions. 
org.eclipse.jface.viewers Provides a framework for viewers, which are model-based content adapters for SWT widgets. 
org.eclipse.jface.window Provides a general framework for creating and managing windows. 
org.eclipse.jface.wizard Provides a framework for wizards. 
org.eclipse.swt.accessibility SWT Accessibility. 
org.eclipse.swt.custom SWT Custom widgets. 
org.eclipse.swt.dnd SWT Drag and Drop support. 
org.eclipse.swt.layout This package contains the SWT layout classes. 
org.eclipse.swt.ole.win32 SWT Win32 OLE implementation classes. 
org.eclipse.swt.widgets SWT widget public API classes. 
org.eclipse.ui Application programming interfaces for interaction with and extension of the Eclipse Platform User Interface. 
org.eclipse.ui.dialogs Classes for standard dialogs, wizards, and preference pages in the Eclipse Platform User Interface. 
org.eclipse.ui.help Classes for integration with the help support system in the Eclipse Platform User Interface. 
org.eclipse.ui.part Classes for the creation of workbench parts that integrate with the Eclipse Platform User Interface. 
org.eclipse.ui.texteditor Provides a framework for text editors obeying to the desktop rules. 
org.eclipse.ui.views.contentoutline Provides the standard Content Outline view which can show the active editor's custom outline for the document being edited. 
org.eclipse.ui.views.properties Provides the standard Property Sheet view which displays custom properties of the active workbench part's current selection. 
org.eclipse.ui.views.tasklist Provides the standard Task List view for displaying tasks and problem annotations on resources. 
 

Uses of Control in org.eclipse.compare
 

Subclasses of Control in org.eclipse.compare
 class CompareViewerPane
          A CompareViewerPane is a convenience class which installs a CLabel and a Toolbar in a ViewForm.
 class CompareViewerSwitchingPane
          A custom CompareViewerPane that supports dynamic viewer switching.
 class Splitter
          The Splitter adds support for nesting to a SashForm.
 

Methods in org.eclipse.compare that return Control
 Control CompareEditorInput.createContents(Composite parent)
          Create the SWT controls that are used to display the result of the compare operation.
protected  Control EditionSelectionDialog.createDialogArea(Composite parent2)
           
 

Methods in org.eclipse.compare with parameters of type Control
 void Splitter.setVisible(Control child, boolean visible)
          Sets the visibility of the given child in this Splitter.
 void Splitter.setMaximizedControl(Control control)
           
 

Uses of Control in org.eclipse.compare.contentmergeviewer
 

Methods in org.eclipse.compare.contentmergeviewer that return Control
protected  Control ContentMergeViewer.buildControl(Composite parent)
          Builds the SWT controls for the three areas of a compare/merge viewer.
 Control ContentMergeViewer.getControl()
           
 

Uses of Control in org.eclipse.debug.ui
 

Methods in org.eclipse.debug.ui that return Control
 Control AbstractLaunchConfigurationTab.getControl()
           
protected  Control AbstractDebugView.getDefaultControl()
          Returns the default control for this view.
 Control ILaunchConfigurationTab.getControl()
          Returns the top level control for this tab.
 

Methods in org.eclipse.debug.ui with parameters of type Control
protected  void AbstractLaunchConfigurationTab.setControl(Control control)
          Sets the control to be displayed in this tab.
protected  void AbstractDebugView.createContextMenu(Control menuControl)
          Creates a pop-up menu on the given control.
 

Uses of Control in org.eclipse.debug.ui.actions
 

Methods in org.eclipse.debug.ui.actions with parameters of type Control
 Menu AbstractLaunchHistoryAction.getMenu(Control parent)
           
 Menu LaunchAsAction.getMenu(Control parent)
           
 

Uses of Control in org.eclipse.jface.action
 

Methods in org.eclipse.jface.action that return Control
 Control StatusLineManager.getControl()
          Internal -- returns the StatusLine control.
protected abstract  Control ControlContribution.createControl(Composite parent)
          Creates and returns the control for this contribution item under the given parent composite.
 

Methods in org.eclipse.jface.action with parameters of type Control
 Menu MenuManager.createContextMenu(Control parent)
          Creates and returns an SWT context menu control for this menu, and installs all registered contributions.
 Menu IMenuCreator.getMenu(Control parent)
          Returns the SWT menu, created as a pop up menu parented by the given control.
protected  int ControlContribution.computeWidth(Control control)
          Computes the width of the given control which is being added to a tool bar.
 

Uses of Control in org.eclipse.jface.dialogs
 

Subclasses of Control in org.eclipse.jface.dialogs
 class ProgressIndicator
          A control for showing progress feedback for a long running operation.
 

Fields in org.eclipse.jface.dialogs declared as Control
protected  Control Dialog.dialogArea
          The dialog area; null until dialog is layed out.
protected  Control Dialog.buttonBar
          The button bar; null until dialog is layed out.
 

Methods in org.eclipse.jface.dialogs that return Control
protected  Control Dialog.createButtonBar(Composite parent)
          Creates and returns the contents of this dialog's button bar.
protected  Control Dialog.createContents(Composite parent)
          The Dialog implementation of this Window method creates and lays out the top level composite for the dialog, and determines the appropriate horizontal and vertical dialog units based on the font size.
protected  Control Dialog.createDialogArea(Composite parent)
          Creates and returns the contents of the upper part of this dialog (above the button bar).
protected  Control Dialog.getButtonBar()
          Returns the button bar control.
protected  Control Dialog.getDialogArea()
          Returns the dialog area control.
protected  Control IconAndMessageDialog.createMessageArea(Composite composite)
          Create the area the message will be shown in.
protected  Control IconAndMessageDialog.createButtonBar(Composite parent)
           
protected  Control IconAndMessageDialog.createContents(Composite parent)
           
protected  Control MessageDialog.createCustomArea(Composite parent)
          Creates and returns the contents of an area of the dialog which appears below the message and above the button bar.
protected  Control MessageDialog.createDialogArea(Composite parent)
          This implementation of the Dialog framework method creates and lays out a composite and calls createMessageArea and createCustomArea to populate it.
protected  Control InputDialog.createDialogArea(Composite parent)
           
protected  Control ErrorDialog.createDialogArea(Composite parent)
          This implementation of the Dialog framework method creates and lays out a composite and calls createMessageArea and createCustomArea to populate it.
protected  Control ProgressMonitorDialog.createDialogArea(Composite parent)
           
 Control DialogPage.getControl()
          Returns the top level control for this dialog page.
 Control IDialogPage.getControl()
          Returns the top level control for this dialog page.
protected  Control TitleAreaDialog.createContents(Composite parent)
           
protected  Control TitleAreaDialog.createDialogArea(Composite parent)
          Creates and returns the contents of the upper part of this dialog (above the button bar).
 

Methods in org.eclipse.jface.dialogs with parameters of type Control
protected  void Dialog.initializeDialogUnits(Control control)
          Initializes the computation of horizontal and vertical dialog units based on the size of current font.
static void Dialog.applyDialogFont(Control control)
          Applies the dialog font to all controls that currently have the default font.
protected  void DialogPage.initializeDialogUnits(Control control)
          Initializes the computation of horizontal and vertical dialog units based on the size of current font.
protected  void DialogPage.setControl(Control newControl)
           
static ControlEnableState ControlEnableState.disable(Control w)
          Saves the current enable/disable state of the given control and its descendents in the returned object; the controls are all disabled.
static ControlEnableState ControlEnableState.disable(Control w, List exceptions)
          Saves the current enable/disable state of the given control and its descendents in the returned object except for the given list of exception cases; the controls that are saved are also disabled.
 

Constructors in org.eclipse.jface.dialogs with parameters of type Control
ControlEnableState(Control w)
          Creates a new object and saves in it the current enable/disable state of the given control and its descendents; the controls that are saved are also disabled.
ControlEnableState(Control w, List exceptions)
          Creates a new object and saves in it the current enable/disable state of the given control and its descendents except for the given list of exception cases; the controls that are saved are also disabled.
 

Uses of Control in org.eclipse.jface.preference
 

Methods in org.eclipse.jface.preference that return Control
protected abstract  Control PreferencePage.createContents(Composite parent)
          Creates and returns the SWT control for the customized body of this preference page under the given parent composite.
protected  Control FieldEditorPreferencePage.createContents(Composite parent)
           
 Control FontFieldEditor.getPreviewControl()
          Returns the preview control for this field editor.
protected  Control PreferenceDialog.createContents(Composite parent)
           
protected  Control PreferenceDialog.createDialogArea(Composite parent)
           
 

Methods in org.eclipse.jface.preference with parameters of type Control
protected  void FieldEditor.checkParent(Control control, Composite parent)
          Checks if the given parent is the current parent of the supplied control; throws an (unchecked) exception if they are not correctly related.
protected  int FieldEditor.convertHorizontalDLUsToPixels(Control control, int dlus)
          Returns the number of pixels corresponding to the given number of horizontal dialog units.
protected  int FieldEditor.convertVerticalDLUsToPixels(Control control, int dlus)
          Returns the number of pixels corresponding to the given number of vertical dialog units.
protected  Point ColorFieldEditor.computeImageSize(Control window)
          Computes the size of the color image displayed on the button.
 

Uses of Control in org.eclipse.jface.resource
 

Methods in org.eclipse.jface.resource with parameters of type Control
static void JFaceColors.setColors(Control control, Color foreground, Color background)
          Set the foreground and background colors of the control to the specified values.
 

Uses of Control in org.eclipse.jface.text
 

Methods in org.eclipse.jface.text that return Control
protected  Control AbstractInformationControlManager.getSubjectControl()
          Returns the subject control of this manager/information control.
 Control ITextViewerExtension.getControl()
          Returns the control of this viewer.
 Control TextViewer.getControl()
           
 

Methods in org.eclipse.jface.text with parameters of type Control
 void AbstractInformationControlManager.install(Control subjectControl)
          Installs this manager on the given control.
protected  Point AbstractInformationControlManager.computeSizeConstraints(Control subjectControl, IInformationControl informationControl)
          Computes the size constraints of the information control in points based on the default font of the given subject control as well as the size constraints in character width.
 void AbstractInformationControlManager.IInformationControlCloser.setSubjectControl(Control subject)
          Sets the closer's subject control.
 

Uses of Control in org.eclipse.jface.text.source
 

Methods in org.eclipse.jface.text.source that return Control
 Control IVerticalRulerInfo.getControl()
          Returns the ruler's SWT control.
 Control IVerticalRulerColumn.createControl(CompositeRuler parentRuler, Composite parentControl)
          Creates the column's SWT control.
 Control IVerticalRulerColumn.getControl()
          Returns the column's SWT control.
 Control AnnotationRulerColumn.getControl()
           
 Control AnnotationRulerColumn.createControl(CompositeRuler parentRuler, Composite parentControl)
           
 Control VerticalRuler.getControl()
           
 Control VerticalRuler.createControl(Composite parent, ITextViewer textViewer)
           
 Control SourceViewer.getControl()
           
 Control IOverviewRuler.getHeaderControl()
          Returns this rulers header control.
 Control CompositeRuler.getControl()
           
 Control CompositeRuler.createControl(Composite parent, ITextViewer textViewer)
           
 Control OutlinerRulerColumn.createControl(CompositeRuler parentRuler, Composite parentControl)
           
 Control IVerticalRuler.createControl(Composite parent, ITextViewer textViewer)
          Creates the ruler's SWT control.
 Control OverviewRuler.getControl()
           
 Control OverviewRuler.createControl(Composite parent, ITextViewer textViewer)
           
 Control OverviewRuler.getHeaderControl()
           
 Control LineNumberRulerColumn.getControl()
           
 Control LineNumberRulerColumn.createControl(CompositeRuler parentRuler, Composite parentControl)
           
 

Uses of Control in org.eclipse.jface.util
 

Constructors in org.eclipse.jface.util with parameters of type Control
OpenStrategy(Control control)
           
 

Uses of Control in org.eclipse.jface.viewers
 

Methods in org.eclipse.jface.viewers that return Control
abstract  Control Viewer.getControl()
          Returns the primary control associated with this viewer.
 Control TreeViewer.getControl()
           
protected abstract  Control CellEditor.createControl(Composite parent)
          Creates the control for this cell editor under the given parent control.
 Control CellEditor.getControl()
          Returns the control used to implement this cell editor.
protected  Control DialogCellEditor.createContents(Composite cell)
          Creates the controls used to show the value of this cell editor.
protected  Control DialogCellEditor.createControl(Composite parent)
           
protected  Control CheckboxCellEditor.createControl(Composite parent)
          The CheckboxCellEditor implementation of this CellEditor framework method does nothing and returns null.
 Control ListViewer.getControl()
           
protected  Control ComboBoxCellEditor.createControl(Composite parent)
           
 Control TableViewer.getControl()
           
 Control TableTreeViewer.getControl()
           
protected  Control ColorCellEditor.createContents(Composite cell)
           
protected  Control TextCellEditor.createControl(Composite parent)
           
 

Methods in org.eclipse.jface.viewers with parameters of type Control
protected  void ContentViewer.hookControl(Control control)
          Adds event listener hooks to the given control.
protected  void StructuredViewer.hookControl(Control control)
           
protected  void AbstractTreeViewer.addSelectionListener(Control control, SelectionListener listener)
          Deprecated.  
protected abstract  void AbstractTreeViewer.addTreeListener(Control control, TreeListener listener)
          Adds the given SWT tree listener to the given SWT control.
protected abstract  int AbstractTreeViewer.getItemCount(Control control)
          Returns the number of child items of the given SWT control.
protected abstract  Item[] AbstractTreeViewer.getSelection(Control control)
          Returns all selected items for the given SWT control.
protected  void AbstractTreeViewer.hookControl(Control control)
           
protected abstract  void AbstractTreeViewer.removeAll(Control control)
          Removes all items from the given control.
protected  void TreeViewer.addTreeListener(Control c, TreeListener listener)
           
protected  int TreeViewer.getItemCount(Control widget)
           
protected  Item[] TreeViewer.getSelection(Control widget)
           
protected  void TreeViewer.removeAll(Control widget)
           
protected abstract  Object DialogCellEditor.openDialogBox(Control cellEditorWindow)
          Opens a dialog box under the given parent control and returns the dialog's value when it closes.
protected  void TableViewer.hookControl(Control control)
           
protected  void TableTreeViewer.addTreeListener(Control c, TreeListener listener)
           
protected  int TableTreeViewer.getItemCount(Control widget)
           
protected  Item[] TableTreeViewer.getSelection(Control widget)
           
protected  void TableTreeViewer.hookControl(Control control)
           
protected  void TableTreeViewer.removeAll(Control widget)
           
protected  Object ColorCellEditor.openDialogBox(Control cellEditorWindow)
           
 

Uses of Control in org.eclipse.jface.window
 

Methods in org.eclipse.jface.window that return Control
protected  Control Window.createContents(Composite parent)
          Creates and returns this window's contents.
protected  Control Window.getContents()
          Returns the top level control for this window.
protected  Control ApplicationWindow.createToolBarControl(Shell shell)
          Creates the control for the tool bar manager.
protected  Control ApplicationWindow.getToolBarControl()
          Returns the control for the window's toolbar.
 

Uses of Control in org.eclipse.jface.wizard
 

Subclasses of Control in org.eclipse.jface.wizard
 class ProgressMonitorPart
          A standard implementation of an IProgressMonitor.
 

Fields in org.eclipse.jface.wizard declared as Control
protected  Control ProgressMonitorPart.fCancelComponent
           
 

Methods in org.eclipse.jface.wizard that return Control
protected  Control WizardDialog.createButtonBar(Composite parent)
          Creates and returns the contents of this dialog's button bar.
protected  Control WizardDialog.createContents(Composite parent)
          The WizardDialog implementation of this Window method calls call IWizard.addPages to allow the current wizard to add extra pages, then super.createContents to create the controls.
protected  Control WizardDialog.createDialogArea(Composite parent)
           
 

Methods in org.eclipse.jface.wizard with parameters of type Control
 void WizardDialog.PageContainerFillLayout.layoutPage(Control w)
          Lays outs the page according to this layout.
 void WizardDialog.PageContainerFillLayout.setPageLocation(Control w)
          Sets the location of the page so that its origin is in the upper left corner.
 void ProgressMonitorPart.attachToCancelComponent(Control cancelComponent)
          Attaches the progress monitor part to the given cancel component.
 void ProgressMonitorPart.removeFromCancelComponent(Control cc)
          Detached the progress monitor part to the given cancel component
 

Uses of Control in org.eclipse.swt.accessibility
 

Methods in org.eclipse.swt.accessibility with parameters of type Control
static Accessible Accessible.internal_new_Accessible(Control control)
          Invokes platform specific functionality to allocate a new accessible object.
 

Uses of Control in org.eclipse.swt.custom
 

Subclasses of Control in org.eclipse.swt.custom
 class AnimatedProgress
          Deprecated. As of Eclipse 2.1, use ProgressBar with the style SWT.INDETERMINATE
Styles:
VERTICAL, HORIZONTAL, BORDER
 class CCombo
          The CCombo class represents a selectable user interface object that combines a text field and a list and issues notificiation when an item is selected from the list.
 class CLabel
          A Label which supports aligned text and/or an image and different border styles.
 class CTabFolder
          Instances of this class implement the notebook user interface metaphor.
 class SashForm
          The SashForm lays out its children in a Row or Column arrangement (as specified by the orientation) and places a Sash between the children.
 class ScrolledComposite
          A ScrolledComposite provides scrollbars and will scroll its content when the user uses the scrollbars.
 class StyledText
          A StyledText is an editable user interface object that displays lines of text.
 class TableCursor
          A TableCursor provides a way for the user to navigate around a Table using the keyboard.
 class TableTree
          A TableTree is a selectable user interface object that displays a hierarchy of items, and issues notification when an item is selected.
 class ViewForm
          Instances of this class implement a Composite that lays out three children horizontally and allows programmatic control of layout and border parameters.
 

Fields in org.eclipse.swt.custom declared as Control
 Control StackLayout.topControl
          topControl the Control that is displayed at the top of the stack.
 

Methods in org.eclipse.swt.custom that return Control
 Control ViewForm.getContent()
          Returns the content area.
 Control ViewForm.getTopCenter()
          Returns Control that appears in the top center of the pane.
 Control ViewForm.getTopLeft()
          Returns the Control that appears in the top left corner of the pane.
 Control ViewForm.getTopRight()
          Returns the control in the top right corner of the pane.
 Control SashForm.getMaximizedControl()
          Answer the control that currently is maximized in the SashForm.
 Control[] CCombo.getChildren()
           
 Control ScrolledComposite.getContent()
          Get the content that is being scrolled.
 Control ControlEditor.getEditor()
          Returns the Control that is displayed above the composite being edited.
 Control CTabItem.getControl()
          Gets the control that is displayed in the content are of the tab item.
 Control CTabFolder.getTopRight()
          Returns the control in the top right corner of the tab folder.
 

Methods in org.eclipse.swt.custom with parameters of type Control
 void ViewForm.setContent(Control content)
          Sets the content.
 void ViewForm.setTopCenter(Control topCenter)
          Set the control that appears in the top center of the pane.
 void ViewForm.setTopLeft(Control c)
          Set the control that appears in the top left corner of the pane.
 void ViewForm.setTopRight(Control c)
          Set the control that appears in the top right corner of the pane.
 void SashForm.setMaximizedControl(Control control)
          Specify the control that should take up the entire client area of the SashForm.
 void ScrolledComposite.setContent(Control content)
          Set the content that will be scrolled.
 void ControlEditor.setEditor(Control editor)
          Specify the Control that is to be displayed.
 void CTabItem.setControl(Control control)
          Sets the control that is used to fill the client area of the tab folder when the user selects the tab item.
 void TableEditor.setEditor(Control editor, TableItem item, int column)
          Specify the Control that is to be displayed and the cell in the table that it is to be positioned above.
 void TreeEditor.setEditor(Control editor, TreeItem item)
          Specify the Control that is to be displayed and the cell in the tree that it is to be positioned above.
 void CTabFolder.setTopRight(Control control)
          Set the control that appears in the top right corner of the tab folder.
 void TableTreeEditor.setEditor(Control editor, TableTreeItem item, int column)
          Specify the Control that is to be displayed and the cell in the table that it is to be positioned above.
 

Uses of Control in org.eclipse.swt.dnd
 

Methods in org.eclipse.swt.dnd that return Control
 Control DragSource.getControl()
          Returns the Control which is registered for this DragSource.
 Control DropTarget.getControl()
          Returns the Control which is registered for this DropTarget.
 

Constructors in org.eclipse.swt.dnd with parameters of type Control
DragSource(Control control, int style)
          Creates a new DragSource to handle dragging from the specified Control.
DropTarget(Control control, int style)
          Creates a new DropTarget to allow data to be dropped on the specified Control.
 

Uses of Control in org.eclipse.swt.layout
 

Fields in org.eclipse.swt.layout declared as Control
 Control FormAttachment.control
          control specifies the control to which the control side is attached.
 

Constructors in org.eclipse.swt.layout with parameters of type Control
FormAttachment(Control control, int offset, int alignment)
          Constructs a new instance of this class given a control, an offset and an alignment.
FormAttachment(Control control, int offset)
          Constructs a new instance of this class given a control and an offset.
FormAttachment(Control control)
          Constructs a new instance of this class given a control.
 

Uses of Control in org.eclipse.swt.ole.win32
 

Subclasses of Control in org.eclipse.swt.ole.win32
 class OleClientSite
          OleClientSite provides a site to manage an embedded OLE Document within a container.
 class OleControlSite
          OleControlSite provides a site to manage an embedded ActiveX Control within a container.
 class OleFrame
          OleFrame is an OLE Container's top level frame.
 

Uses of Control in org.eclipse.swt.widgets
 

Subclasses of Control in org.eclipse.swt.widgets
 class Button
          Instances of this class represent a selectable user interface object that issues notification when pressed and released.
 class Canvas
          Instances of this class provide a surface for drawing arbitrary graphics.
 class Combo
          Instances of this class are controls that allow the user to choose an item from a list of items, or optionally enter a new value by typing it into an editable text field.
 class Composite
          Instances of this class are controls which are capable of containing other controls.
 class CoolBar
          Instances of this class provide an area for dynamically positioning the items they contain.
 class Decorations
          Instances of this class provide the appearance and behavior of Shells, but are not top level shells or dialogs.
 class Group
          Instances of this class provide an etched border with an optional title.
 class Label
          Instances of this class represent a non-selectable user interface object that displays a string or image.
 class List
          Instances of this class represent a selectable user interface object that displays a list of strings and issues notificiation when a string selected.
 class ProgressBar
          Instances of the receiver represent is an unselectable user interface object that is used to display progress, typically in the form of a bar.
 class Sash
          Instances of the receiver represent a selectable user interface object that allows the user to drag a rubber banded outline of the sash within the parent control.
 class Scale
          Instances of the receiver represent a selectable user interface object that present a range of continuous numeric values.
 class Scrollable
          This class is the abstract superclass of all classes which represent controls that have standard scroll bars.
 class Shell
          Instances of this class represent the "windows" which the desktop or "window manager" is managing.
 class Slider
          Instances of this class are selectable user interface objects that represent a range of positive, numeric values.
 class TabFolder
          Instances of this class implement the notebook user interface metaphor.
 class Table
          Instances of this class implement a selectable user interface object that displays a list of images and strings and issue notificiation when selected.
 class Text
          Instances of this class are selectable user interface objects that allow the user to enter and modify text.
 class ToolBar
          Instances of this class support the layout of selectable tool bar items.
 class Tree
          Instances of this class provide a selectable user interface object that displays a hierarchy of items and issue notificiation when an item in the hierarchy is selected.
 

Methods in org.eclipse.swt.widgets that return Control
 Control[] Composite.getChildren()
          Returns an array containing the receiver's children.
 Control[] Composite.getTabList()
          Gets the last specified tabbing order for the control.
 Control Display.getCursorControl()
          Returns the control which the on-screen pointer is currently over top of, or null if it is not currently over one of the controls built by the currently running application.
 Control Display.getFocusControl()
          Returns the control which currently has keyboard focus, or null if keyboard events are not currently going to any of the controls built by the currently running application.
 Control ToolItem.getControl()
          Returns the control that is used to fill the bounds of the item when the items is a SEPARATOR.
 Control CoolItem.getControl()
          Returns the control that is associated with the receiver.
 Control TabItem.getControl()
          Returns the control that is used to fill the client area of the tab folder when the user selects the tab item.
 

Methods in org.eclipse.swt.widgets with parameters of type Control
 void Control.moveAbove(Control control)
          Moves the receiver above the specified control in the drawing order.
 void Control.moveBelow(Control control)
          Moves the receiver below the specified control in the drawing order.
 void Composite.setTabList(Control[] tabList)
          Sets the tabbing order for the specified controls to match the order that they occur in the argument list.
 Point Display.map(Control from, Control to, Point point)
          Maps a point from one coordinate system to another.
 Point Display.map(Control from, Control to, int x, int y)
          Maps a point from one coordinate system to another.
 Rectangle Display.map(Control from, Control to, Rectangle rectangle)
          Maps a point from one coordinate system to another.
 Rectangle Display.map(Control from, Control to, int x, int y, int width, int height)
          Maps a point from one coordinate system to another.
 void ToolItem.setControl(Control control)
          Sets the control that is used to fill the bounds of the item when the items is a SEPARATOR.
 void CoolItem.setControl(Control control)
          Sets the control that is associated with the receiver to the argument.
 void TabItem.setControl(Control control)
          Sets the control that is used to fill the client area of the tab folder when the user selects the tab item.
 

Constructors in org.eclipse.swt.widgets with parameters of type Control
Menu(Control parent)
          Constructs a new instance of this class given its parent, and sets the style for the instance so that the instance will be a popup menu on the given parent's shell.
 

Uses of Control in org.eclipse.ui
 

Methods in org.eclipse.ui with parameters of type Control
 Menu IWorkbenchWindowPulldownDelegate.getMenu(Control parent)
          Returns the menu for this pull down action.
 

Uses of Control in org.eclipse.ui.dialogs
 

Subclasses of Control in org.eclipse.ui.dialogs
 class FilteredList
          A composite widget which holds a list of elements for user selection.
 

Methods in org.eclipse.ui.dialogs that return Control
protected  Control ListDialog.createDialogArea(Composite container)
           
protected  Control ListSelectionDialog.createDialogArea(Composite parent)
           
protected  Control SelectionStatusDialog.createButtonBar(Composite parent)
           
 Control TwoPaneElementSelector.createDialogArea(Composite parent)
           
protected  Control SaveAsDialog.createContents(Composite parent)
           
protected  Control SaveAsDialog.createDialogArea(Composite parent)
           
protected  Control CheckedTreeSelectionDialog.createDialogArea(Composite parent)
           
protected  Control TypeFilteringDialog.createDialogArea(Composite parent)
           
protected  Control ProjectLocationSelectionDialog.createDialogArea(Composite parent)
           
protected  Control ProjectLocationMoveDialog.createContents(Composite parent)
           
protected  Control ProjectLocationMoveDialog.createDialogArea(Composite parent)
           
protected  Control ResourceSelectionDialog.createDialogArea(Composite parent)
           
protected  Control NewFolderDialog.createDialogArea(Composite parent)
           
protected  Control FileSelectionDialog.createDialogArea(Composite parent)
          Deprecated.  
protected  Control ElementTreeSelectionDialog.createDialogArea(Composite parent)
           
protected  Control ResourceListSelectionDialog.createDialogArea(Composite parent)
          Creates the contents of this dialog, initializes the listener and the update thread.
protected  Control MarkerResolutionSelectionDialog.createDialogArea(Composite parent)
           
protected  Control ElementListSelectionDialog.createDialogArea(Composite parent)
           
protected  Control ContainerSelectionDialog.createDialogArea(Composite parent)
           
 

Uses of Control in org.eclipse.ui.help
 

Methods in org.eclipse.ui.help with parameters of type Control
static Object WorkbenchHelp.getHelp(Control control)
          Deprecated. as context computers are no longer supported
static void WorkbenchHelp.setHelp(Control control, Object[] contexts)
          Deprecated. use setHelp with single context id parameter
static void WorkbenchHelp.setHelp(Control control, IContextComputer computer)
          Deprecated. context computers are no longer supported, clients should implement their own help listener
static void WorkbenchHelp.setHelp(Control control, String contextId)
          Sets the given help context id on the given control.
 

Uses of Control in org.eclipse.ui.part
 

Subclasses of Control in org.eclipse.ui.part
 class DrillDownComposite
          Class DrillDownComposite implements a simple web style navigation metaphor.
 class PageBook
          A pagebook is a composite control where only a single control is visible at a time.
 

Methods in org.eclipse.ui.part that return Control
protected  Control MultiPageEditorPart.getControl(int pageIndex)
          Returns the control for the given page index, or null if no control has been set for the page.
abstract  Control Page.getControl()
          The Page implementation of this IPage method returns null.
 Control IPage.getControl()
          Returns the SWT control for this page.
 Control MessagePage.getControl()
           
 

Methods in org.eclipse.ui.part with parameters of type Control
 int MultiPageEditorPart.addPage(Control control)
          Creates and adds a new page containing the given control to this multi-page editor.
protected  void MultiPageEditorPart.setControl(int pageIndex, Control control)
          Sets the control for the given page index.
 void PageBook.showPage(Control page)
          Shows the given page.
 

Uses of Control in org.eclipse.ui.texteditor
 

Methods in org.eclipse.ui.texteditor that return Control
protected  Control StatusTextEditor.createStatusControl(Composite parent, IStatus status)
          Creates the status control for the given status.
 Control InfoForm.getControl()
          Returns the control of this form.
 

Uses of Control in org.eclipse.ui.views.contentoutline
 

Methods in org.eclipse.ui.views.contentoutline that return Control
 Control ContentOutlinePage.getControl()
           
 

Uses of Control in org.eclipse.ui.views.properties
 

Methods in org.eclipse.ui.views.properties that return Control
 Control PropertySheetPage.getControl()
           
 

Uses of Control in org.eclipse.ui.views.tasklist
 

Methods in org.eclipse.ui.views.tasklist that return Control
protected  Control TaskPropertiesDialog.createDialogArea(Composite parent)
           
 


Eclipse Platform
2.1

Copyright (c) IBM Corp. and others 2000, 2003. All Rights Reserved.