org.eclipse.swt.widgets
Class Text

java.lang.Object
  |
  +--org.eclipse.swt.widgets.Widget
        |
        +--org.eclipse.swt.widgets.Control
              |
              +--org.eclipse.swt.widgets.Scrollable
                    |
                    +--org.eclipse.swt.widgets.Text
All Implemented Interfaces:
Drawable

public class Text
extends Scrollable

Safe: Instances of this class are selectable user interface objects that allow the user to enter and modify text.

Styles:
CENTER, LEFT, MULTI, SINGLE, RIGHT, READ_ONLY, WRAP
Events:
DefaultSelection, Modify, Verify

Note: Only one of the styles MULTI and SINGLE may be specified.

IMPORTANT: This class is not intended to be subclassed.


Field Summary
static String DELIMITER
          Enabled:
(package private)  boolean doubleClick
           
(package private) static org.eclipse.swt.internal.win32.TCHAR EditClass
           
(package private) static int EditProc
           
(package private)  boolean ignoreCharacter
           
(package private)  boolean ignoreVerify
           
static int LIMIT
          Enabled:
(package private)  int oldEnd
           
(package private)  int oldStart
           
(package private)  int tabs
           
 
Fields inherited from class org.eclipse.swt.widgets.Scrollable
horizontalBar, verticalBar
 
Fields inherited from class org.eclipse.swt.widgets.Control
ACCENTS, accessible, background, drawCount, foreground, handle, hCursor, layoutData, menu, parent, toolTipText
 
Fields inherited from class org.eclipse.swt.widgets.Widget
CANVAS, COMCTL32_MAJOR, COMCTL32_MINOR, data, DEFAULT_HEIGHT, DEFAULT_WIDTH, DISABLED, DISPOSED, eventTable, HIDDEN, keys, MAJOR, MINOR, Mnemonic, state, style, values
 
Constructor Summary
Text(Composite parent, int style)
          Enabled: Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
 
Method Summary
 void addModifyListener(ModifyListener listener)
          Enabled: Adds the listener to the collection of listeners who will be notified when the receiver's text is modified, by sending it one of the messages defined in the ModifyListener interface.
 void addSelectionListener(SelectionListener listener)
          Enabled: Adds the listener to the collection of listeners who will be notified when the control is selected, by sending it one of the messages defined in the SelectionListener interface.
 void addVerifyListener(VerifyListener listener)
          Enabled: Adds the listener to the collection of listeners who will be notified when the receiver's text is verified, by sending it one of the messages defined in the VerifyListener interface.
 void append(String string)
          Enabled: Appends a string.
(package private)  int callWindowProc(int msg, int wParam, int lParam)
           
(package private) static int checkStyle(int style)
           
 void clearSelection()
          Enabled: Clears the selection.
 Point computeSize(int wHint, int hHint, boolean changed)
          Enabled:
 void copy()
          Suppressed: Copies the selected text.
(package private)  void createHandle()
           
(package private)  void createWidget()
           
 void cut()
          Suppressed: Cuts the selected text.
(package private)  int defaultBackground()
           
 int getCaretLineNumber()
          Enabled: Gets the line number of the caret.
 Point getCaretLocation()
          Enabled: Gets the location the caret.
 int getCaretPosition()
          Enabled: Gets the position of the caret.
 int getCharCount()
          Enabled: Gets the number of characters.
(package private)  String getClipboardText()
           
 boolean getDoubleClickEnabled()
          Enabled: Gets the double click enabled flag.
 char getEchoChar()
          Enabled: Gets the echo character.
 boolean getEditable()
          Enabled: Gets the editable state.
 int getLineCount()
          Enabled: Gets the number of lines.
 String getLineDelimiter()
          Enabled: Gets the line delimiter.
 int getLineHeight()
          Enabled: Gets the height of a line.
 Point getSelection()
          Enabled: Gets the position of the selected text.
 int getSelectionCount()
          Enabled: Gets the number of selected characters.
 String getSelectionText()
          Enabled: Gets the selected text.
 int getTabs()
          Enabled: Gets the number of tabs.
(package private)  int getTabWidth(int tabs)
           
 String getText()
          Enabled: Gets the widget text.
 String getText(int start, int end)
          Enabled: Gets a range of text.
 int getTextLimit()
          Enabled: Returns the maximum number of characters that the receiver is capable of holding.
 int getTopIndex()
          Enabled: Returns the zero-relative index of the line which is currently at the top of the receiver.
 int getTopPixel()
          Enabled: Gets the top pixel.
 void insert(String string)
          Enabled: Inserts a string.
