org.eclipse.swt.graphics

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE Eclipse » swt » org.eclipse.swt.graphics 
org.eclipse.swt.graphics
Package-level Javadoc SWT graphics classes.

Package Specification

This package provides the classes which implement points, rectangles, regions, colors, cursors, fonts, graphics contexts (that is, GCs) where most of the primitive drawing operations are implemented, and images including both the code for displaying them and the public API for loading/saving them.
Java Source File NameTypeComment
Color.javaClass Instances of this class manage the operating system resources that implement SWT's RGB color model.
Cursor.javaClass Instances of this class manage operating system resources that specify the appearance of the on-screen pointer.
Device.javaClass This class is the abstract superclass of all device objects, such as the Display device and the Printer device.
DeviceData.javaClass
Drawable.javaInterface Implementers of Drawable can have a graphics context (GC) created for them, and then they can be drawn on by sending messages to their associated GC.
Font.javaClass Instances of this class manage operating system resources that define how text looks when it is displayed.
FontData.javaClass Instances of this class describe operating system fonts.
FontMetrics.javaClass Instances of this class provide measurement information about fonts including ascent, descent, height, leading space between rows, and average character width.
GC.javaClass Class GC is where all of the drawing capabilities that are supported by SWT are located.
GCData.javaClass Instances of this class are descriptions of GCs in terms of unallocated platform-specific data fields.

IMPORTANT: This class is not part of the public API for SWT.

GlyphMetrics.javaClass Instances of this class represent glyph metrics.

The hashCode() method in this class uses the values of the public fields to compute the hash value.

Image.javaClass Instances of this class are graphics which have been prepared for display on a specific device.
ImageData.javaClass Instances of this class are device-independent descriptions of images.
ImageDataLoader.javaClass Internal class that separates ImageData from ImageLoader to allow removal of ImageLoader from the toolkit.
ImageLoader.javaClass Instances of this class are used to load images from, and save images to, a file or stream.
ImageLoaderEvent.javaClass Instances of this class are sent as a result of the incremental loading of image data.

Notes:

  • The number of events which will be sent when loading images is not constant.
ImageLoaderListener.javaInterface Classes which implement this interface provide methods that deal with the incremental loading of image data.
LineAttributes.javaClass LineAttributes defines a set of line attributes that can be modified in a GC.
PaletteData.javaClass Instances of this class describe the color data used by an image.

Depending on the depth of the image, the PaletteData can take one of two forms, indicated by the isDirect field:

isDirect is false
If isDirect is false, this palette is an indexed palette which maps pixel values to RGBs.
Path.javaClass Instances of this class represent paths through the two-dimensional coordinate system.
PathData.javaClass Instances of this class describe device-independent paths.
Pattern.javaClass Instances of this class represent patterns to use while drawing.
Point.javaClass Instances of this class represent places on the (x, y) coordinate plane.

The coordinate space for rectangles and points is considered to have increasing values downward and to the right from its origin making this the normal, computer graphics oriented notion of (x, y) coordinates rather than the strict mathematical one.

The hashCode() method in this class uses the values of the public fields to compute the hash value.

Rectangle.javaClass Instances of this class represent rectangular areas in an (x, y) coordinate system.
Region.javaClass Instances of this class represent areas of an x-y coordinate system that are aggregates of the areas covered by a number of polygons.
Resource.javaClass This class is the abstract superclass of all graphics resource objects.
RGB.javaClass Instances of this class are descriptions of colors in terms of the primary additive color model (red, green and blue).
TextLayout.javaClass TextLayout is a graphic object to work with text.
TextStyle.javaClass
Transform.javaClass Instances of this class represent transformation matrices for points expressed as (x, y) pairs of floating point numbers.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.