|
Eclipse Platform Release 3.1 |
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Display | |
---|---|
org.eclipse.jface.operation | Provides JFace support for long-running operations. |
org.eclipse.jface.resource | Provides support for managing resources such as SWT fonts and images. |
org.eclipse.jface.text | Provides a framework for creating and manipulating text documents. |
org.eclipse.jface.text.source | Provides a support for managing annotations attached to a document. |
org.eclipse.swt.awt | SWT AWT embedding support. |
org.eclipse.swt.custom | SWT Custom widgets. |
org.eclipse.swt.dnd | SWT Drag and Drop support. |
org.eclipse.swt.events | SWT typed listener support. |
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.application | Application-level APIs for configuring and controling the Eclipse Platform User Interface. |
org.eclipse.ui.console | Application programming interfaces for interaction with the Eclipse console. |
org.eclipse.ui.forms | Forms-based controls for use in views, editors, and wizards. |
org.eclipse.ui.forms.editor | Support for forms-based multi-page editors. |
org.eclipse.ui.forms.widgets | Custom widgets and controls for forms-based parts. |
org.eclipse.ui.progress | Application programming interfaces for interaction with and extension of the Eclipse Platform User Interface. |
org.eclipse.ui.texteditor | Provides a framework for text editors obeying to the desktop rules. |
Uses of Display in org.eclipse.jface.operation |
---|
Methods in org.eclipse.jface.operation with parameters of type Display | |
static void |
ModalContext.run(IRunnableWithProgress operation,
boolean fork,
IProgressMonitor monitor,
Display display)
Runs the given runnable in a modal context, passing it a progress monitor. |
Uses of Display in org.eclipse.jface.resource |
---|
Fields in org.eclipse.jface.resource declared as Display | |
protected Display |
ColorRegistry.display
This registries Display . |
Methods in org.eclipse.jface.resource with parameters of type Display | |
static ResourceManager |
JFaceResources.getResources(Display toQuery)
Returns the global resource manager for the given display |
static Color |
JFaceColors.getBannerBackground(Display display)
Get the Color used for banner backgrounds |
static Color |
JFaceColors.getBannerForeground(Display display)
Get the Color used for banner foregrounds |
static Color |
JFaceColors.getErrorBackground(Display display)
Get the background Color for widgets that display errors. |
static Color |
JFaceColors.getErrorBorder(Display display)
Get the border Color for widgets that display errors. |
static Color |
JFaceColors.getErrorText(Display display)
Get the default color to use for displaying errors. |
static Color |
JFaceColors.getHyperlinkText(Display display)
Get the default color to use for displaying hyperlinks. |
static Color |
JFaceColors.getActiveHyperlinkText(Display display)
Get the default color to use for displaying active hyperlinks. |
FontData |
FontRegistry.bestData(FontData[] fonts,
Display display)
Deprecated. use bestDataArray in order to support Motif multiple entry fonts. |
FontData[] |
FontRegistry.bestDataArray(FontData[] fonts,
Display display)
Deprecated. use filterData in order to preserve multiple entry fonts on Motif |
FontData[] |
FontRegistry.filterData(FontData[] fonts,
Display display)
Removes from the list all fonts that do not exist in this system. |
Constructors in org.eclipse.jface.resource with parameters of type Display | |
ImageRegistry(Display display)
Creates an empty image registry. |
|
FontRegistry(Display display)
Creates an empty font registry. |
|
FontRegistry(Display display,
boolean cleanOnDisplayDisposal)
Creates an empty font registry. |
|
ColorRegistry(Display display)
Create a new instance of the receiver. |
|
ColorRegistry(Display display,
boolean cleanOnDisplayDisposal)
Create a new instance of the receiver. |
Uses of Display in org.eclipse.jface.text |
---|
Methods in org.eclipse.jface.text with parameters of type Display | |
String |
DefaultInformationControl.IInformationPresenter.updatePresentation(Display display,
String hoverInfo,
TextPresentation presentation,
int maxWidth,
int maxHeight)
Updates the given presentation of the given information and thereby may manipulate the information to be displayed. |
Uses of Display in org.eclipse.jface.text.source |
---|
Methods in org.eclipse.jface.text.source with parameters of type Display | |
protected Color |
LineNumberRulerColumn.getBackground(Display display)
Returns the System background color for list widgets. |
protected void |
LineNumberRulerColumn.paintLine(int line,
int y,
int lineheight,
GC gc,
Display display)
Paints the line. |
protected void |
LineNumberChangeRulerColumn.paintLine(int line,
int y,
int lineheight,
GC gc,
Display display)
|
protected Color |
ChangeRulerColumn.getBackground(Display display)
Returns the System background color for list widgets. |
protected void |
ChangeRulerColumn.paintLine(int line,
int y,
int lineheight,
GC gc,
Display display)
|
Uses of Display in org.eclipse.swt.awt |
---|
Methods in org.eclipse.swt.awt with parameters of type Display | |
static Shell |
SWT_AWT.new_Shell(Display display,
Canvas parent)
Creates a new Shell . |
Uses of Display in org.eclipse.swt.custom |
---|
Methods in org.eclipse.swt.custom with parameters of type Display | |
static void |
BusyIndicator.showWhile(Display display,
Runnable runnable)
Runs the given Runnable while providing
busy feedback using this busy indicator. |
Uses of Display in org.eclipse.swt.dnd |
---|
Constructors in org.eclipse.swt.dnd with parameters of type Display | |
Clipboard(Display display)
Constructs a new instance of this class. |
Uses of Display in org.eclipse.swt.events |
---|
Fields in org.eclipse.swt.events declared as Display | |
Display |
TypedEvent.display
the display where the event occurred |
Uses of Display in org.eclipse.swt.widgets |
---|
Fields in org.eclipse.swt.widgets declared as Display | |
Display |
Event.display
the display where the event occurred |
Methods in org.eclipse.swt.widgets that return Display | |
Display |
Widget.getDisplay()
Returns the Display that is associated with
the receiver.
|
static Display |
Display.findDisplay(Thread thread)
Returns the display which the given thread is the user-interface thread for, or null if the given thread is not a user-interface thread for any display. |
static Display |
Display.getCurrent()
Returns the display which the currently running thread is the user-interface thread for, or null if the currently running thread is not a user-interface thread for any display. |
static Display |
Display.getDefault()
Returns the default display. |
Methods in org.eclipse.swt.widgets with parameters of type Display | |
static Shell |
Shell.win32_new(Display display,
int handle)
Invokes platform specific functionality to allocate a new shell. |
Constructors in org.eclipse.swt.widgets with parameters of type Display | |
Synchronizer(Display display)
Constructs a new instance of this class. |
|
Tracker(Display display,
int style)
Constructs a new instance of this class given the display to create it on and a style value describing its behavior and appearance. |
|
Shell(Display display)
Constructs a new instance of this class given only the display to create it on. |
|
Shell(Display display,
int style)
Constructs a new instance of this class given the display to create it on and a style value describing its behavior and appearance. |
Uses of Display in org.eclipse.ui |
---|
Methods in org.eclipse.ui that return Display | |
static Display |
PlatformUI.createDisplay()
Creates the Display to be used by the workbench.
|
Display |
IWorkbench.getDisplay()
Returns the display for this workbench. |
Methods in org.eclipse.ui with parameters of type Display | |
static int |
PlatformUI.createAndRunWorkbench(Display display,
WorkbenchAdvisor advisor)
Creates the workbench and associates it with the given display and workbench advisor, and runs the workbench UI. |
Uses of Display in org.eclipse.ui.application |
---|
Methods in org.eclipse.ui.application with parameters of type Display | |
void |
WorkbenchAdvisor.eventLoopIdle(Display display)
Performs arbitrary work or yields when there are no events to be processed. |
Uses of Display in org.eclipse.ui.console |
---|
Methods in org.eclipse.ui.console that return Display | |
static Display |
ConsolePlugin.getStandardDisplay()
Returns the standard display to be used. |
Uses of Display in org.eclipse.ui.forms |
---|
Fields in org.eclipse.ui.forms declared as Display | |
protected Display |
FormColors.display
|
Methods in org.eclipse.ui.forms that return Display | |
Display |
FormColors.getDisplay()
Returns the display used to create colors. |
Methods in org.eclipse.ui.forms with parameters of type Display | |
void |
HyperlinkSettings.initializeDefaultForegrounds(Display display)
Initializes the hyperlink foregrounds from the JFace defaults set for the entire workbench. |
Constructors in org.eclipse.ui.forms with parameters of type Display | |
HyperlinkSettings(Display display)
The constructor. |
|
HyperlinkGroup(Display display)
Creates a hyperlink group. |
|
FormColors(Display display)
Creates form colors using the provided display. |
Uses of Display in org.eclipse.ui.forms.editor |
---|
Methods in org.eclipse.ui.forms.editor with parameters of type Display | |
protected FormToolkit |
FormEditor.createToolkit(Display display)
Creates the form toolkit. |
Uses of Display in org.eclipse.ui.forms.widgets |
---|
Constructors in org.eclipse.ui.forms.widgets with parameters of type Display | |
FormToolkit(Display display)
Creates a toolkit that is self-sufficient (will manage its own colors). |
Uses of Display in org.eclipse.ui.progress |
---|
Methods in org.eclipse.ui.progress that return Display | |
Display |
UIJob.getDisplay()
Returns the display for use by the receiver when running in an asyncExec. |
Methods in org.eclipse.ui.progress with parameters of type Display | |
void |
UIJob.setDisplay(Display runDisplay)
Sets the display to execute the asyncExec in. |
Constructors in org.eclipse.ui.progress with parameters of type Display | |
WorkbenchJob(Display jobDisplay,
String name)
Create a new instance of the receiver with the supplied display and name. |
|
UIJob(Display jobDisplay,
String name)
Create a new instance of the receiver with the supplied Display. |
Uses of Display in org.eclipse.ui.texteditor |
---|
Methods in org.eclipse.ui.texteditor with parameters of type Display | |
protected static Image |
MarkerAnnotation.getImage(Display display,
ImageDescriptor descriptor)
Deprecated. As of 3.0, visual presentation is no longer supported, annotation with a visible presentation should implement IAnnotationPresentation |
protected static Map |
MarkerAnnotation.getImageRegistry(Display display)
Deprecated. As of 3.0, visual presentation is no longer supported, annotation with a visible presentation should implement IAnnotationPresentation |
protected Image |
MarkerAnnotation.getImage(Display display)
Deprecated. As of 3.0, visual presentation is no longer supported, annotation with a visible presentation should implement IAnnotationPresentation |
|
Eclipse Platform Release 3.1 |
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Guidelines for using Eclipse APIs.
Copyright (c) IBM Corp. and others 2000, 2005. All rights reserved.