(package private)  int mbcsToWcsPos(int mbcsPos)
           
 void paste()
          Suppressed: Pastes text from clipboard.
 void removeModifyListener(ModifyListener listener)
          Enabled: Removes the listener from the collection of listeners who will be notified when the receiver's text is modified.
 void removeSelectionListener(SelectionListener listener)
          Enabled: Removes the listener from the collection of listeners who will be notified when the control is selected.
 void removeVerifyListener(VerifyListener listener)
          Enabled: Removes the listener from the collection of listeners who will be notified when the control is verified.
 void selectAll()
          Enabled: Selects all the text in the receiver.
(package private)  boolean sendKeyEvent(int type, int msg, int wParam, int lParam, Event event)
           
(package private)  void setBounds(int x, int y, int width, int height, int flags)
           
 void setDoubleClickEnabled(boolean doubleClick)
          Enabled: Sets the double click enabled flag.
 void setEchoChar(char echo)
          Enabled: Sets the echo character.
 void setEditable(boolean editable)
          Enabled: Sets the editable state.
 void setFont(Font font)
          Enabled:
 void setRedraw(boolean redraw)
          Enabled:
 void setSelection(int start)
          Enabled: Sets the selection.
 void setSelection(int start, int end)
          Enabled: Sets the selection.
 void setSelection(Point selection)
          Enabled: Sets the selection.
 void setTabs(int tabs)
          Enabled: Sets the number of tabs.
(package private)  void setTabStops(int tabs)
           
 void setText(String string)
          Enabled: Sets the contents of the receiver to the given string.
 void setTextLimit(int limit)
          Enabled: Sets the maximum number of characters that the receiver is capable of holding to be the argument.
 void setTopIndex(int index)
          Enabled: Sets the zero-relative index of the line which is currently at the top of the receiver.
 void showSelection()
          Enabled: Shows the selection.
(package private)  String verifyText(String string, int start, int end)
           
(package private)  String verifyText(String string, int start, int end, Event keyEvent)
           
(package private)  int wcsToMbcsPos(int wcsPos)
           
(package private)  int widgetStyle()
           
(package private)  org.eclipse.swt.internal.win32.TCHAR windowClass()
           
(package private)  int windowProc()
           
(package private)  org.eclipse.swt.internal.win32.LRESULT WM_CHAR(int wParam, int lParam)
           
(package private)  org.eclipse.swt.internal.win32.LRESULT WM_CLEAR(int wParam, int lParam)
           
(package private)  org.eclipse.swt.internal.win32.LRESULT WM_CUT(int wParam, int lParam)
           
(package private)  org.eclipse.swt.internal.win32.LRESULT WM_GETDLGCODE(int wParam, int lParam)
           
(package private)  org.eclipse.swt.internal.win32.LRESULT WM_IME_CHAR(int wParam, int lParam)
           
(package private)  org.eclipse.swt.internal.win32.LRESULT WM_LBUTTONDBLCLK(int wParam, int lParam)
           
(package private)  org.eclipse.swt.internal.win32.LRESULT WM_PASTE(int wParam, int lParam)
           
(package private)  org.eclipse.swt.internal.win32.LRESULT WM_UNDO(int wParam, int lParam)
           
(package private)  org.eclipse.swt.internal.win32.LRESULT wmCommandChild(int wParam, int lParam)
           
 
Methods inherited from class org.eclipse.swt.widgets.Scrollable
computeTrim, createScrollBar, getClientArea, getHorizontalBar, getVerticalBar, releaseWidget, widgetExtStyle, WM_HSCROLL, WM_MOUSEWHEEL, WM_SIZE, WM_VSCROLL, wmScroll
 
Methods inherited from class org.eclipse.swt.widgets.Control
addControlListener, addFocusListener, addHelpListener, addKeyListener, addMouseListener, addMouseMoveListener, addMouseTrackListener, addPaintListener, addTraverseListener, checkOrientation, computeSize, computeTabGroup, computeTabList, computeTabRoot, defaultFont, defaultForeground, deregister, destroyWidget, drawBackground, drawBackground, findBrush, findCursor, findMnemonic, fixFocus, forceFocus, forceResize, getAccessible, getBackground, getBackgroundPixel, getBorderWidth, getBounds, getCodePage, getDisplay, getEnabled, getFont, getForeground, getForegroundPixel, getLayoutData, getLocation, getMenu, getParent, getPath, getShell, getSize, getToolTipText, getVisible, hasCursor, hasFocus, internal_dispose_GC, internal_new_GC, isActive, isDisposed, isEnabled, isFocusAncestor, isFocusControl, isReparentable, isShowing, isTabGroup, isTabItem, isVisible, menuShell, mnemonicHit, mnemonicMatch, moveAbove, moveBelow, new_Accessible, pack, pack, redraw, redraw, register, releaseHandle, removeControlListener, removeFocusListener, removeHelpListener, removeKeyListener, removeMouseListener, removeMouseMoveListener, removeMouseTrackListener, removePaintListener, removeTraverseListener, sendKeyEvent, sendMouseEvent, sendMouseEvent, setBackground, setBackgroundPixel, setBounds, setBounds, setCapture, setCursor, setDefaultFont, setEnabled, setFocus, setForeground, setForegroundPixel, setLayoutData, setLocation, setLocation, setMenu, setParent, setRadioFocus, setRadioSelection, setSavedFocus, setSize, setSize, setTabGroupFocus, setTabItemFocus, setToolTipText, setVisible, sort, subclass, toControl, toControl, toDisplay, toDisplay, transferActive, transferFocus, translateAccelerator, translateMnemonic, translateMnemonic, translateTraversal, traverse, traverse, traverseEscape, traverseGroup, traverseItem, traverseMnemonic, traversePage, traverseReturn, unsubclass, update, update, updateFont, windowProc, WM_ACTIVATE, WM_CLOSE, WM_COMMAND, WM_CONTEXTMENU, WM_CTLCOLOR, WM_DESTROY, WM_DRAWITEM, WM_ENDSESSION, WM_ERASEBKGND, WM_GETFONT, WM_GETOBJECT, WM_HELP, WM_HOTKEY, WM_IME_COMPOSITION, WM_INITMENUPOPUP, WM_KEYDOWN, WM_KEYUP, WM_KILLFOCUS, WM_LBUTTONDOWN, WM_LBUTTONUP, WM_MBUTTONDBLCLK, WM_MBUTTONDOWN, WM_MBUTTONUP, WM_MEASUREITEM, WM_MENUCHAR, WM_MENUSELECT, WM_MOUSEACTIVATE, WM_MOUSEHOVER, WM_MOUSELEAVE, WM_MOUSEMOVE, WM_MOVE, WM_NCACTIVATE, WM_NCCALCSIZE, WM_NCHITTEST, WM_NOTIFY, WM_PAINT, WM_PALETTECHANGED, WM_PRINTCLIENT, WM_QUERYENDSESSION, WM_QUERYNEWPALETTE, WM_QUERYOPEN, WM_RBUTTONDBLCLK, WM_RBUTTONDOWN, WM_RBUTTONUP, WM_SETCURSOR, WM_SETFOCUS, WM_SETFONT, WM_SETREDRAW, WM_SETTINGCHANGE, WM_SHOWWINDOW, WM_SYSCHAR, WM_SYSCOLORCHANGE, WM_SYSCOMMAND, WM_SYSKEYDOWN, WM_SYSKEYUP, WM_TIMER, WM_WINDOWPOSCHANGING, wmColorChild, wmDrawChild, wmMeasureChild, wmNotifyChild, wmScrollChild
 
Methods inherited from class org.eclipse.swt.widgets.Widget
addDisposeListener, addListener, checkBits, checkParent, checkSubclass, checkWidget, dispose, error, filters, getData, getData, getName, getNameText, getStyle, hooks, isListening, isValidSubclass, isValidThread, mbcsToWcs, mbcsToWcs, notifyListeners, postEvent, postEvent, releaseChild, releaseResources, removeDisposeListener, removeListener, removeListener, sendEvent, sendEvent, sendEvent, sendEvent, setData, setData, setInputState, setKeyState, toString, wcsToMbcs, wcsToMbcs
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

tabs

int tabs

oldStart

int oldStart

oldEnd

int oldEnd

doubleClick

boolean doubleClick

ignoreVerify

boolean ignoreVerify

ignoreCharacter

boolean ignoreCharacter

LIMIT

public static final int LIMIT
Enabled:


DELIMITER

public static final String DELIMITER
Enabled:


EditProc

static final int EditProc

EditClass

static final org.eclipse.swt.internal.win32.TCHAR EditClass
Constructor Detail

Text

public Text(Composite parent,
            int style)
