|
||||||||||
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.LabelBase<String>
com.google.gwt.user.client.ui.Label
com.google.gwt.user.client.ui.InlineLabel
com.github.gwtbootstrap.client.ui.base.InlineLabel
com.github.gwtbootstrap.client.ui.UneditableInput
public class UneditableInput
Uneditable style text input.
Nested Class Summary |
---|
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 |
Nested classes/interfaces inherited from interface com.google.gwt.user.client.ui.HasHorizontalAlignment |
---|
HasHorizontalAlignment.AutoHorizontalAlignmentConstant, HasHorizontalAlignment.HorizontalAlignmentConstant |
Field Summary |
---|
Fields inherited from class com.google.gwt.user.client.ui.Label |
---|
DEFAULT_DIRECTION_ESTIMATOR |
Fields inherited from class com.google.gwt.user.client.ui.UIObject |
---|
DEBUG_ID_PREFIX |
Fields inherited from interface com.google.gwt.user.client.ui.HasAutoHorizontalAlignment |
---|
ALIGN_CONTENT_END, ALIGN_CONTENT_START |
Fields inherited from interface com.google.gwt.user.client.ui.HasHorizontalAlignment |
---|
ALIGN_CENTER, ALIGN_DEFAULT, ALIGN_JUSTIFY, ALIGN_LEFT, ALIGN_LOCALE_END, ALIGN_LOCALE_START, ALIGN_RIGHT |
Constructor Summary | |
---|---|
|
UneditableInput()
Creates an empty widget. |
protected |
UneditableInput(Element element)
This constructor may be used by subclasses to explicitly use an existing element. |
|
UneditableInput(String text)
Creates a widget with the specified text. |
|
UneditableInput(String text,
DirectionEstimator directionEstimator)
Creates a label with the specified text and a default direction estimator. |
|
UneditableInput(String text,
HasDirection.Direction dir)
Creates a label with the specified text and direction. |
Method Summary | |
---|---|
void |
addStyle(Style style)
Adds the provided style to the widget. |
String |
getId()
Get ID |
boolean |
isSearchQuery()
is the element search-query style? |
void |
removeStyle(Style style)
Removes the provided style from the widget. |
void |
setAlternateSize(AlternateSize size)
|
void |
setHideOn(Device device)
Sets the kind of device, this widget is hidden on. |
void |
setId(String id)
Set ID |
void |
setSearchQuery(boolean searchQuery)
Set search-query style to the element. |
void |
setShowOn(Device device)
Sets the kind of device, this widget is shown on. |
void |
setSize(int size)
Sets the widget's size. |
void |
setStyle(Style style)
Replaces the widet's style with the provided one. |
Methods inherited from class com.google.gwt.user.client.ui.InlineLabel |
---|
wrap |
Methods inherited from class com.google.gwt.user.client.ui.LabelBase |
---|
getAutoHorizontalAlignment, getDirectionEstimator, getHorizontalAlignment, getWordWrap, setAutoHorizontalAlignment, setDirectionEstimator, setDirectionEstimator, setHorizontalAlignment, setWordWrap, updateHorizontalAlignment |
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, onAttach, onBrowserEvent, onDetach, onLoad, 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.event.shared.HasHandlers |
---|
fireEvent |
Constructor Detail |
---|
public UneditableInput()
protected UneditableInput(Element element)
element
- the element to be usedpublic UneditableInput(String text, HasDirection.Direction dir)
text
- the new label's textdir
- the text's direction. Note: Direction.DEFAULT
means
direction should be inherited from the widget's parent
element.public UneditableInput(String text, DirectionEstimator directionEstimator)
text
- the new label's textdirectionEstimator
- A DirectionEstimator object used for automatic direction
adjustment. For convenience,
Label.DEFAULT_DIRECTION_ESTIMATOR
can be used.public UneditableInput(String text)
text
- the new widget's textMethod Detail |
---|
public void setSearchQuery(boolean searchQuery)
setSearchQuery
in interface IsSearchQuery
searchQuery
- true:add search-query css-class/false:remove search-query css-classpublic boolean isSearchQuery()
isSearchQuery
in interface IsSearchQuery
public void setAlternateSize(AlternateSize size)
setAlternateSize
in interface HasAlternateSize
public void setSize(int size)
setSize
in interface HasSize
size
- the size of the widget in the Bootstrap grid systempublic String getId()
getId
in interface HasId
public void setId(String id)
setId
in interface HasId
id
- set idpublic void setShowOn(Device device)
The widget is not shown on any other device.
Only works if responsive design is turned on!
setShowOn
in interface IsResponsive
Configurator.hasResponsiveDesign()
,
IsResponsive.setHideOn(Device)
public void setHideOn(Device device)
The widget is not hidden on any other device.
Only works if responsive design is turned on!
setHideOn
in interface IsResponsive
Configurator.hasResponsiveDesign()
,
IsResponsive.setShowOn(Device)
public void setStyle(Style style)
setStyle
in interface HasStyle
style
- the style to be applied to the Widget.public void addStyle(Style style)
addStyle
in interface HasStyle
style
- the style to be added to the Widget.public void removeStyle(Style style)
removeStyle
in interface HasStyle
style
- the style to be removed from the Widget.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |