org.eclipse.swt.widgets

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.widgets 
org.eclipse.swt.widgets
Package-level Javadoc SWT widget public API classes.

Package Specification

This package contains the classes which make up the public SWT widget API as well as the related public support classes (for example, class Event).
Java Source File NameTypeComment
Button.javaClass Instances of this class represent a selectable user interface object that issues notification when pressed and released.
Canvas.javaClass Instances of this class provide a surface for drawing arbitrary graphics.
Styles:
(none)
Events:
(none)

This class may be subclassed by custom control implementors who are building controls that are not constructed from aggregates of other controls.

Caret.javaClass Instances of this class provide an i-beam that is typically used as the insertion point for text.
ColorDialog.javaClass Instances of this class allow the user to select a color from a predefined set of available colors.
Combo.javaClass Instances of this class are controls that allow the user to choose an item from a list of items, or optionally enter a new value by typing it into an editable text field.
Composite.javaClass Instances of this class are controls which are capable of containing other controls.
Styles:
NO_BACKGROUND, NO_FOCUS, NO_MERGE_PAINTS, NO_REDRAW_RESIZE, NO_RADIO_GROUP, EMBEDDED, DOUBLE_BUFFERED
Events:
(none)

Note: The NO_BACKGROUND, NO_FOCUS, NO_MERGE_PAINTS, and NO_REDRAW_RESIZE styles are intended for use with Canvas. They can be used with Composite if you are drawing your own, but their behavior is undefined if they are used with subclasses of Composite other than Canvas.

Note: The CENTER style, although undefined for composites, has the same value as EMBEDDED (which is used to embed widgets from other widget toolkits into SWT).

Control.javaClass Control is the abstract superclass of all windowed user interface classes.
CoolBar.javaClass Instances of this class provide an area for dynamically positioning the items they contain.
CoolItem.javaClass Instances of this class are selectable user interface objects that represent the dynamically positionable areas of a CoolBar.
DateTime.javaClass Instances of this class are selectable user interface objects that allow the user to enter and modify date or time values.
Decorations.javaClass Instances of this class provide the appearance and behavior of Shells, but are not top level shells or dialogs.
Dialog.javaClass This class is the abstract superclass of the classes that represent the built in platform dialogs. A Dialog typically contains other widgets that are not accessible.
DirectoryDialog.javaClass Instances of this class allow the user to navigate the file system and select a directory.
Display.javaClass Instances of this class are responsible for managing the connection between SWT and the underlying operating system.
Event.javaClass Instances of this class provide a description of a particular event which occurred within SWT.
EventTable.javaClass Instances of this class implement a simple look up mechanism that maps an event type to a listener.
ExpandBar.javaClass Instances of this class support the layout of selectable expand bar items.
ExpandItem.javaClass Instances of this class represent a selectable user interface object that represents a expandable item in a expand bar.
FileDialog.javaClass Instances of this class allow the user to navigate the file system and select or enter a file name.
FontDialog.javaClass Instances of this class allow the user to select a font from all available fonts in the system.
Group.javaClass Instances of this class provide an etched border with an optional title.

Shadow styles are hints and may not be honoured by the platform.

Item.javaClass This class is the abstract superclass of all non-windowed user interface objects that occur within specific controls.
Label.javaClass Instances of this class represent a non-selectable user interface object that displays a string or image. When SEPARATOR is specified, displays a single vertical or horizontal line.
Styles:
SEPARATOR, HORIZONTAL, VERTICAL
SHADOW_IN, SHADOW_OUT, SHADOW_NONE
CENTER, LEFT, RIGHT, WRAP
Events:
(none)

Note: Only one of SHADOW_IN, SHADOW_OUT and SHADOW_NONE may be specified. SHADOW_NONE is a HINT.

Layout.javaClass A layout controls the position and size of the children of a composite widget.
Link.javaClass Instances of this class represent a selectable user interface object that displays a text with links.
List.javaClass Instances of this class represent a selectable user interface object that displays a list of strings and issues notification when a string is selected.
Listener.javaInterface Implementers of Listener provide a simple handleEvent() method that is used internally by SWT to dispatch events.

