public class BaseCheckBox extends com.google.gwt.user.client.ui.ButtonBase implements com.google.gwt.user.client.ui.HasName, com.google.gwt.user.client.ui.HasValue<Boolean>, com.google.gwt.user.client.ui.HasWordWrap, com.google.gwt.user.client.ui.HasDirectionalSafeHtml, com.google.gwt.i18n.shared.HasDirectionEstimator, com.google.gwt.editor.client.IsEditor<com.google.gwt.editor.client.LeafValueEditor<Boolean>>
This class also serves as a base class for
RadioButton
.
setDirectionEstimator(boolean)
or
passing a DirectionEstimator parameter to the constructor, and is off by
default.
Modifier and Type | Field and Description |
---|---|
static com.google.gwt.i18n.shared.DirectionEstimator |
DEFAULT_DIRECTION_ESTIMATOR |
Modifier | Constructor and Description |
---|---|
|
BaseCheckBox()
Creates a check box with no label.
|
protected |
BaseCheckBox(com.google.gwt.dom.client.Element elem) |
|
BaseCheckBox(com.google.gwt.safehtml.shared.SafeHtml label)
Creates a check box with the specified text label.
|
|
BaseCheckBox(com.google.gwt.safehtml.shared.SafeHtml label,
com.google.gwt.i18n.shared.DirectionEstimator directionEstimator)
Creates a check box with the specified text label.
|
|
BaseCheckBox(com.google.gwt.safehtml.shared.SafeHtml label,
com.google.gwt.i18n.client.HasDirection.Direction dir)
Creates a check box with the specified text label.
|
|
BaseCheckBox(String label)
Creates a check box with the specified text label.
|
|
BaseCheckBox(String label,
boolean asHTML)
Creates a check box with the specified text label.
|
|
BaseCheckBox(String label,
com.google.gwt.i18n.shared.DirectionEstimator directionEstimator)
Creates a label with the specified text and a default direction estimator.
|
|
BaseCheckBox(String label,
com.google.gwt.i18n.client.HasDirection.Direction dir)
Creates a check box with the specified text label.
|
Modifier and Type | Method and Description |
---|---|
com.google.gwt.event.shared.HandlerRegistration |
addValueChangeHandler(com.google.gwt.event.logical.shared.ValueChangeHandler<Boolean> handler) |
com.google.gwt.editor.client.LeafValueEditor<Boolean> |
asEditor() |
protected void |
ensureDomEventHandlers() |
com.google.gwt.i18n.shared.DirectionEstimator |
getDirectionEstimator() |
String |
getFormValue()
Returns the value property of the input element that backs this widget.
|
String |
getHTML() |
String |
getName() |
int |
getTabIndex() |
String |
getText() |
com.google.gwt.i18n.client.HasDirection.Direction |
getTextDirection() |
Boolean |
getValue()
Determines whether this check box is currently checked.
|
boolean |
getWordWrap() |
boolean |
isChecked()
Deprecated.
Use
getValue() instead |
boolean |
isEnabled() |
protected void |
onEnsureDebugId(String baseID)
Affected Elements:
-label = label next to checkbox.
|
protected void |
onLoad()
This method is called when a widget is attached to the browser's document.
|
protected void |
onUnload()
This method is called when a widget is detached from the browser's
document.
|
void |
setAccessKey(char key) |
void |
setDirectionEstimator(boolean enabled) |
void |
setDirectionEstimator(com.google.gwt.i18n.shared.DirectionEstimator directionEstimator) |
void |
setEnabled(boolean enabled) |
void |
setFocus(boolean focused) |
void |
setFormValue(String value)
Set the value property on the input element that backs this widget.
|
void |
setHTML(com.google.gwt.safehtml.shared.SafeHtml html,
com.google.gwt.i18n.client.HasDirection.Direction dir) |
void |
setHTML(String html) |
void |
setName(String name) |
void |
setTabIndex(int index) |
void |
setText(String text) |
void |
setText(String text,
com.google.gwt.i18n.client.HasDirection.Direction dir) |
void |
setValue(Boolean value)
Checks or unchecks the check box.
|
void |
setValue(Boolean value,
boolean fireEvents)
Checks or unchecks the check box, firing
ValueChangeEvent if
appropriate. |
void |
setWordWrap(boolean wrap) |
void |
sinkEvents(int eventBitsToAdd) |
addBlurHandler, addClickHandler, addClickListener, addDoubleClickHandler, addDragEndHandler, addDragEnterHandler, addDragHandler, addDragLeaveHandler, addDragOverHandler, addDragStartHandler, addDropHandler, addFocusHandler, addFocusListener, addGestureChangeHandler, addGestureEndHandler, addGestureStartHandler, addKeyboardListener, addKeyDownHandler, addKeyPressHandler, addKeyUpHandler, addMouseDownHandler, addMouseListener, addMouseMoveHandler, addMouseOutHandler, addMouseOverHandler, addMouseUpHandler, addMouseWheelHandler, addMouseWheelListener, addTouchCancelHandler, addTouchEndHandler, addTouchMoveHandler, addTouchStartHandler, getFocusImpl, onAttach, removeClickListener, removeFocusListener, removeKeyboardListener, removeMouseListener, removeMouseWheelListener
addAttachHandler, addBitlessDomHandler, addDomHandler, addHandler, asWidget, asWidgetOrNull, createHandlerManager, delegateEvent, doAttachChildren, doDetachChildren, fireEvent, getHandlerCount, getLayoutData, getParent, isAttached, isOrWasAttached, onBrowserEvent, onDetach, removeFromParent, setLayoutData, unsinkEvents
addStyleDependentName, addStyleName, ensureDebugId, ensureDebugId, ensureDebugId, getAbsoluteLeft, getAbsoluteTop, getElement, getOffsetHeight, getOffsetWidth, getStyleElement, getStyleName, getStyleName, getStylePrimaryName, getStylePrimaryName, getTitle, isVisible, isVisible, removeStyleDependentName, removeStyleName, resolvePotentialElement, setElement, setElement, setHeight, setPixelSize, setSize, setStyleDependentName, setStyleName, setStyleName, setStyleName, setStyleName, setStylePrimaryName, setStylePrimaryName, setTitle, setVisible, setVisible, setWidth, sinkBitlessEvent, toString
public static final com.google.gwt.i18n.shared.DirectionEstimator DEFAULT_DIRECTION_ESTIMATOR
public BaseCheckBox()
public BaseCheckBox(com.google.gwt.safehtml.shared.SafeHtml label)
label
- the check box's labelpublic BaseCheckBox(com.google.gwt.safehtml.shared.SafeHtml label, com.google.gwt.i18n.client.HasDirection.Direction dir)
label
- the check box's labeldir
- the text's direction. Note that DEFAULT
means direction
should be inherited from the widget's parent element.public BaseCheckBox(com.google.gwt.safehtml.shared.SafeHtml label, com.google.gwt.i18n.shared.DirectionEstimator directionEstimator)
label
- the check box's labeldirectionEstimator
- A DirectionEstimator object used for automatic
direction adjustment. For convenience,
DEFAULT_DIRECTION_ESTIMATOR
can be used.public BaseCheckBox(String label)
label
- the check box's labelpublic BaseCheckBox(String label, com.google.gwt.i18n.client.HasDirection.Direction dir)
label
- the check box's labeldir
- the text's direction. Note that DEFAULT
means direction
should be inherited from the widget's parent element.public BaseCheckBox(String label, com.google.gwt.i18n.shared.DirectionEstimator directionEstimator)
label
- the check box's labeldirectionEstimator
- A DirectionEstimator object used for automatic
direction adjustment. For convenience,
DEFAULT_DIRECTION_ESTIMATOR
can be used.public BaseCheckBox(String label, boolean asHTML)
label
- the check box's labelasHTML
- true
to treat the specified label as htmlprotected BaseCheckBox(com.google.gwt.dom.client.Element elem)
public com.google.gwt.event.shared.HandlerRegistration addValueChangeHandler(com.google.gwt.event.logical.shared.ValueChangeHandler<Boolean> handler)
addValueChangeHandler
in interface com.google.gwt.event.logical.shared.HasValueChangeHandlers<Boolean>
public com.google.gwt.editor.client.LeafValueEditor<Boolean> asEditor()
asEditor
in interface com.google.gwt.editor.client.IsEditor<com.google.gwt.editor.client.LeafValueEditor<Boolean>>
public com.google.gwt.i18n.shared.DirectionEstimator getDirectionEstimator()
getDirectionEstimator
in interface com.google.gwt.i18n.shared.HasDirectionEstimator
public String getFormValue()
FormPanel
that holds it is submitted
and the box is checked.
Don't confuse this with getValue()
, which returns true or false if
the widget is checked.
public String getHTML()
getHTML
in interface com.google.gwt.user.client.ui.HasHTML
getHTML
in class com.google.gwt.user.client.ui.ButtonBase
public String getName()
getName
in interface com.google.gwt.user.client.ui.HasName
public int getTabIndex()
getTabIndex
in interface com.google.gwt.user.client.ui.Focusable
getTabIndex
in class com.google.gwt.user.client.ui.FocusWidget
public String getText()
getText
in interface com.google.gwt.user.client.ui.HasText
getText
in class com.google.gwt.user.client.ui.ButtonBase
public com.google.gwt.i18n.client.HasDirection.Direction getTextDirection()
getTextDirection
in interface com.google.gwt.user.client.ui.HasDirectionalText
public Boolean getValue()
Note that this does not return the value property of the checkbox
input element wrapped by this widget. For access to that property, see
getFormValue()
public boolean getWordWrap()
getWordWrap
in interface com.google.gwt.user.client.ui.HasWordWrap
@Deprecated public boolean isChecked()
getValue()
insteadtrue
if the check box is checkedpublic boolean isEnabled()
isEnabled
in interface com.google.gwt.user.client.ui.HasEnabled
isEnabled
in class com.google.gwt.user.client.ui.FocusWidget
public void setAccessKey(char key)
setAccessKey
in interface com.google.gwt.user.client.ui.Focusable
setAccessKey
in class com.google.gwt.user.client.ui.FocusWidget
public void setDirectionEstimator(boolean enabled)
See note at setDirectionEstimator(DirectionEstimator)
.
setDirectionEstimator
in interface com.google.gwt.i18n.shared.HasDirectionEstimator
public void setDirectionEstimator(com.google.gwt.i18n.shared.DirectionEstimator directionEstimator)
Note: DirectionEstimator should be set before the label has any content; it's highly recommended to set it using a constructor. Reason: if the label already has non-empty content, this will update its direction according to the new estimator's result. This may cause flicker, and thus should be avoided.
setDirectionEstimator
in interface com.google.gwt.i18n.shared.HasDirectionEstimator
public void setEnabled(boolean enabled)
setEnabled
in interface com.google.gwt.user.client.ui.HasEnabled
setEnabled
in class com.google.gwt.user.client.ui.FocusWidget
public void setFocus(boolean focused)
setFocus
in interface com.google.gwt.user.client.ui.Focusable
setFocus
in class com.google.gwt.user.client.ui.FocusWidget
public void setFormValue(String value)
FormPanel
that holds it is submitted and the box is
checked.
Don't confuse this with setValue(java.lang.Boolean)
, which actually checks and
unchecks the box.
value
- public void setHTML(com.google.gwt.safehtml.shared.SafeHtml html, com.google.gwt.i18n.client.HasDirection.Direction dir)
setHTML
in interface com.google.gwt.user.client.ui.HasDirectionalSafeHtml
public void setHTML(String html)
setHTML
in interface com.google.gwt.user.client.ui.HasHTML
setHTML
in class com.google.gwt.user.client.ui.ButtonBase
public void setName(String name)
setName
in interface com.google.gwt.user.client.ui.HasName
public void setTabIndex(int index)
setTabIndex
in interface com.google.gwt.user.client.ui.Focusable
setTabIndex
in class com.google.gwt.user.client.ui.FocusWidget
public void setText(String text)
setText
in interface com.google.gwt.user.client.ui.HasText
setText
in class com.google.gwt.user.client.ui.ButtonBase
public void setText(String text, com.google.gwt.i18n.client.HasDirection.Direction dir)
setText
in interface com.google.gwt.user.client.ui.HasDirectionalText
public void setValue(Boolean value)
Note that this does not set the value property of the checkbox
input element wrapped by this widget. For access to that property, see
setFormValue(String)
public void setValue(Boolean value, boolean fireEvents)
ValueChangeEvent
if
appropriate.
Note that this does not set the value property of the checkbox
input element wrapped by this widget. For access to that property, see
setFormValue(String)
setValue
in interface com.google.gwt.user.client.ui.HasValue<Boolean>
value
- true to check, false to uncheck; null value implies falsefireEvents
- If true, and value has changed, fire a
ValueChangeEvent
public void setWordWrap(boolean wrap)
setWordWrap
in interface com.google.gwt.user.client.ui.HasWordWrap
public void sinkEvents(int eventBitsToAdd)
sinkEvents
in class com.google.gwt.user.client.ui.Widget
protected void ensureDomEventHandlers()
protected void onEnsureDebugId(String baseID)
onEnsureDebugId
in class com.google.gwt.user.client.ui.UIObject
UIObject.onEnsureDebugId(String)
protected void onLoad()
Widget.onAttach()
to preserve the onAttach
contract.onLoad
in class com.google.gwt.user.client.ui.Widget
protected void onUnload()
inputElem
.onUnload
in class com.google.gwt.user.client.ui.Widget
Copyright © 2018. All rights reserved.