Enabled: 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)
style - the style of control to construct
See Also:
SWT.SINGLE, SWT.MULTI, SWT.READ_ONLY, SWT.WRAP, Widget.checkSubclass(), Widget.getStyle()
Method Detail

callWindowProc

int callWindowProc(int msg,
                   int wParam,
                   int lParam)
Overrides:
callWindowProc in class Scrollable

createHandle

void createHandle()
Overrides:
createHandle in class Control

addModifyListener

public void addModifyListener(ModifyListener listener)
Enabled: Adds the listener to the collection of listeners who will be notified when the receiver's text is modified, by sending it one of the messages defined in the ModifyListener interface.

Parameters:
listener - the listener which should be notified
See Also:
ModifyListener, removeModifyListener(org.eclipse.swt.events.ModifyListener)

addSelectionListener

public void addSelectionListener(SelectionListener listener)
Enabled: Adds the listener to the collection of listeners who will be notified when the control is selected, by sending it one of the messages defined in the SelectionListener interface.

widgetSelected is not called for texts. widgetDefaultSelected is typically called when ENTER is pressed in a single-line text.

Parameters:
listener - the listener which should be notified
See Also:
SelectionListener, removeSelectionListener(org.eclipse.swt.events.SelectionListener), SelectionEvent

addVerifyListener

public void addVerifyListener(VerifyListener listener)
Enabled: Adds the listener to the collection of listeners who will be notified when the receiver's text is verified, by sending it one of the messages defined in the VerifyListener interface.

Parameters:
listener - the listener which should be notified
See Also:
VerifyListener, removeVerifyListener(org.eclipse.swt.events.VerifyListener)

append

public void append(String string)
Enabled: Appends a string.

The new text is appended to the text at the end of the widget.

Parameters:
string - the string to be appended

checkStyle

static int checkStyle(int style)

clearSelection

public void clearSelection()
Enabled: Clears the selection.


computeSize

public Point computeSize(int wHint,
                         int hHint,
                         boolean changed)
Enabled:

Overrides:
computeSize in class Control
Parameters:
wHint - the width hint (can be SWT.DEFAULT)
hHint - the height hint (can be SWT.DEFAULT)
changed - true if the control's contents have changed, and false otherwise
Returns:
the preferred size of the control.
See Also:
Layout, Control.getBorderWidth(), Control.getBounds(), Control.getSize(), Control.pack(), "computeTrim, getClientArea for controls that implement them"

copy

public void copy()
Suppressed: Copies the selected text.

The current selection is copied to the clipboard.


createWidget

void createWidget()
Overrides:
createWidget in class Scrollable

cut

public void cut()
Suppressed: Cuts the selected text.

The current selection is first copied to the clipboard and then deleted from the widget.


defaultBackground

int defaultBackground()
Overrides:
defaultBackground in class Control

getCaretLineNumber

public int getCaretLineNumber()
Enabled: Gets the line number of the caret.

The line number of the caret is returned.

Returns:
the line number

getCaretLocation

public Point getCaretLocation()
Enabled: Gets the location the caret.

The location of the caret is returned.

Returns:
a point, the location of the caret

getCaretPosition

public int getCaretPosition()
Enabled: Gets the position of the caret.

The character position of the caret is returned.

Returns:
the position of the caret

getCharCount

public int getCharCount()
Enabled: Gets the number of characters.

Returns:
number of characters in the widget

getClipboardText

String getClipboardText()

getDoubleClickEnabled

public boolean getDoubleClickEnabled()
Enabled: Gets the double click enabled flag.

The double click flag enables or disables the default action of the text widget when the user double clicks.


getEchoChar

public char getEchoChar()
Enabled: Gets the echo character.

The echo character is the character that is displayed when the user enters text or the text is changed by the programmer.


getEditable

public boolean getEditable()
Enabled: Gets the editable state.


getLineCount

public int getLineCount()
Enabled: Gets the number of lines.

Returns:
the number of lines in the widget

getLineDelimiter

public String getLineDelimiter()
Enabled: Gets the line delimiter.

Returns:
a string that is the line delimiter

getLineHeight

public int getLineHeight()
Enabled: Gets the height of a line.

Returns:
the height of a row of text

getSelection

public Point getSelection()
Enabled: Gets the position of the selected text.

Indexing is zero based. The range of a selection is from 0..N where N is the number of characters in the widget.

Returns:
the start and end of the selection

getSelectionCount

public int getSelectionCount()
Enabled: Gets the number of selected characters.

