Package | Description |
---|---|
org.eclipse.debug.ui |
Provides a generic debugger user interface that clients may customize via standard
workbench extension points.
|
org.eclipse.debug.ui.console |
Provides a set of interfaces and classes for rendering and annotating text in the debug console. |
org.eclipse.jface.dialogs |
Provides support for dialogs.
|
org.eclipse.jface.fieldassist |
Provides support for classes that help communicate proper content for dialogs and wizards.
|
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.contentassist |
Provides a content assist add-on for an ITextViewer.
|
org.eclipse.jface.text.hyperlink |
Provides support for detecting and displaying hyperlinks in ISourceViewers.
|
org.eclipse.jface.text.quickassist |
This package provides the quick assist assistant add-on for an ISourceViewer.
|
org.eclipse.jface.text.source |
Provides a support for managing annotations attached to a document.
|
org.eclipse.jface.viewers |
Provides a framework for viewers, which are model-based
content adapters for SWT widgets.
|
org.eclipse.swt.custom |
SWT Custom widgets.
|
org.eclipse.swt.graphics |
SWT graphics classes.
|
org.eclipse.swt.ole.win32 |
SWT Win32 OLE implementation classes.
|
org.eclipse.swt.widgets |
SWT widget public API classes.
|
org.eclipse.ui.console |
Application programming interfaces for interaction
with the Eclipse console.
|
org.eclipse.ui.dialogs |
Classes for standard dialogs, wizards, and preference
pages in the Eclipse Platform User Interface.
|
org.eclipse.ui.forms |
Forms-based controls for use in views, editors, and wizards.
|
org.eclipse.ui.forms.widgets |
Custom widgets and controls for forms-based parts.
|
org.eclipse.ui.model |
Provides a workbench adapter for displaying workbench elements in the UI without
having to know the concrete type of the element, and various label providers for
workbench-specific objects like editors, views, and perspectives.
|
org.eclipse.ui.part |
Classes for the creation of workbench parts that integrate
with the Eclipse Platform User Interface.
|
Modifier and Type | Method and Description |
---|---|
static Color |
DebugUITools.getPreferenceColor(String id)
Returns the color associated with the specified preference identifier or
null if none. |
Modifier and Type | Method and Description |
---|---|
Color |
ConsoleColorProvider.getColor(String streamIdentifer) |
Color |
IConsoleColorProvider.getColor(String streamIdentifer)
Returns the color to draw output associated with the given stream.
|
Modifier and Type | Method and Description |
---|---|
protected void |
PopupDialog.applyBackgroundColor(Color color,
Control control)
Set the specified background color for the specified control and all of
its children.
|
protected void |
PopupDialog.applyForegroundColor(Color color,
Control control)
Set the specified foreground color for the specified control and all of
its children.
|
void |
ImageAndMessageArea.setBackground(Color bg) |
Modifier and Type | Method and Description |
---|---|
static Color |
FieldAssistColors.getRequiredFieldBackgroundColor(Control control)
Return the color that should be used for the background of a control to
indicate that the control is a required field and does not have content.
|
Modifier and Type | Method and Description |
---|---|
Color |
ResourceManager.createColor(ColorDescriptor descriptor)
Allocates a color, given a color descriptor.
|
abstract Color |
ColorDescriptor.createColor(Device device)
Returns the Color described by this descriptor.
|
Color |
ResourceManager.createColor(RGB descriptor)
Allocates a color, given its RGB values.
|
Color |
ColorRegistry.get(String symbolicName)
Returns the
color associated with the given symbolic color
name, or null if no such definition exists. |
static Color |
JFaceColors.getActiveHyperlinkText(Display display)
Get the default color to use for displaying active hyperlinks.
|
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.
|
Modifier and Type | Method and Description |
---|---|
static ColorDescriptor |
ColorDescriptor.createFrom(Color toCreate)
Creates a ColorDescriptor from an existing color.
|
static ColorDescriptor |
ColorDescriptor.createFrom(Color toCreate,
Device originalDevice)
Creates a ColorDescriptor from an existing Color, given the Device associated
with the original Color.
|
abstract void |
ColorDescriptor.destroyColor(Color toDestroy)
Undoes whatever was done by createColor.
|
static void |
JFaceColors.setColors(Control control,
Color foreground,
Color background)
Set the foreground and background colors of the
control to the specified values.
|
Modifier and Type | Method and Description |
---|---|
Color |
TextAttribute.getBackground()
Returns the attribute's background color.
|
Color |
TextAttribute.getForeground()
Returns the attribute's foreground color.
|
Modifier and Type | Method and Description |
---|---|
void |
DefaultInformationControl.setBackgroundColor(Color background) |
void |
IInformationControl.setBackgroundColor(Color background)
Sets the background color of this information control.
|
void |
DefaultInformationControl.setForegroundColor(Color foreground) |
void |
IInformationControl.setForegroundColor(Color foreground)
Sets the foreground color of this information control.
|
void |
CursorLinePainter.setHighlightColor(Color highlightColor)
Sets the color in which to draw the background of the cursor line.
|
void |
MarginPainter.setMarginRulerColor(Color color)
Sets the color of the margin line.
|
void |
IFindReplaceTargetExtension.setScopeHighlightColor(Color color)
Sets the scope highlight color
|
void |
ITextViewer.setTextColor(Color color)
Applies the given color as text foreground color to this viewer's
selection.
|
void |
TextViewer.setTextColor(Color color) |
void |
ITextViewer.setTextColor(Color color,
int offset,
int length,
boolean controlRedraw)
Applies the given color as text foreground color to the specified section
of this viewer.
|
void |
TextViewer.setTextColor(Color color,
int start,
int length,
boolean controlRedraw) |
Constructor and Description |
---|
TextAttribute(Color foreground)
Creates a text attribute for the given foreground color, no background color and
with the SWT normal style.
|
TextAttribute(Color foreground,
Color background,
int style)
Creates a text attribute with the given colors and style.
|
Modifier and Type | Method and Description |
---|---|
void |
ContentAssistant.setContextInformationPopupBackground(Color background)
Sets the context information popup's background color.
|
void |
ContentAssistant.setContextInformationPopupForeground(Color foreground)
Sets the context information popup's foreground color.
|
void |
ContentAssistant.setContextSelectorBackground(Color background)
Sets the context selector's background color.
|
void |
ContentAssistant.setContextSelectorForeground(Color foreground)
Sets the context selector's foreground color.
|
void |
ContentAssistant.setProposalSelectorBackground(Color background)
Sets the proposal selector's background color.
|
void |
ContentAssistant.setProposalSelectorForeground(Color foreground)
Sets the proposal's foreground color.
|
Modifier and Type | Method and Description |
---|---|
void |
DefaultHyperlinkPresenter.setColor(Color color) |
Constructor and Description |
---|
DefaultHyperlinkPresenter(Color color)
Creates a new default hyperlink presenter.
|
Modifier and Type | Method and Description |
---|---|
void |
IQuickAssistAssistant.setProposalSelectorBackground(Color background)
Sets the proposal selector's background color.
|
void |
QuickAssistAssistant.setProposalSelectorBackground(Color background)
Sets the proposal selector's background color.
|
void |
IQuickAssistAssistant.setProposalSelectorForeground(Color foreground)
Sets the proposal's foreground color.
|
void |
QuickAssistAssistant.setProposalSelectorForeground(Color foreground) |
Modifier and Type | Method and Description |
---|---|
protected Color |
LineNumberRulerColumn.getBackground(Display display)
Returns the System background color for list widgets.
|
Color |
ISharedTextColors.getColor(RGB rgb)
Returns the color object for the value represented by the given
RGB object. |
protected Color |
LineNumberRulerColumn.getForeground()
Returns the foreground color being used to print the line numbers.
|
Modifier and Type | Method and Description |
---|---|
void |
AnnotationPainter.IDrawingStrategy.draw(Annotation annotation,
GC gc,
StyledText textWidget,
int offset,
int length,
Color color)
Draws a decoration for an annotation onto the specified GC at the given text range.
|
void |
AnnotationPainter.SquigglesStrategy.draw(Annotation annotation,
GC gc,
StyledText textWidget,
int offset,
int length,
Color color) |
void |
AnnotationPainter.NullStrategy.draw(Annotation annotation,
GC gc,
StyledText textWidget,
int offset,
int length,
Color color) |
void |
LineNumberChangeRulerColumn.setAddedColor(Color addedColor) |
void |
ChangeRulerColumn.setAddedColor(Color addedColor) |
void |
IChangeRulerColumn.setAddedColor(Color addedColor)
Sets the background color for added lines.
|
void |
AnnotationPainter.setAnnotationTypeColor(Object annotationType,
Color color)
Sets the color in which the squiggly for the given annotation type should be drawn.
|
void |
OverviewRuler.setAnnotationTypeColor(Object annotationType,
Color color) |
void |
IOverviewRuler.setAnnotationTypeColor(Object annotationType,
Color color)
Sets the color for the given annotation type in this overview ruler.
|
void |
LineNumberChangeRulerColumn.setBackground(Color background) |
void |
ChangeRulerColumn.setBackground(Color background) |
void |
IChangeRulerColumn.setBackground(Color backgroundColor)
Sets the background color for normal lines.
|
void |
LineNumberRulerColumn.setBackground(Color background)
Sets the background color of this column.
|
void |
LineNumberChangeRulerColumn.setChangedColor(Color changedColor) |
void |
ChangeRulerColumn.setChangedColor(Color changedColor) |
void |
IChangeRulerColumn.setChangedColor(Color changedColor)
Sets the background color for changed lines.
|
void |
MatchingCharacterPainter.setColor(Color color)
Sets the color in which to highlight the match character.
|
void |
LineNumberChangeRulerColumn.setDeletedColor(Color deletedColor) |
void |
ChangeRulerColumn.setDeletedColor(Color deletedColor) |
void |
IChangeRulerColumn.setDeletedColor(Color deletedColor)
Sets the color for the deleted lines indicator.
|
void |
LineNumberRulerColumn.setForeground(Color foreground)
Sets the foreground color of this column.
|
Modifier and Type | Method and Description |
---|---|
Color |
IColorDecorator.decorateBackground(Object element)
Return the background Color for element or
null if there
is not one. |
Color |
IColorDecorator.decorateForeground(Object element)
Return the foreground Color for element or
null if there
is not one. |
Color |
ViewerLabel.getBackground()
Get the background Color.
|
Color |
IColorProvider.getBackground(Object element)
Provides a background color for the given element.
|
Color |
DecoratingLabelProvider.getBackground(Object element) |
Color |
ITableColorProvider.getBackground(Object element,
int columnIndex)
Provides a background color for the given element at the specified index
|
Color |
ViewerLabel.getForeground()
Get the foreground Color.
|
Color |
IColorProvider.getForeground(Object element)
Provides a foreground color for the given element.
|
Color |
DecoratingLabelProvider.getForeground(Object element) |
Color |
ITableColorProvider.getForeground(Object element,
int columnIndex)
Provides a foreground color for the given element.
|
Modifier and Type | Method and Description |
---|---|
void |
ViewerLabel.setBackground(Color background)
Set the background Color.
|
void |
StructuredViewer.ColorAndFontCollector.setBackground(Color background)
Set the background color.
|
void |
IDecoration.setBackgroundColor(Color color)
Set the background color for this decoration.
|
void |
ViewerLabel.setForeground(Color foreground)
Set the foreground Color.
|
void |
StructuredViewer.ColorAndFontCollector.setForeground(Color foreground)
Set the foreground color.
|
void |
IDecoration.setForegroundColor(Color color)
Set the foreground color for this decoration.
|
Modifier and Type | Field and Description |
---|---|
Color |
LineBackgroundEvent.lineBackground
line background color
|
Modifier and Type | Method and Description |
---|---|
Color |
TableTreeItem.getBackground()
Deprecated.
Returns the receiver's background color.
|
Color |
TableTree.getBackground()
Deprecated.
|
Color |
StyledText.getBackground() |
Color |
TableTreeItem.getForeground()
Deprecated.
Returns the foreground color that the receiver will use to draw.
|
Color |
TableTree.getForeground()
Deprecated.
|
Color |
StyledText.getForeground() |
Color |
StyledText.getLineBackground(int index)
Returns the background color of the line at the given index.
|
Color |
CTabFolder.getSelectionBackground()
Returns the receiver's selection background color.
|
Color |
StyledText.getSelectionBackground()
Returns the receiver's selection background color.
|
Color |
CTabFolder.getSelectionForeground()
Returns the receiver's selection foreground color.
|
Color |
StyledText.getSelectionForeground()
Returns the receiver's selection foreground color.
|
Modifier and Type | Method and Description |
---|---|
void |
TableTreeItem.setBackground(Color color)
Deprecated.
Sets the receiver's background color to the color specified
by the argument, or to the default system color for the item
if the argument is null.
|
void |
CLabel.setBackground(Color color) |
void |
CTabFolder.setBackground(Color color) |
void |
CCombo.setBackground(Color color) |
void |
TableTree.setBackground(Color color)
Deprecated.
|
void |
SashForm.setBackground(Color color) |
void |
TableCursor.setBackground(Color color) |
void |
StyledText.setBackground(Color color) |
void |
CLabel.setBackground(Color[] colors,
int[] percents)
Specify a gradient of colours to be drawn in the background of the CLabel.
|
void |
CLabel.setBackground(Color[] colors,
int[] percents,
boolean vertical)
Specify a gradient of colours to be drawn in the background of the CLabel.
|
void |
TableTreeItem.setForeground(Color color)
Deprecated.
Sets the receiver's foreground color to the color specified
by the argument, or to the default system color for the item
if the argument is null.
|
void |
CTabFolder.setForeground(Color color) |
void |
CCombo.setForeground(Color color) |
void |
TableTree.setForeground(Color color)
Deprecated.
|
void |
SashForm.setForeground(Color color) |
void |
TableCursor.setForeground(Color color) |
void |
StyledText.setForeground(Color color) |
void |
StyledText.setLineBackground(int startLine,
int lineCount,
Color background)
Sets the background color of the specified lines.
|
void |
CTabFolder.setSelectionBackground(Color color)
Sets the receiver's selection background color to the color specified
by the argument, or to the default system color for the control
if the argument is null.
|
void |
StyledText.setSelectionBackground(Color color)
Sets the receiver's selection background color to the color specified
by the argument, or to the default system color for the control
if the argument is null.
|
void |
CTabFolder.setSelectionBackground(Color[] colors,
int[] percents)
Specify a gradient of colours to be draw in the background of the selected tab.
|
void |
CTabFolder.setSelectionBackground(Color[] colors,
int[] percents,
boolean vertical)
Specify a gradient of colours to be draw in the background of the selected tab.
|
void |
CTabFolder.setSelectionForeground(Color color)
Set the foreground color of the selected tab.
|
void |
StyledText.setSelectionForeground(Color color)
Sets the receiver's selection foreground color to the color specified
by the argument, or to the default system color for the control
if the argument is null.
|
Constructor and Description |
---|
StyleRange(int start,
int length,
Color foreground,
Color background)
Create a new style range.
|
StyleRange(int start,
int length,
Color foreground,
Color background,
int fontStyle)
Create a new style range.
|
Modifier and Type | Field and Description |
---|---|
Color |
TextStyle.background
the background of the style
|
Color |
TextStyle.foreground
the foreground of the style
|
Modifier and Type | Method and Description |
---|---|
Color |
GC.getBackground()
Returns the background color.
|
Color |
Image.getBackground()
Returns the color to which to map the transparent pixel, or null if
the receiver has no transparent pixel.
|
Color |
GC.getForeground()
Returns the receiver's foreground color.
|
Color |
Device.getSystemColor(int id)
Returns the matching standard color for the given
constant, which should be one of the color constants
specified in class
SWT . |
static Color |
Color.win32_new(Device device,
int handle)
Invokes platform specific functionality to allocate a new color.
|
Modifier and Type | Method and Description |
---|---|
void |
TextLayout.draw(GC gc,
int x,
int y,
int selectionStart,
int selectionEnd,
Color selectionForeground,
Color selectionBackground)
Draws the receiver's text using the specified GC at the specified
point.
|
void |
GC.setBackground(Color color)
Sets the background color.
|
void |
Image.setBackground(Color color)
Sets the color to which to map the transparent pixel.
|
void |
GC.setForeground(Color color)
Sets the foreground color.
|
Constructor and Description |
---|
Pattern(Device device,
float x1,
float y1,
float x2,
float y2,
Color color1,
Color color2)
Constructs a new Pattern that represents a linear, two color
gradient.
|
Pattern(Device device,
float x1,
float y1,
float x2,
float y2,
Color color1,
int alpha1,
Color color2,
int alpha2)
Constructs a new Pattern that represents a linear, two color
gradient.
|
TextStyle(Font font,
Color foreground,
Color background)
Create a new text style with the specified font, foreground
and background.
|
Modifier and Type | Method and Description |
---|---|
Color |
OleControlSite.getBackground() |
Color |
OleControlSite.getForeground() |
Modifier and Type | Method and Description |
---|---|
void |
OleControlSite.setBackground(Color color) |
void |
OleControlSite.setForeground(Color color) |
Modifier and Type | Method and Description |
---|---|
Color |
TreeItem.getBackground()
Returns the receiver's background color.
|
Color |
Control.getBackground()
Returns the receiver's background color.
|
Color |
TableItem.getBackground()
Returns the receiver's background color.
|
Color |
TreeItem.getBackground(int index)
Returns the background color at the given column index in the receiver.
|
Color |
TableItem.getBackground(int index)
Returns the background color at the given column index in the receiver.
|
Color |
TreeItem.getForeground()
Returns the foreground color that the receiver will use to draw.
|
Color |
Control.getForeground()
Returns the foreground color that the receiver will use to draw.
|
Color |
TableItem.getForeground()
Returns the foreground color that the receiver will use to draw.
|
Color |
TreeItem.getForeground(int index)
Returns the foreground color at the given column index in the receiver.
|
Color |
TableItem.getForeground(int index)
Returns the foreground color at the given column index in the receiver.
|
Color |
Display.getSystemColor(int id)
Returns the matching standard color for the given
constant, which should be one of the color constants
specified in class
SWT . |
Modifier and Type | Method and Description |
---|---|
void |
TreeItem.setBackground(Color color)
Sets the receiver's background color to the color specified
by the argument, or to the default system color for the item
if the argument is null.
|
void |
Control.setBackground(Color color)
Sets the receiver's background color to the color specified
by the argument, or to the default system color for the control
if the argument is null.
|
void |
TableItem.setBackground(Color color)
Sets the receiver's background color to the color specified
by the argument, or to the default system color for the item
if the argument is null.
|
void |
TreeItem.setBackground(int index,
Color color)
Sets the background color at the given column index in the receiver
to the color specified by the argument, or to the default system color for the item
if the argument is null.
|
void |
TableItem.setBackground(int index,
Color color)
Sets the background color at the given column index in the receiver
to the color specified by the argument, or to the default system color for the item
if the argument is null.
|
void |
TreeItem.setForeground(Color color)
Sets the receiver's foreground color to the color specified
by the argument, or to the default system color for the item
if the argument is null.
|
void |
Control.setForeground(Color color)
Sets the receiver's foreground color to the color specified
by the argument, or to the default system color for the control
if the argument is null.
|
void |
TableItem.setForeground(Color color)
Sets the receiver's foreground color to the color specified
by the argument, or to the default system color for the item
if the argument is null.
|
void |
TreeItem.setForeground(int index,
Color color)
Sets the foreground color at the given column index in the receiver
to the color specified by the argument, or to the default system color for the item
if the argument is null.
|
void |
TableItem.setForeground(int index,
Color color)
Sets the foreground color at the given column index in the receiver
to the color specified by the argument, or to the default system color for the item
if the argument is null.
|
Modifier and Type | Method and Description |
---|---|
Color |
IOConsoleInputStream.getColor()
Returns the color used to decorate input in the associated console
|
Color |
IOConsoleOutputStream.getColor()
Returns the color of this stream, or
null
if default. |
Modifier and Type | Method and Description |
---|---|
void |
IOConsoleInputStream.setColor(Color newColor)
Sets the color to used to decorate input in the associated console.
|
void |
IOConsoleOutputStream.setColor(Color newColor)
Sets the color of this stream.
|
Modifier and Type | Method and Description |
---|---|
void |
FilteredTree.setBackground(Color background)
Set the background for the widgets that support the filter text area.
|
Modifier and Type | Field and Description |
---|---|
protected Color |
FormColors.background |
protected Color |
FormColors.border |
protected Color |
FormColors.foreground |
Modifier and Type | Method and Description |
---|---|
Color |
FormColors.createColor(String key,
int r,
int g,
int b)
Creates the color for the specified key using the provided RGB values.
|
Color |
FormColors.createColor(String key,
RGB rgb)
Creates the color for the specified key using the provided RGB object.
|
Color |
HyperlinkSettings.getActiveBackground()
Returns the background to use for the active hyperlink.
|
Color |
HyperlinkSettings.getActiveForeground()
Returns the foreground to use for the active hyperlink.
|
Color |
HyperlinkSettings.getBackground()
Returns the background to use for the normal hyperlink.
|
Color |
FormColors.getBackground()
Returns the current background color.
|
Color |
FormColors.getBorderColor()
Returns the computed border color.
|
Color |
FormColors.getColor(String key)
Returns the color object for the provided key or null if
not in the registry.
|
Color |
HyperlinkSettings.getForeground()
Returns the foreground to use for the normal hyperlink.
|
Color |
FormColors.getForeground()
Returns the current foreground color.
|
Color |
FormColors.getInactiveBackground()
Creates a color that can be used for areas of the form that is inactive.
|
Modifier and Type | Method and Description |
---|---|
void |
HyperlinkSettings.setActiveBackground(Color newActiveBackground)
Sets the new active hyperlink background for all the links.
|
void |
HyperlinkSettings.setActiveForeground(Color newActiveForeground)
Sets the new active hyperlink foreground for all the links.
|
void |
HyperlinkSettings.setBackground(Color newBackground)
Sets the new hyperlink background for all the links.
|
void |
HyperlinkGroup.setBackground(Color bg)
Sets the group background and also sets the background of all the
currently managed links.
|
void |
FormColors.setBackground(Color bg)
Sets the background color.
|
void |
HyperlinkSettings.setForeground(Color newForeground)
Sets the new hyperlink foreground for all the links.
|
void |
HyperlinkGroup.setForeground(Color fg)
Sets the group foreground and also sets the background of all the
currently managed links.
|
void |
FormColors.setForeground(Color fg)
Sets the foreground color.
|
Modifier and Type | Method and Description |
---|---|
Color |
ToggleHyperlink.geHoverDecorationColor()
Deprecated.
use
getHoverDecorationColor |
Color |
ToggleHyperlink.getDecorationColor()
Returns the color of the decoration.
|
Color |
ToggleHyperlink.getHoverDecorationColor()
Returns the hover color of the decoration.
|
Color |
Form.getSeparatorColor()
Returns the color used to render the optional head separator.
|
Color |
Section.getTitleBarBackground()
Returns the title bar background when TITLE_BAR style is used.
|
Color |
Section.getTitleBarBorderColor()
Returns the title bar border color when TITLE_BAR style is used.
|
Color |
ExpandableComposite.getTitleBarForeground()
Returns the title bar foreground when TITLE_BAR style is used.
|
Color |
Section.getTitleBarGradientBackground()
Returns the title bar gradient background color when TITLE_BAR style is
used.
|
Modifier and Type | Method and Description |
---|---|
void |
ExpandableComposite.setActiveToggleColor(Color c)
Sets the active color of the toggle control (when the mouse enters the
toggle area).
|
void |
SharedScrolledComposite.setBackground(Color bg)
Sets the background of the control and its content.
|
void |
Section.setBackground(Color bg)
Sets the background of the section.
|
void |
ScrolledFormText.setBackground(Color bg)
Sets the background color of the scrolled form text.
|
void |
ScrolledForm.setBackground(Color bg)
Sets the background color of the form.
|
void |
FormToolkit.setBackground(Color bg)
Sets the background color for the entire toolkit.
|
void |
Form.setBackground(Color bg)
Sets the background color of the form.
|
void |
ExpandableComposite.setBackground(Color bg)
Sets the background of all the custom controls in the expandable.
|
void |
FormText.setColor(String key,
Color color)
Registers the color referenced by the provided key.
|
void |
ToggleHyperlink.setDecorationColor(Color decorationColor)
Sets the color of the decoration.
|
void |
SharedScrolledComposite.setForeground(Color fg)
Sets the foreground of the control and its content.
|
void |
Section.setForeground(Color fg)
Sets the foreground of the section.
|
void |
ScrolledFormText.setForeground(Color fg)
Sets the foreground color of the scrolled form text.
|
void |
ScrolledForm.setForeground(Color fg)
Sets the foreground color of the form.
|
void |
Form.setForeground(Color fg)
Sets the foreground color of the form.
|
void |
ExpandableComposite.setForeground(Color fg)
Sets the foreground of all the custom controls in the expandable.
|
void |
ToggleHyperlink.setHoverDecorationColor(Color hoverColor)
Sets the hover color of decoration.
|
void |
Form.setSeparatorColor(Color separatorColor)
Sets the color to be used to render the optional head separator.
|
void |
Form.setTextBackground(Color[] gradientColors,
int[] percents,
boolean vertical)
Sets the background colors to be painted behind the title text in a
gradient.
|
void |
Section.setTitleBarBackground(Color color)
Sets the color of the title bar background when TITLE_BAR style is used.
|
void |
Section.setTitleBarBorderColor(Color color)
Sets the color of the title bar border when TITLE_BAR style is used.
|
void |
ExpandableComposite.setTitleBarForeground(Color color)
Sets the color of the title bar foreground when TITLE_BAR style is used.
|
void |
Section.setTitleBarGradientBackground(Color color)
Sets the color of the title bar gradient background when TITLE_BAR style
is used.
|
void |
ExpandableComposite.setToggleColor(Color c)
Sets the color of the toggle control.
|
Modifier and Type | Method and Description |
---|---|
Color |
WorkbenchLabelProvider.getBackground(Object element) |
Color |
WorkbenchLabelProvider.getForeground(Object element) |
Modifier and Type | Field and Description |
---|---|
Color[] |
MultiEditor.Gradient.bgColors |
Color |
MultiEditor.Gradient.fgColor |
Guidelines for using Eclipse APIs. Copyright (c) IBM Corp. and others 2000, 2006. All rights reserved.