Java Doc for Label.java in  » IDE-Eclipse » swt » org » eclipse » swt » widgets » Java Source Code / Java DocumentationJava Source Code and Java Documentation

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 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.eclipse.swt.widgets.Widget
      org.eclipse.swt.widgets.Control
         org.eclipse.swt.widgets.Label

Label
public class Label extends Control (Code)
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. Only one of HORIZONTAL and VERTICAL may be specified. Only one of CENTER, LEFT and RIGHT may be specified.

IMPORTANT: This class is intended to be subclassed only within the SWT implementation.



Field Summary
 Imageimage
    
 booleanisImage
    
 Stringtext
    

Constructor Summary
public  Label(Composite parent, int style)
     Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.

The style value is either one of the style constants defined in class SWT which is applicable to instances of this class, or must be built by bitwise OR'ing together (that is, using the int "|" operator) two or more of those SWT style constants.


Method Summary
static  intcheckStyle(int style)
    
public  PointcomputeSize(int wHint, int hHint, boolean changed)
    
 voidcreateHandle()
    
 intdefaultThemeFont()
    
 voiddrawBackground(int control, int context)
    
 voiddrawWidget(int control, int context, int damageRgn, int visibleRgn, int theEvent)
    
public  intgetAlignment()
     Returns a value which describes the position of the text or image in the receiver.
public  intgetBorderWidth()
    
public  ImagegetImage()
     Returns the receiver's image if it has one, or null if it does not.
 StringgetNameText()
    
public  StringgetText()
     Returns the receiver's text, which will be an empty string if it has never been set or if the receiver is a SEPARATOR label.
public  voidsetAlignment(int alignment)
     Controls how text and images will be displayed in the receiver. The argument should be one of LEFT, RIGHT or CENTER.
public  voidsetImage(Image image)
     Sets the receiver's image to the argument, which may be null indicating that no image should be displayed.
public  voidsetText(String string)
     Sets the receiver's text.

This method sets the widget label.


Field Detail
image
Image image(Code)



isImage
boolean isImage(Code)



text
String text(Code)




Constructor Detail
Label
public Label(Composite parent, int style)(Code)
Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.

The style value is either one of the style constants defined in class SWT which is applicable to instances of this class, or must be built by bitwise OR'ing together (that is, using the int "|" operator) two or more of those SWT style constants. The class description lists the style constants that are applicable to the class. Style bits are also inherited from superclasses.


Parameters:
  parent - a composite control which will be the parent of the new instance (cannot be null)
Parameters:
  style - the style of control to construct
exception:
  IllegalArgumentException -
  • ERROR_NULL_ARGUMENT - if the parent is null

exception:
  SWTException -
  • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the parent
  • ERROR_INVALID_SUBCLASS - if this class is not an allowed subclass

See Also:   SWT.SEPARATOR
See Also:   SWT.HORIZONTAL
See Also:   SWT.VERTICAL
See Also:   SWT.SHADOW_IN
See Also:   SWT.SHADOW_OUT
See Also:   SWT.SHADOW_NONE
See Also:   SWT.CENTER
See Also:   SWT.LEFT
See Also:   SWT.RIGHT
See Also:   SWT.WRAP
See Also:   Widget.checkSubclass
See Also:   Widget.getStyle




Method Detail
checkStyle
static int checkStyle(int style)(Code)



computeSize
public Point computeSize(int wHint, int hHint, boolean changed)(Code)



createHandle
void createHandle()(Code)



defaultThemeFont
int defaultThemeFont()(Code)



drawBackground
void drawBackground(int control, int context)(Code)



drawWidget
void drawWidget(int control, int context, int damageRgn, int visibleRgn, int theEvent)(Code)



getAlignment
public int getAlignment()(Code)
Returns a value which describes the position of the text or image in the receiver. The value will be one of LEFT, RIGHT or CENTER unless the receiver is a SEPARATOR label, in which case, NONE is returned. the alignment
exception:
  SWTException -
  • ERROR_WIDGET_DISPOSED - if the receiver has been disposed
  • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver



getBorderWidth
public int getBorderWidth()(Code)



getImage
public Image getImage()(Code)
Returns the receiver's image if it has one, or null if it does not. the receiver's image
exception:
  SWTException -
  • ERROR_WIDGET_DISPOSED - if the receiver has been disposed
  • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver



getNameText
String getNameText()(Code)



getText
public String getText()(Code)
Returns the receiver's text, which will be an empty string if it has never been set or if the receiver is a SEPARATOR label. the receiver's text
exception:
  SWTException -
  • ERROR_WIDGET_DISPOSED - if the receiver has been disposed
  • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver



setAlignment
public void setAlignment(int alignment)(Code)
Controls how text and images will be displayed in the receiver. The argument should be one of LEFT, RIGHT or CENTER. If the receiver is a SEPARATOR label, the argument is ignored and the alignment is not changed.
Parameters:
  alignment - the new alignment
exception:
  SWTException -
  • ERROR_WIDGET_DISPOSED - if the receiver has been disposed
  • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver



setImage
public void setImage(Image image)(Code)
Sets the receiver's image to the argument, which may be null indicating that no image should be displayed.
Parameters:
  image - the image to display on the receiver (may be null)
exception:
  IllegalArgumentException -
  • ERROR_INVALID_ARGUMENT - if the image has been disposed

exception:
  SWTException -
  • ERROR_WIDGET_DISPOSED - if the receiver has been disposed
  • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver



setText
public void setText(String string)(Code)
Sets the receiver's text.

This method sets the widget label. The label may include the mnemonic character and line delimiters.

Mnemonics are indicated by an '&' that causes the next character to be the mnemonic. When the user presses a key sequence that matches the mnemonic, focus is assigned to the control that follows the label. On most platforms, the mnemonic appears underlined but may be emphasised in a platform specific manner. The mnemonic indicator character '&' can be escaped by doubling it in the string, causing a single '&' to be displayed.


Parameters:
  string - the new text
exception:
  IllegalArgumentException -
  • ERROR_NULL_ARGUMENT - if the text is null

exception:
  SWTException -
  • ERROR_WIDGET_DISPOSED - if the receiver has been disposed
  • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver



Fields inherited from org.eclipse.swt.widgets.Control
final static String RESET_VISIBLE_REGION(Code)(Java Doc)
Accessible accessible(Code)(Java Doc)
Image backgroundImage(Code)(Java Doc)
Cursor cursor(Code)(Java Doc)
int drawCountvisibleRgn(Code)(Java Doc)
Font font(Code)(Java Doc)
float[] foregroundbackground(Code)(Java Doc)
GCData gcs(Code)(Java Doc)
public int handle(Code)(Java Doc)
Object layoutData(Code)(Java Doc)
Menu menu(Code)(Java Doc)
Composite parent(Code)(Java Doc)
String toolTipText(Code)(Java Doc)