Returns:
the number of selected characters.

getSelectionText

public String getSelectionText()
Enabled: Gets the selected text.

Returns:
the selected text

getTabs

public int getTabs()
Enabled: Gets the number of tabs.

Tab stop spacing is specified in terms of the space (' ') character. The width of a single tab stop is the pixel width of the spaces.

Returns:
the number of tab characters

getTabWidth

int getTabWidth(int tabs)

getText

public String getText()
Enabled: Gets the widget text.

The text for a text widget is the characters in the widget.

Returns:
the widget text

getText

public String getText(int start,
                      int end)
Enabled: Gets a range of text.

Indexing is zero based. The range of a selection is from 0..N-1 where N is the number of characters in the widget.

Parameters:
start - the start of the range
end - the end of the range
Returns:
the range of text

getTextLimit

public int getTextLimit()
Enabled: Returns the maximum number of characters that the receiver is capable of holding.

If this has not been changed by setTextLimit(), it will be the constant Text.LIMIT.

Returns:
the text limit

getTopIndex

public int getTopIndex()
Enabled: Returns the zero-relative index of the line which is currently at the top of the receiver.

This index can change when lines are scrolled or new lines are added or removed.

Returns:
the index of the top line

getTopPixel

public int getTopPixel()
Enabled: Gets the top pixel.

The top pixel is the pixel position of the line that is currently at the top of the widget. On some platforms, a text widget can be scrolled by pixels instead of lines so that a partial line is displayed at the top of the widget.

The top pixel changes when the widget is scrolled. The top pixel does not include the widget trimming.

Returns:
the pixel position of the top line

insert

public void insert(String string)
Enabled: Inserts a string.

The old selection is replaced with the new text.

Parameters:
string - the string

mbcsToWcsPos

int mbcsToWcsPos(int mbcsPos)

paste

public void paste()
Suppressed: Pastes text from clipboard.

The selected text is deleted from the widget and new text inserted from the clipboard.


removeModifyListener

public void removeModifyListener(ModifyListener listener)
Enabled: Removes the listener from the collection of listeners who will be notified when the receiver's text is modified.

Parameters:
listener - the listener which should no longer be notified
See Also:
ModifyListener, addModifyListener(org.eclipse.swt.events.ModifyListener)

removeSelectionListener

public void removeSelectionListener(SelectionListener listener)
Enabled: Removes the listener from the collection of listeners who will be notified when the control is selected.

Parameters:
listener - the listener which should be notified
See Also:
SelectionListener, addSelectionListener(org.eclipse.swt.events.SelectionListener)

removeVerifyListener

public void removeVerifyListener(VerifyListener listener)
Enabled: Removes the listener from the collection of listeners who will be notified when the control is verified.

Parameters:
listener - the listener which should be notified
See Also:
VerifyListener, addVerifyListener(org.eclipse.swt.events.VerifyListener)

selectAll

public void selectAll()
Enabled: Selects all the text in the receiver.


sendKeyEvent

boolean sendKeyEvent(int type,
                     int msg,
                     int wParam,
                     int lParam,
                     Event event)
Overrides:
sendKeyEvent in class Control

setBounds

void setBounds(int x,
               int y,
               int width,
               int height,
               int flags)
Overrides:
setBounds in class Control

setDoubleClickEnabled

public void setDoubleClickEnabled(boolean doubleClick)
Enabled: Sets the double click enabled flag.

The double click flag enables or disables the default action of the text widget when the user double clicks.

Parameters:
doubleClick - the new double click flag

setEchoChar

public void setEchoChar(char echo)
Enabled: Sets the echo character.

The echo character is the character that is displayed when the user enters text or the text is changed by the programmer. Setting the echo character to '\0' clears the echo character and redraws the original text. If for any reason the echo character is invalid, the default echo character for the platform is used.

Parameters:
echo - the new echo character

setEditable

public void setEditable(boolean editable)
Enabled: Sets the editable state.

Parameters:
editable - the new editable state

setFont

public void setFont(Font font)
Enabled:

Overrides:
setFont in class Control
Parameters:
font - the new font (or null)

setSelection

public void setSelection(int start)
Enabled: Sets the selection.

Indexing is zero based. The range of a selection is from 0..N where N is the number of characters in the widget.

Text selections are specified in terms of caret positions. In a text widget that contains N characters, there are N+1 caret positions, ranging from 0..N. This differs from other functions that address character position such as getText () that use the regular array indexing rules.

Parameters:
start - new caret position

setSelection

public void setSelection(int start,
                         int end)
Enabled: Sets the selection.

Indexing is zero based. The range of a selection is from 0..N where N is the number of characters in the widget.

Text selections are specified in terms of caret positions. In a text widget that contains N characters, there are N+1 caret positions, ranging from 0..N. This differs from other functions that address character position such as getText () that use the usual array indexing rules.

Parameters:
start - the start of the range
end - the end of the range

setRedraw

public void setRedraw(boolean redraw)
Enabled:

Overrides:
setRedraw in class Control
Parameters:
redraw - the new redraw state
See Also:
Control.redraw(), Control.update()

setSelection

public void setSelection(Point selection)
Enabled: Sets the selection.

Indexing is zero based. The range of a selection is from 0..N where N is the number of characters in the widget.

Text selections are specified in terms of caret positions. In a text widget that contains N characters, there are N+1 caret positions, ranging from 0..N. This differs from other functions that address character position such as getText () that use the usual array indexing rules.

Parameters:
selection - the point

setTabs

public void setTabs(int tabs)
Enabled: Sets the number of tabs.

Tab stop spacing is specified in terms of the space (' ') character. The width of a single tab stop is the pixel width of the spaces.

Parameters:
tabs - the number of tabs

setTabStops

void setTabStops(int tabs)

setText

public void setText(String string)
Enabled: Sets the contents of the receiver to the given string. If the receiver has style SINGLE and the argument contains multiple lines of text, the result of this operation is undefined and may vary from platform to platform.


setTextLimit

public void setTextLimit(int limit)
Enabled: Sets the maximum number of characters that the receiver is capable of holding to be the argument.

Instead of trying to set the text limit to zero, consider creating a read-only text widget.

To reset this value to the default, use setTextLimit(Text.LIMIT).

Parameters:
limit - new text limit

setTopIndex

public void setTopIndex(int index)
Enabled: Sets the zero-relative index of the line which is currently at the top of the receiver. This index can change when lines are scrolled or new lines are added and removed.

Parameters:
index - the index of the top item

showSelection

public void showSelection()
Enabled: Shows the selection.

If the selection is already showing in the receiver, this method simply returns. Otherwise, lines are scrolled until the selection is visible.


verifyText

String verifyText(String string,
                  int start,
                  int end)

verifyText

String verifyText(String string,
                  int start,
                  int end,
                  Event keyEvent)

wcsToMbcsPos

int wcsToMbcsPos(int wcsPos)

widgetStyle

int widgetStyle()
Overrides:
widgetStyle in class Scrollable

windowClass

org.eclipse.swt.internal.win32.TCHAR windowClass()
Overrides:
windowClass in class Scrollable

windowProc

int windowProc()
Overrides:
windowProc in class Scrollable

WM_CHAR

org.eclipse.swt.internal.win32.LRESULT WM_CHAR(int wParam,
                                               int lParam)
Overrides:
WM_CHAR in class Control

WM_CLEAR

org.eclipse.swt.internal.win32.LRESULT WM_CLEAR(int wParam,
                                                int lParam)
Overrides:
WM_CLEAR in class Control

WM_CUT

org.eclipse.swt.internal.win32.LRESULT WM_CUT(int wParam,
                                              int lParam)
Overrides:
WM_CUT in class Control

WM_GETDLGCODE

org.eclipse.swt.internal.win32.LRESULT WM_GETDLGCODE(int wParam,
                                                     int lParam)
Overrides:
WM_GETDLGCODE in class Control

WM_IME_CHAR

org.eclipse.swt.internal.win32.LRESULT WM_IME_CHAR(int wParam,
                                                   int lParam)
Overrides:
WM_IME_CHAR in class Control

WM_LBUTTONDBLCLK

org.eclipse.swt.internal.win32.LRESULT WM_LBUTTONDBLCLK(int wParam,
                                                        int lParam)
Overrides:
WM_LBUTTONDBLCLK in class Control

WM_PASTE

org.eclipse.swt.internal.win32.LRESULT WM_PASTE(int wParam,
                                                int lParam)
Overrides:
WM_PASTE in class Control

WM_UNDO

org.eclipse.swt.internal.win32.LRESULT WM_UNDO(int wParam,
                                               int lParam)
Overrides:
WM_UNDO in class Control

wmCommandChild

org.eclipse.swt.internal.win32.LRESULT wmCommandChild(int wParam,
                                                      int lParam)
Overrides:
wmCommandChild in class Control


comments?