public class ResourceRegistry extends java.lang.Object implements IResourceRegistry
| Constructor and Description |
|---|
ResourceRegistry() |
| Modifier and Type | Method and Description |
|---|---|
void |
dispose()
Calls dispose() on all registered resources.
|
org.eclipse.swt.graphics.Color |
getSwtColor(int red,
int green,
int blue)
Returns a SWT color for the given red, green and blue values expressed as
ints in the range 0 to 255 (where 0 is black and 255 is full brightness).
|
org.eclipse.swt.graphics.Color |
getSwtColor(java.lang.String hexRGBString)
Returns a SWT color for for a given String, which defines the RGB values
in hexadecimal format.
|
org.eclipse.swt.graphics.Font |
getSwtFont(org.eclipse.swt.graphics.FontData fontData)
Provides an SWT font instance with the given font data.
|
public org.eclipse.swt.graphics.Color getSwtColor(int red,
int green,
int blue)
If this this registry disposes, this returned color will also disposed.
getSwtColor in interface IResourceRegistryred - the amount of red in the colorgreen - the amount of green in the colorblue - the amount of blue in the colorColorpublic void dispose()
dispose in interface IDisposablepublic org.eclipse.swt.graphics.Color getSwtColor(java.lang.String hexRGBString)
getColor("FF0000") returns a red
color.
If this this registry disposes, this returned color will also disposed.
getSwtColor in interface IResourceRegistryhexRGBString - The RGB values in hexadecimal format.Colorpublic org.eclipse.swt.graphics.Font getSwtFont(org.eclipse.swt.graphics.FontData fontData)
getSwtFont in interface IResourceRegistryfontData - the font data describing the desired fontFont