Methods inherited from org.eclipse.swt.widgets.Control
int actionProc(int theControl, int partCode)(Code)(Java Doc)
public void addControlListener(ControlListener listener)(Code)(Java Doc)
public void addDragDetectListener(DragDetectListener listener)(Code)(Java Doc)
public void addFocusListener(FocusListener listener)(Code)(Java Doc)
public void addHelpListener(HelpListener listener)(Code)(Java Doc)
public void addKeyListener(KeyListener listener)(Code)(Java Doc)
public void addMenuDetectListener(MenuDetectListener listener)(Code)(Java Doc)
public void addMouseListener(MouseListener listener)(Code)(Java Doc)
public void addMouseMoveListener(MouseMoveListener listener)(Code)(Java Doc)
public void addMouseTrackListener(MouseTrackListener listener)(Code)(Java Doc)
public void addMouseWheelListener(MouseWheelListener listener)(Code)(Java Doc)
public void addPaintListener(PaintListener listener)(Code)(Java Doc)
public void addTraverseListener(TraverseListener listener)(Code)(Java Doc)
int callFocusEventHandler(int nextHandler, int theEvent)(Code)(Java Doc)
void checkBackground()(Code)(Java Doc)
void checkBuffered()(Code)(Java Doc)
int colorProc(int inControl, int inMessage, int inDrawDepth, int inDrawInColor)(Code)(Java Doc)
public Point computeSize(int wHint, int hHint)(Code)(Java Doc)
public Point computeSize(int wHint, int hHint, boolean changed)(Code)(Java Doc)
Control computeTabGroup()(Code)(Java Doc)
Control[] computeTabList()(Code)(Java Doc)
Control computeTabRoot()(Code)(Java Doc)
void createWidget()(Code)(Java Doc)
Color defaultBackground()(Code)(Java Doc)
Font defaultFont()(Code)(Java Doc)
Color defaultForeground()(Code)(Java Doc)
int defaultThemeFont()(Code)(Java Doc)
void deregister()(Code)(Java Doc)
void destroyWidget()(Code)(Java Doc)
public boolean dragDetect(Event event)(Code)(Java Doc)
public boolean dragDetect(MouseEvent event)(Code)(Java Doc)
boolean dragDetect(int button, int count, int stateMask, int x, int y)(Code)(Java Doc)
boolean dragDetect(int x, int y, boolean filter, boolean[] consume)(Code)(Java Doc)
void drawFocus(int control, int context, boolean hasFocus, boolean hasBorder, Rect inset)(Code)(Java Doc)
boolean drawFocusRing()(Code)(Java Doc)
boolean drawGripper(int x, int y, int width, int height, boolean vertical)(Code)(Java Doc)
void drawWidget(int control, int context, int damageRgn, int visibleRgn, int theEvent)(Code)(Java Doc)
void enableWidget(boolean enabled)(Code)(Java Doc)
boolean equals(float[] color1, float[] color2)(Code)(Java Doc)
void fillBackground(int control, int context, Rectangle bounds)(Code)(Java Doc)
Control findBackgroundControl()(Code)(Java Doc)
Cursor findCursor()(Code)(Java Doc)
Menu[] findMenus(Control control)(Code)(Java Doc)
void fixChildren(Shell newShell, Shell oldShell, Decorations newDecorations, Decorations oldDecorations, Menu[] menus)(Code)(Java Doc)
void fixFocus(Control focusControl)(Code)(Java Doc)
int focusHandle()(Code)(Java Doc)
int focusPart()(Code)(Java Doc)
public boolean forceFocus()(Code)(Java Doc)
public Accessible getAccessible()(Code)(Java Doc)
public Color getBackground()(Code)(Java Doc)
Color getBackgroundColor()(Code)(Java Doc)
public Image getBackgroundImage()(Code)(Java Doc)
public int getBorderWidth()(Code)(Java Doc)
public Rectangle getBounds()(Code)(Java Doc)
public Cursor getCursor()(Code)(Java Doc)
public boolean getDragDetect()(Code)(Java Doc)
int getDrawCount(int control)(Code)(Java Doc)
public boolean getEnabled()(Code)(Java Doc)
public Font getFont()(Code)(Java Doc)
public Color getForeground()(Code)(Java Doc)
Color getForegroundColor()(Code)(Java Doc)
public Object getLayoutData()(Code)(Java Doc)
public Point getLocation()(Code)(Java Doc)
public Menu getMenu()(Code)(Java Doc)
int getMininumHeight()(Code)(Java Doc)
public Monitor getMonitor()(Code)(Java Doc)
public Composite getParent()(Code)(Java Doc)
float[] getParentBackground()(Code)(Java Doc)
Control[] getPath()(Code)(Java Doc)
public Shell getShell()(Code)(Java Doc)
public Point getSize()(Code)(Java Doc)
float getThemeAlpha()(Code)(Java Doc)
public String getToolTipText()(Code)(Java Doc)
public boolean getVisible()(Code)(Java Doc)
int getVisibleRegion(int control, boolean clipChildren)(Code)(Java Doc)
boolean hasBorder()(Code)(Java Doc)
boolean hasFocus()(Code)(Java Doc)
int helpProc(int inControl, int inGlobalMouse, int inRequest, int outContentProvided, int ioHelpContent)(Code)(Java Doc)
void hookEvents()(Code)(Java Doc)
public void internal_dispose_GC(int context, GCData data)(Code)(Java Doc)
public int internal_new_GC(GCData data)(Code)(Java Doc)
void invalWindowRgn(int window, int rgn)(Code)(Java Doc)
void invalidateChildrenVisibleRegion(int control)(Code)(Java Doc)
void invalidateVisibleRegion(int control)(Code)(Java Doc)
public boolean isEnabled()(Code)(Java Doc)
boolean isEnabledCursor()(Code)(Java Doc)
boolean isEnabledModal()(Code)(Java Doc)
boolean isFocusAncestor(Control control)(Code)(Java Doc)
public boolean isFocusControl()(Code)(Java Doc)
public boolean isReparentable()(Code)(Java Doc)
boolean isShowing()(Code)(Java Doc)
boolean isTabGroup()(Code)(Java Doc)
boolean isTabItem()(Code)(Java Doc)
public boolean isVisible()(Code)(Java Doc)
int kEventAccessibleGetAllAttributeNames(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventAccessibleGetChildAtPoint(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventAccessibleGetFocusedChild(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventAccessibleGetNamedAttribute(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventControlContextualMenuClick(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventControlHitTest(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventControlSetCursor(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventControlSetFocusPart(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventControlTrack(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventMouseDown(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventMouseDragged(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventMouseMoved(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventMouseUp(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventMouseWheelMoved(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventTextInputUnicodeForKeyEvent(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventUnicodeKeyPressed(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
void markLayout(boolean changed, boolean all)(Code)(Java Doc)
Decorations menuShell()(Code)(Java Doc)
public void moveAbove(Control control)(Code)(Java Doc)
public void moveBelow(Control control)(Code)(Java Doc)
Accessible new_Accessible(Control control)(Code)(Java Doc)
public void pack()(Code)(Java Doc)
public void pack(boolean changed)(Code)(Java Doc)
public void redraw()(Code)(Java Doc)
void redraw(boolean children)(Code)(Java Doc)
public void redraw(int x, int y, int width, int height, boolean all)(Code)(Java Doc)
void register()(Code)(Java Doc)
void releaseHandle()(Code)(Java Doc)
void releaseParent()(Code)(Java Doc)
void releaseWidget()(Code)(Java Doc)
public void removeControlListener(ControlListener listener)(Code)(Java Doc)
public void removeDragDetectListener(DragDetectListener listener)(Code)(Java Doc)
public void removeFocusListener(FocusListener listener)(Code)(Java Doc)
public void removeHelpListener(HelpListener listener)(Code)(Java Doc)
public void removeKeyListener(KeyListener listener)(Code)(Java Doc)
public void removeMenuDetectListener(MenuDetectListener listener)(Code)(Java Doc)
public void removeMouseListener(MouseListener listener)(Code)(Java Doc)
public void removeMouseMoveListener(MouseMoveListener listener)(Code)(Java Doc)
public void removeMouseTrackListener(MouseTrackListener listener)(Code)(Java Doc)
public void removeMouseWheelListener(MouseWheelListener listener)(Code)(Java Doc)
public void removePaintListener(PaintListener listener)(Code)(Java Doc)
public void removeTraverseListener(TraverseListener listener)(Code)(Java Doc)
void resetVisibleRegion(int control)(Code)(Java Doc)
boolean sendDragEvent(int button, int stateMask, int x, int y)(Code)(Java Doc)
boolean sendDragEvent(int button, int chord, int modifiers, int x, int y)(Code)(Java Doc)
void sendFocusEvent(int type, boolean post)(Code)(Java Doc)
boolean sendMouseEvent(int type, short button, int count, int detail, boolean send, int theEvent)(Code)(Java Doc)
boolean sendMouseEvent(int type, short button, int count, boolean send, int chord, short x, short y, int modifiers)(Code)(Java Doc)
boolean sendMouseEvent(int type, short button, int count, int detail, boolean send, int chord, short x, short y, int modifiers)(Code)(Java Doc)
boolean sendMouseWheel(short wheelAxis, int wheelDelta)(Code)(Java Doc)
void sendTrackEvents()(Code)(Java Doc)
void setBackground()(Code)(Java Doc)
public void setBackground(Color color)(Code)(Java Doc)
void setBackground(float[] color)(Code)(Java Doc)
void setBackground(int control, float[] color)(Code)(Java Doc)
public void setBackgroundImage(Image image)(Code)(Java Doc)
public void setBounds(int x, int y, int width, int height)(Code)(Java Doc)
int setBounds(int x, int y, int width, int height, boolean move, boolean resize, boolean events)(Code)(Java Doc)
public void setBounds(Rectangle rect)(Code)(Java Doc)
public void setCapture(boolean capture)(Code)(Java Doc)
public void setCursor(Cursor cursor)(Code)(Java Doc)
void setDefaultFont()(Code)(Java Doc)
public void setDragDetect(boolean dragDetect)(Code)(Java Doc)
public void setEnabled(boolean enabled)(Code)(Java Doc)
public boolean setFocus()(Code)(Java Doc)
public void setFont(Font font)(Code)(Java Doc)
void setFontStyle(Font font)(Code)(Java Doc)
void setFontStyle(int control, Font font)(Code)(Java Doc)
public void setForeground(Color color)(Code)(Java Doc)
void setForeground(float[] color)(Code)(Java Doc)
void setForeground(int control, float[] color)(Code)(Java Doc)
public void setLayoutData(Object layoutData)(Code)(Java Doc)
public void setLocation(int x, int y)(Code)(Java Doc)
public void setLocation(Point location)(Code)(Java Doc)
public void setMenu(Menu menu)(Code)(Java Doc)
public boolean setParent(Composite parent)(Code)(Java Doc)
boolean setRadioSelection(boolean value)(Code)(Java Doc)
public void setRedraw(boolean redraw)(Code)(Java Doc)
public void setSize(int width, int height)(Code)(Java Doc)
public void setSize(Point size)(Code)(Java Doc)
boolean setTabGroupFocus()(Code)(Java Doc)
boolean setTabItemFocus()(Code)(Java Doc)
public void setToolTipText(String string)(Code)(Java Doc)
public void setVisible(boolean visible)(Code)(Java Doc)
void setZOrder()(Code)(Java Doc)
void setZOrder(Control control, boolean above)(Code)(Java Doc)
void sort(int[] items)(Code)(Java Doc)
Point textExtent(int ptr, int wHint)(Code)(Java Doc)
Point textExtent(char[] chars, int wHint)(Code)(Java Doc)
public Point toControl(int x, int y)(Code)(Java Doc)
public Point toControl(Point point)(Code)(Java Doc)
public Point toDisplay(int x, int y)(Code)(Java Doc)
public Point toDisplay(Point point)(Code)(Java Doc)
int topHandle()(Code)(Java Doc)
boolean translateTraversal(int key, int theEvent, boolean[] consume)(Code)(Java Doc)
int traversalCode(int key, int theEvent)(Code)(Java Doc)
public boolean traverse(int traversal)(Code)(Java Doc)
boolean traverse(Event event)(Code)(Java Doc)
boolean traverseEscape()(Code)(Java Doc)
boolean traverseGroup(boolean next)(Code)(Java Doc)
boolean traverseItem(boolean next)(Code)(Java Doc)
boolean traverseMnemonic(char key)(Code)(Java Doc)
boolean traverseMnemonic(Event event)(Code)(Java Doc)
boolean traversePage(boolean next)(Code)(Java Doc)
boolean traverseReturn()(Code)(Java Doc)
public void update()(Code)(Java Doc)
void update(boolean all)(Code)(Java Doc)
void updateBackgroundMode()(Code)(Java Doc)
void updateLayout(boolean all)(Code)(Java Doc)

Fields inherited from org.eclipse.swt.widgets.Widget
final static int CANVAS(Code)(Java Doc)
final static int DEFAULT_HEIGHT(Code)(Java Doc)
final static int DEFAULT_WIDTH(Code)(Java Doc)
final static int DISABLED(Code)(Java Doc)
final static int DISPOSED(Code)(Java Doc)
final static int DISPOSE_SENT(Code)(Java Doc)
final static int DRAG_DETECT(Code)(Java Doc)
final static Rect EMPTY_RECT(Code)(Java Doc)
final static int EXPANDING(Code)(Java Doc)
final static int FOREIGN_HANDLE(Code)(Java Doc)
final static int GRAB(Code)(Java Doc)
final static int HIDDEN(Code)(Java Doc)
final static int IGNORE_WHEEL(Code)(Java Doc)
final static int KEYED_DATA(Code)(Java Doc)
final static int LAYOUT_CHANGED(Code)(Java Doc)
final static int LAYOUT_CHILD(Code)(Java Doc)
final static int LAYOUT_NEEDED(Code)(Java Doc)
final static int MOVED(Code)(Java Doc)
final static int PARENT_BACKGROUND(Code)(Java Doc)
final static int RELEASED(Code)(Java Doc)
final static int RESIZED(Code)(Java Doc)
final static int THEME_BACKGROUND(Code)(Java Doc)
Object data(Code)(Java Doc)
Display display(Code)(Java Doc)
EventTable eventTable(Code)(Java Doc)
int stylestate(Code)(Java Doc)

Methods inherited from org.eclipse.swt.widgets.Widget
void _addListener(int eventType, Listener listener)(Code)(Java Doc)
int accessibilityProc(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int actionProc(int theControl, int partCode)(Code)(Java Doc)
public void addDisposeListener(DisposeListener listener)(Code)(Java Doc)
public void addListener(int eventType, Listener listener)(Code)(Java Doc)
void calculateVisibleRegion(int control, int visibleRgn, boolean clipChildren)(Code)(Java Doc)
int callPaintEventHandler(int control, int damageRgn, int visibleRgn, int theEvent, int nextHandler)(Code)(Java Doc)
static int checkBits(int style, int int0, int int1, int int2, int int3, int int4, int int5)(Code)(Java Doc)
void checkOpen()(Code)(Java Doc)
void checkOrientation(Widget parent)(Code)(Java Doc)
void checkParent(Widget parent)(Code)(Java Doc)
protected void checkSubclass()(Code)(Java Doc)
protected void checkWidget()(Code)(Java Doc)
int clockProc(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int colorProc(int inControl, int inMessage, int inDrawDepth, int inDrawInColor)(Code)(Java Doc)
int commandProc(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
boolean contains(int shellX, int shellY)(Code)(Java Doc)
int controlProc(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
void copyToClipboard(char[] buffer)(Code)(Java Doc)
int createCIcon(Image image)(Code)(Java Doc)
void createHandle()(Code)(Java Doc)
int createIconRef(Image image)(Code)(Java Doc)
void createWidget()(Code)(Java Doc)
void deregister()(Code)(Java Doc)
void destroyCIcon(int iconHandle)(Code)(Java Doc)
void destroyWidget()(Code)(Java Doc)
public void dispose()(Code)(Java Doc)
void drawBackground(int control, int context)(Code)(Java Doc)
int drawItemProc(int browser, int item, int property, int itemState, int theRect, int gdDepth, int colorDevice)(Code)(Java Doc)
void drawWidget(int control, int context, int damageRgn, int visibleRgn, int theEvent)(Code)(Java Doc)
void error(int code)(Code)(Java Doc)
boolean filters(int eventType)(Code)(Java Doc)
int fixMnemonic(char[] buffer)(Code)(Java Doc)
String getClipboardText()(Code)(Java Doc)
Rectangle getControlBounds(int control)(Code)(Java Doc)
Point getControlSize(int control)(Code)(Java Doc)
public Object getData()(Code)(Java Doc)
public Object getData(String key)(Code)(Java Doc)
public Display getDisplay()(Code)(Java Doc)
int getDrawCount(int control)(Code)(Java Doc)
Rect getInset()(Code)(Java Doc)
String getName()(Code)(Java Doc)
String getNameText()(Code)(Java Doc)
public int getStyle()(Code)(Java Doc)
int getVisibleRegion(int control, boolean clipChildren)(Code)(Java Doc)
int helpProc(int inControl, int inGlobalMouse, int inRequest, int outContentProvided, int ioHelpContent)(Code)(Java Doc)
int hitTestProc(int browser, int item, int property, int theRect, int mouseRect)(Code)(Java Doc)
void hookEvents()(Code)(Java Doc)
boolean hooks(int eventType)(Code)(Java Doc)
void invalWindowRgn(int window, int rgn)(Code)(Java Doc)
void invalidateVisibleRegion(int control)(Code)(Java Doc)
public boolean isDisposed()(Code)(Java Doc)
boolean isDrawing(int control)(Code)(Java Doc)
boolean isEnabled()(Code)(Java Doc)
public boolean isListening(int eventType)(Code)(Java Doc)
boolean isTrimHandle(int trimHandle)(Code)(Java Doc)
boolean isValidSubclass()(Code)(Java Doc)
boolean isValidThread()(Code)(Java Doc)
int itemCompareProc(int browser, int itemOne, int itemTwo, int sortProperty)(Code)(Java Doc)
int itemDataProc(int browser, int item, int property, int itemData, int setValue)(Code)(Java Doc)
int itemNotificationProc(int browser, int item, int message)(Code)(Java Doc)
int kEventAccessibleGetAllAttributeNames(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventAccessibleGetChildAtPoint(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventAccessibleGetFocusedChild(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventAccessibleGetNamedAttribute(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventClockDateOrTimeChanged(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventControlActivate(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventControlApplyBackground(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventControlBoundsChanged(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventControlClick(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventControlContextualMenuClick(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventControlDeactivate(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventControlDraw(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventControlGetClickActivation(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventControlGetFocusPart(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventControlHit(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventControlHitTest(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventControlSetCursor(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventControlSetFocusPart(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventControlTrack(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventMenuCalculateSize(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventMenuClosed(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventMenuCreateFrameView(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventMenuDrawItem(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventMenuDrawItemContent(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventMenuGetFrameBounds(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventMenuMeasureItemWidth(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventMenuOpening(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventMenuTargetItem(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventMouseDown(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventMouseDragged(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventMouseMoved(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventMouseUp(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventMouseWheelMoved(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventProcessCommand(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventRawKeyDown(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventRawKeyModifiersChanged(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventRawKeyPressed(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventRawKeyRepeat(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventRawKeyUp(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventSearchFieldCancelClicked(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventTextInputOffsetToPos(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventTextInputPosToOffset(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventTextInputUnicodeForKeyEvent(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventTextInputUpdateActiveInputArea(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventWindowActivated(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventWindowBoundsChanged(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventWindowClose(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventWindowCollapsed(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventWindowDeactivated(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventWindowDrawContent(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventWindowExpanded(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventWindowGetClickModality(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventWindowGetRegion(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventWindowHidden(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventWindowHitTest(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventWindowShown(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int kEventWindowUpdate(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int keyboardProc(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int menuProc(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
int mouseProc(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
public void notifyListeners(int eventType, Event event)(Code)(Java Doc)
void postEvent(int eventType)(Code)(Java Doc)
void postEvent(int eventType, Event event)(Code)(Java Doc)
void redrawChildren(int control)(Code)(Java Doc)
void redrawChildren(int control, int rgn)(Code)(Java Doc)
void redrawWidget(int control, boolean children)(Code)(Java Doc)
void redrawWidget(int control, int x, int y, int width, int height, boolean children)(Code)(Java Doc)
void register()(Code)(Java Doc)
void release(boolean destroy)(Code)(Java Doc)
void releaseChildren(boolean destroy)(Code)(Java Doc)
void releaseHandle()(Code)(Java Doc)
void releaseParent()(Code)(Java Doc)
void releaseWidget()(Code)(Java Doc)
public void removeDisposeListener(DisposeListener listener)(Code)(Java Doc)
public void removeListener(int eventType, Listener handler)(Code)(Java Doc)
protected void removeListener(int eventType, SWTEventListener handler)(Code)(Java Doc)
int searchProc(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
void sendEvent(Event event)(Code)(Java Doc)
void sendEvent(int eventType)(Code)(Java Doc)
void sendEvent(int eventType, Event event)(Code)(Java Doc)
void sendEvent(int eventType, Event event, boolean send)(Code)(Java Doc)
boolean sendKeyEvent(int type, int theEvent)(Code)(Java Doc)
boolean sendKeyEvent(int type, Event event)(Code)(Java Doc)
int setBounds(int control, int x, int y, int width, int height, boolean move, boolean resize, boolean events)(Code)(Java Doc)
public void setData(Object data)(Code)(Java Doc)
public void setData(String key, Object value)(Code)(Java Doc)
boolean setInputState(Event event, int type, int chord, int modifiers)(Code)(Java Doc)
boolean setKeyState(Event event, int type, int theEvent)(Code)(Java Doc)
void setVisible(int control, boolean visible)(Code)(Java Doc)
void setZOrder(int control, int otheControl, boolean above)(Code)(Java Doc)
int textInputProc(int nextHandler, int theEvent, int userData)(Code)(Java Doc)
RGBColor toRGBColor(float[] color)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
int trackingProc(int browser, int itemID, int property, int theRect, int startPt, int modifiers)(Code)(Java Doc)
int windowProc(int nextHandler, int theEvent, int userData)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.