|
GWT 2.4.0 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.google.gwt.user.client.ui.UIObject
com.google.gwt.user.client.ui.Widget
com.google.gwt.user.client.ui.FocusWidget
com.google.gwt.user.client.ui.ValueBoxBase<java.lang.String>
com.google.gwt.user.client.ui.TextBoxBase
com.google.gwt.user.client.ui.TextArea
public class TextArea
A text box that allows multiple lines of text to be entered.
ValueBoxBase.setDirectionEstimator(boolean)
,
and is available by default when at least one of the application's locales is
right-to-left.
public class TextBoxExample implements EntryPoint { public void onModuleLoad() { // Make some text boxes. The password text box is identical to the text // box, except that the input is visually masked by the browser. PasswordTextBox ptb = new PasswordTextBox(); TextBox tb = new TextBox(); // TODO(ECC) must be tested. tb.addKeyPressHandler(new KeyPressHandler() { public void onKeyPress(KeyPressEvent event) { if (!Character.isDigit(event.getCharCode())) { ((TextBox) event.getSource()).cancelKey(); } } }); // Let's make an 80x50 text area to go along with the other two. TextArea ta = new TextArea(); ta.setCharacterWidth(80); ta.setVisibleLines(50); // Add them to the root panel. VerticalPanel panel = new VerticalPanel(); panel.add(tb); panel.add(ptb); panel.add(ta); RootPanel.get().add(panel); } }
Nested Class Summary |
---|
Nested classes/interfaces inherited from class com.google.gwt.user.client.ui.TextBoxBase |
---|
TextBoxBase.TextAlignConstant |
Nested classes/interfaces inherited from class com.google.gwt.user.client.ui.ValueBoxBase |
---|
ValueBoxBase.TextAlignment |
Nested classes/interfaces inherited from class com.google.gwt.user.client.ui.UIObject |
---|
UIObject.DebugIdImpl, UIObject.DebugIdImplEnabled |
Nested classes/interfaces inherited from interface com.google.gwt.i18n.client.HasDirection |
---|
HasDirection.Direction |
Field Summary |
---|
Fields inherited from class com.google.gwt.user.client.ui.TextBoxBase |
---|
ALIGN_CENTER, ALIGN_JUSTIFY, ALIGN_LEFT, ALIGN_RIGHT |
Fields inherited from class com.google.gwt.user.client.ui.UIObject |
---|
DEBUG_ID_PREFIX |
Constructor Summary | |
---|---|
|
TextArea()
Creates an empty text area. |
protected |
TextArea(Element element)
This constructor may be used by subclasses to explicitly use an existing element. |
Method Summary | |
---|---|
int |
getCharacterWidth()
Gets the requested width of the text box (this is not an exact value, as not all characters are created equal). |
int |
getCursorPos()
Gets the current position of the cursor (this also serves as the beginning of the text selection). |
int |
getSelectionLength()
Gets the length of the current text selection. |
int |
getVisibleLines()
Gets the number of text lines that are visible. |
void |
setCharacterWidth(int width)
Sets the requested width of the text box (this is not an exact value, as not all characters are created equal). |
void |
setVisibleLines(int lines)
Sets the number of text lines that are visible. |
static TextArea |
wrap(Element element)
Creates a TextArea widget that wraps an existing <textarea> element. |
Methods inherited from class com.google.gwt.user.client.ui.TextBoxBase |
---|
addChangeListener, getValue, setTextAlignment |
Methods inherited from class com.google.gwt.user.client.ui.ValueBoxBase |
---|
addChangeHandler, addValueChangeHandler, asEditor, cancelKey, getDirection, getDirectionEstimator, getImpl, getName, getSelectedText, getText, getValueOrThrow, isReadOnly, onBrowserEvent, onLoad, removeChangeListener, selectAll, setAlignment, setCursorPos, setDirection, setDirectionEstimator, setDirectionEstimator, setKey, setName, setReadOnly, setSelectionRange, setText, setValue, setValue |
Methods inherited from class com.google.gwt.user.client.ui.Widget |
---|
addAttachHandler, addBitlessDomHandler, addDomHandler, addHandler, asWidget, asWidgetOrNull, createHandlerManager, delegateEvent, doAttachChildren, doDetachChildren, fireEvent, getHandlerCount, getLayoutData, getParent, isAttached, isOrWasAttached, onDetach, onUnload, removeFromParent, setLayoutData, sinkEvents |
Methods inherited from class com.google.gwt.user.client.ui.UIObject |
---|
addStyleDependentName, addStyleName, ensureDebugId, ensureDebugId, ensureDebugId, getAbsoluteLeft, getAbsoluteTop, getElement, getOffsetHeight, getOffsetWidth, getStyleElement, getStyleName, getStyleName, getStylePrimaryName, getStylePrimaryName, getTitle, isVisible, isVisible, onEnsureDebugId, removeStyleDependentName, removeStyleName, resolvePotentialElement, setElement, setElement, setHeight, setPixelSize, setSize, setStyleDependentName, setStyleName, setStyleName, setStyleName, setStyleName, setStylePrimaryName, setStylePrimaryName, setTitle, setVisible, setVisible, setWidth, sinkBitlessEvent, toString, unsinkEvents |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface com.google.gwt.user.client.ui.SourcesChangeEvents |
---|
removeChangeListener |
Methods inherited from interface com.google.gwt.event.dom.client.HasKeyUpHandlers |
---|
addKeyUpHandler |
Methods inherited from interface com.google.gwt.event.shared.HasHandlers |
---|
fireEvent |
Constructor Detail |
---|
public TextArea()
protected TextArea(Element element)
element
- the element to be usedMethod Detail |
---|
public static TextArea wrap(Element element)
RootPanel.detachNow(Widget)
.
element
- the element to be wrappedpublic int getCharacterWidth()
public int getCursorPos()
ValueBoxBase
getCursorPos
in class ValueBoxBase<java.lang.String>
public int getSelectionLength()
ValueBoxBase
getSelectionLength
in class ValueBoxBase<java.lang.String>
public int getVisibleLines()
public void setCharacterWidth(int width)
width
- the requested width, in characterspublic void setVisibleLines(int lines)
lines
- the number of visible lines
|
GWT 2.4.0 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |