Uses of Class
org.eclipse.swt.graphics.Device

Packages that use Device
org.eclipse.jface.resource Provides support for managing resources such as SWT fonts and images. 
org.eclipse.swt.graphics SWT graphics classes. 
org.eclipse.swt.widgets SWT widget public API classes. 
 

Uses of Device in org.eclipse.jface.resource
 

Methods in org.eclipse.jface.resource that return Device
 Device DeviceResourceManager.getDevice()
           
 Device LocalResourceManager.getDevice()
           
abstract  Device ResourceManager.getDevice()
          Returns the Device for which this ResourceManager will create resources
 

Methods in org.eclipse.jface.resource with parameters of type Device
abstract  Color ColorDescriptor.createColor(Device device)
          Returns the Color described by this descriptor.
abstract  Font FontDescriptor.createFont(Device device)
          Creates the Font described by this descriptor.
static ColorDescriptor ColorDescriptor.createFrom(Color toCreate, Device originalDevice)
          Creates a ColorDescriptor from an existing Color, given the Device associated with the original Color.
static FontDescriptor FontDescriptor.createFrom(Font font, Device originalDevice)
          Creates a FontDescriptor that describes an existing font.
static ImageDescriptor ImageDescriptor.createFromImage(Image img, Device theDevice)
          Creates and returns a new image descriptor for the given image.
 Image ImageDescriptor.createImage(boolean returnMissingImageOnError, Device device)
          Creates and returns a new SWT image for this image descriptor.
 Image ImageDescriptor.createImage(Device device)
          Creates and returns a new SWT image for this image descriptor.
 java.lang.Object ColorDescriptor.createResource(Device device)
           
abstract  java.lang.Object DeviceResourceDescriptor.createResource(Device device)
          Creates the resource described by this descriptor
 java.lang.Object FontDescriptor.createResource(Device device)
           
 java.lang.Object ImageDescriptor.createResource(Device device)
           
 

Constructors in org.eclipse.jface.resource with parameters of type Device
DeviceResourceManager(Device device)
          Creates a new registry for the given device.
 

Uses of Device in org.eclipse.swt.graphics
 

Fields in org.eclipse.swt.graphics declared as Device
 Device InternalGCData.device
           
protected static Device Device.Internal_CurrentDevice
           
 

Methods in org.eclipse.swt.graphics with parameters of type Device
static Color Color.internal_newFromHandle(Device device, int handle)
          WARNING: This method should not be considered API.
 

Constructors in org.eclipse.swt.graphics with parameters of type Device
Color(Device device, int red, int green, int blue)
          Constructs a new instance of this class given a device and the desired red, green and blue values expressed as ints in the range 0 to 255 (where 0 is black and 255 is full brightness).
Color(Device device, RGB rgb)
          Constructs a new instance of this class given a device and an RGB describing the desired red, green and blue values.
Font(Device device, FontData fd)
          Constructs a new font given a device and font data which describes the desired font's appearance.
Font(Device device, FontData[] fds)
          Constructs a new font given a device and an array of font data which describes the desired font's appearance.
Font(Device device, java.lang.String name, int height, int style)
          Constructs a new font given a device, a font name, the height of the desired font in points, and a font style.
Image(Device device, ImageData data)
          Constructs an instance of this class from the given ImageData.
Image(Device device, java.io.InputStream stream)
          Constructs an instance of this class by loading its representation from the specified input stream.
Image(Device device, int width, int height)
          Constructs an empty instance of this class with the specified width and height.
Image(Device device, Rectangle bounds)
          Constructs an empty instance of this class with the width and height of the specified rectangle.
Image(Device device, java.lang.String filename)
          Constructs an instance of this class by loading its representation from the file with the specified name.
 

Uses of Device in org.eclipse.swt.widgets
 

Subclasses of Device in org.eclipse.swt.widgets
 class Display
          Instances of this class are responsible for managing the connection between SWT and the underlying operating system.