After creating an instance of a class that implements this interface it can be added to a widget using the addListener(int eventType, Listener handler) method and removed using the removeListener (int eventType, Listener handler) method.

Menu.javaClass Instances of this class are user interface objects that contain menu items.
MenuItem.javaClass Instances of this class represent a selectable user interface object that issues notification when pressed and released.
MessageBox.javaClass Instances of this class are used to inform or warn the user.
Monitor.javaClass Instances of this class are descriptions of monitors.
ProgressBar.javaClass Instances of the receiver represent an unselectable user interface object that is used to display progress, typically in the form of a bar.
RunnableLock.javaClass Instances of this class are used to ensure that an application cannot interfere with the locking mechanism used to implement asynchronous and synchronous communication between widgets and background threads.
Sash.javaClass Instances of the receiver represent a selectable user interface object that allows the user to drag a rubber banded outline of the sash within the parent control.
Scale.javaClass Instances of the receiver represent a selectable user interface object that present a range of continuous numeric values.
Scrollable.javaClass This class is the abstract superclass of all classes which represent controls that have standard scroll bars.
ScrollBar.javaClass Instances of this class are selectable user interface objects that represent a range of positive, numeric values.
Shell.javaClass Instances of this class represent the "windows" which the desktop or "window manager" is managing. Instances that do not have a parent (that is, they are built using the constructor, which takes a Display as the argument) are described as top level shells.
Slider.javaClass Instances of this class are selectable user interface objects that represent a range of positive, numeric values.
Spinner.javaClass Instances of this class are selectable user interface objects that allow the user to enter and modify numeric values.
Synchronizer.javaClass Instances of this class provide synchronization support for displays.
TabFolder.javaClass Instances of this class implement the notebook user interface metaphor.
TabItem.javaClass Instances of this class represent a selectable user interface object corresponding to a tab for a page in a tab folder.
Table.javaClass Instances of this class implement a selectable user interface object that displays a list of images and strings and issues notification when selected.

The item children that may be added to instances of this class must be of type TableItem.

Style VIRTUAL is used to create a Table whose TableItems are to be populated by the client on an on-demand basis instead of up-front.

TableColumn.javaClass Instances of this class represent a column in a table widget.
TableItem.javaClass Instances of this class represent a selectable user interface object that represents an item in a table.
Text.javaClass Instances of this class are selectable user interface objects that allow the user to enter and modify text.
ToolBar.javaClass Instances of this class support the layout of selectable tool bar items.
ToolItem.javaClass Instances of this class represent a selectable user interface object that represents a button in a tool bar.
ToolTip.javaClass Instances of this class represent popup windows that are used to inform or warn the user.
Tracker.javaClass Instances of this class implement rubber banding rectangles that are drawn onto a parent Composite or Display. These rectangles can be specified to respond to mouse and key events by either moving or resizing themselves accordingly.
Tray.javaClass Instances of this class represent the system tray that is part of the task bar status area on some operating systems.
TrayItem.javaClass Instances of this class represent icons that can be placed on the system tray or task bar status area.
Tree.javaClass Instances of this class provide a selectable user interface object that displays a hierarchy of items and issues notification when an item in the hierarchy is selected.

The item children that may be added to instances of this class must be of type TreeItem.

Style VIRTUAL is used to create a Tree whose TreeItems are to be populated by the client on an on-demand basis instead of up-front.

TreeColumn.javaClass Instances of this class represent a column in a tree widget.
TreeItem.javaClass Instances of this class represent a selectable user interface object that represents a hierarchy of tree items in a tree widget.
TypedListener.javaClass Instances of this class are internal SWT implementation objects which provide a mapping between the typed and untyped listener mechanisms that SWT supports.

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

Widget.javaClass This class is the abstract superclass of all user interface objects.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.