Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 


Eclipse Platform
Release 3.5

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.printing SWT Printing support 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 ()
           
abstract   Device ResourceManager. getDevice ()
          Returns the Device for which this ResourceManager will create resources
  Device LocalResourceManager. getDevice ()
           
 

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)
          Deprecated. use ColorDescriptor.createFrom(Color)
static  FontDescriptor FontDescriptor. createFrom ( Font font, Device originalDevice)
          Deprecated. use FontDescriptor.createFrom(Font)
static  ImageDescriptor ImageDescriptor. createFromImage ( Image img, Device theDevice)
          Deprecated. use ImageDescriptor.createFromImage(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.
abstract   Object DeviceResourceDescriptor. createResource ( Device device)
          Creates the resource described by this descriptor
  Object ImageDescriptor. createResource ( Device device)
           
  Object ColorDescriptor. createResource ( Device device)
           
  Object FontDescriptor. 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
protected static  Device Device. CurrentDevice
           
  Device GCData. device
           
 

Methods in org.eclipse.swt.graphics that return Device
  Device Resource. getDevice ()
          Returns the Device where this resource was created.
 

Methods in org.eclipse.swt.graphics with parameters of type Device
static  Font Font. win32_new ( Device device, int handle)
          Invokes platform specific functionality to allocate a new font.
static  Region Region. win32_new ( Device device, int handle)
          Invokes platform specific functionality to allocate a new region.
static  Color Color. win32_new ( Device device, int handle)
          Invokes platform specific functionality to allocate a new color.
static  Cursor Cursor. win32_new ( Device device, int handle)
          Invokes platform specific functionality to allocate a new cursor.
static  Image Image. win32_new ( Device device, int type, int handle)
          Invokes platform specific functionality to allocate a new image.
 

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.
Cursor ( Device device, ImageData source, ImageData mask, int hotspotX, int hotspotY)
          Constructs a new cursor given a device, image and mask data describing the desired cursor appearance, and the x and y coordinates of the hotspot (that is, the point within the area covered by the cursor which is considered to be where the on-screen pointer is "pointing").
Cursor ( Device device, ImageData source, int hotspotX, int hotspotY)
          Constructs a new cursor given a device, image data describing the desired cursor appearance, and the x and y coordinates of the hotspot (that is, the point within the area covered by the cursor which is considered to be where the on-screen pointer is "pointing").
Cursor ( Device device, int style)
          Constructs a new cursor given a device and a style constant describing the desired cursor appearance.
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, 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, ImageData source, ImageData mask)
          Constructs an instance of this class, whose type is SWT.ICON, from the two given ImageData objects.
Image ( Device device, Image srcImage, int flag)
          Constructs a new instance of this class based on the provided image, with an appearance that varies depending on the value of the flag.
Image ( Device device, 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, String filename)
          Constructs an instance of this class by loading its representation from the file with the specified name.
Path ( Device device)
          Constructs a new empty Path.
Path ( Device device, PathData data)
          Constructs a new Path with the specifed PathData.
Path ( Device device, Path path, float flatness)
          Constructs a new Path that is a copy of path.
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.
Pattern ( Device device, Image image)
          Constructs a new Pattern given an image.
Region ( Device device)
          Constructs a new empty region.
TextLayout ( Device device)
          Constructs a new instance of this class on the given device.
Transform ( Device device)
          Constructs a new identity Transform.
Transform ( Device device, float[] elements)
          Constructs a new Transform given an array of elements that represent the matrix that describes the transformation.
Transform ( Device device, float m11, float m12, float m21, float m22, float dx, float dy)
          Constructs a new Transform given all of the elements that represent the matrix that describes the transformation.
 

Uses of Device in org.eclipse.swt.printing
 

Subclasses of Device in org.eclipse.swt.printing
 class Printer
          Instances of this class are used to print to a printer.
 

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.
 


Eclipse Platform
Release 3.5

Guidelines for using Eclipse APIs.

Copyright (c) Eclipse contributors and others 2000, 2008. All rights reserved.


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire