public class Slider extends Canvas implements HasValueChangedHandlers
The slider will generate events as the user interacts with it and
changes its value. If slider.sliderTarget is specified, moving the slider thumb generates a custom event named
'sliderMove', sent to the sliderTarget. If a sliderMove
handler stringMethod is defined on the target, it
will be fired when the slider is moved. The second parameter (available via the variable name eventInfo
if the handler is a string) is a pointer back to the slider.
The slider will also fire a
valueChanged()
method whenever its value is changed. This can be observed or overridden on the Slider
instance to perform some action.
config, configOnly, factoryCreated, factoryProperties, id, nativeObject, scClassName
Constructor and Description |
---|
Slider() |
Slider(com.google.gwt.core.client.JavaScriptObject jsObj) |
Slider(java.lang.String title) |
Modifier and Type | Method and Description |
---|---|
com.google.gwt.event.shared.HandlerRegistration |
addValueChangedHandler(ValueChangedHandler handler)
Add a valueChanged handler.
|
static void |
changeAutoChildDefaults(java.lang.String autoChildName,
Canvas defaults)
Changes the defaults for Canvas AutoChildren named
autoChildName . |
static void |
changeAutoChildDefaults(java.lang.String autoChildName,
FormItem defaults)
Changes the defaults for FormItem AutoChildren named
autoChildName . |
protected com.google.gwt.core.client.JavaScriptObject |
create() |
java.lang.String |
getActiveTrackStyle()
Optional CSS style for the part of the track between it's minimum and current values.
|
java.lang.Boolean |
getAnimateThumb()
Should the thumb be animated to its new position when the value is changed programmatically, or by clicking in the
slider track.
|
java.lang.Boolean |
getAnimateThumbInit()
If thumb animation is enabled, should the thumb be animated to its initial value?
|
int |
getAnimateThumbTime()
Duration of thumb animation, in milliseconds.
|
java.lang.Boolean |
getCanFocus()
Indicates whether keyboard manipulation of the slider is allowed.
|
java.lang.Boolean |
getFlipValues()
Specifies whether the value range of the slider should be flipped so that values increase as the thumb is moved down
(for a vertical slider) or to the left (for a horizontal slider).
|
java.lang.String |
getHThumbStyle()
Optional CSS style for the thumb for a horizontally oriented slider.
|
java.lang.String |
getHTrackStyle()
Optional CSS style for the track for a horizontally oriented slider.
|
int |
getLabelHeight()
The height of the labels used to display the minimum, maximum and current values of the slider.
|
int |
getLabelSpacing()
The space around the labels used to display the minimum, maximum and current values of the slider.
|
int |
getLabelWidth()
The width of the labels used to display the minimum, maximum and current values of the slider.
|
int |
getLength()
Used to set slider height if vertical, slider width if horizontal.
|
com.smartgwt.logicalstructure.core.LogicalStructureObject |
getLogicalStructure()
Getter implementing the
LogicalStructure interface,
which supports Eclipse's logical structure debugging facility. |
float |
getMaxValue()
Deprecated.
|
double |
getMaxValueAsDouble()
The maximum slider value.
|
java.lang.String |
getMaxValueLabel()
The text displayed in the label for the maximum value of the slider.
|
float |
getMinValue()
Deprecated.
|
double |
getMinValueAsDouble()
The minimum slider value.
|
java.lang.String |
getMinValueLabel()
The text displayed in the label for the minimum value of the slider.
|
java.lang.Integer |
getNumValues()
The number of discrete values represented by slider.
|
static Slider |
getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj) |
int |
getRoundPrecision()
If
roundValues is false, the slider value will be rounded to
this number of decimal places. |
java.lang.Boolean |
getRoundValues()
Specifies whether the slider value should be rounded to the nearest integer.
|
java.lang.Boolean |
getShowActiveTrack()
If true, applies a separate
CSS style to the part of the
track between the minimum and current values. |
java.lang.Boolean |
getShowRange()
Indicates whether labels for the min and max values of the slider should be displayed.
|
java.lang.Boolean |
getShowTitle()
Indicates whether the slider's title should be displayed.
|
java.lang.Boolean |
getShowValue()
Indicates whether a label for the value of the slider should be displayed.
|
float |
getStepPercent()
Deprecated.
|
double |
getStepPercentAsDouble()
The percentage of the total slider that constitutes one discrete step.
|
java.lang.String |
getThumbSrc()
The base filename for the slider thumb images.
|
int |
getThumbThickWidth()
The dimension of the thumb perpendicular to the slider track.
|
int |
getThumbThinWidth()
The dimension of the thumb parallel to the slider track.
|
java.lang.String |
getTitle()
Optional display title for the slider.
|
int |
getTitleSpacing()
The space between the title and the track.
|
int |
getTrackCapSize()
The height of vertical slider start and end images, or width of horizontal slider start and end images.
|
ImageStyle |
getTrackImageType()
The imageType setting for the slider track.
|
java.lang.String |
getTrackSrc()
The base filename for the slider track images.
|
int |
getTrackWidth()
The thickness of the track.
|
float |
getValue()
Deprecated.
|
double |
getValueAsDouble()
The slider value.
|
java.lang.Boolean |
getVertical()
Indicates whether this is a vertical or horizontal slider.
|
java.lang.String |
getVThumbStyle()
Optional CSS style for the thumb for a vertically oriented slider.
|
java.lang.String |
getVTrackStyle()
Optional CSS style for the track for a vertically oriented slider.
|
void |
setActiveTrackStyle(java.lang.String activeTrackStyle)
Optional CSS style for the part of the track between it's minimum and current values.
|
void |
setAnimateThumb(java.lang.Boolean animateThumb)
Should the thumb be animated to its new position when the value is changed programmatically, or by clicking in the
slider track.
|
void |
setAnimateThumbInit(java.lang.Boolean animateThumbInit)
If thumb animation is enabled, should the thumb be animated to its initial value?
|
void |
setAnimateThumbTime(int animateThumbTime)
Duration of thumb animation, in milliseconds.
|
void |
setCanFocus(java.lang.Boolean canFocus)
Indicates whether keyboard manipulation of the slider is allowed.
|
static void |
setDefaultProperties(Slider sliderProperties)
Class level method to set the default properties of this class.
|
void |
setFlipValues(java.lang.Boolean flipValues)
Specifies whether the value range of the slider should be flipped so that values increase as the thumb is moved down
(for a vertical slider) or to the left (for a horizontal slider).
|
void |
setHThumbStyle(java.lang.String hThumbStyle)
Optional CSS style for the thumb for a horizontally oriented slider.
|
void |
setHTrackStyle(java.lang.String hTrackStyle)
Optional CSS style for the track for a horizontally oriented slider.
|
void |
setLabelHeight(int labelHeight)
The height of the labels used to display the minimum, maximum and current values of the slider.
|
void |
setLabelSpacing(int labelSpacing)
The space around the labels used to display the minimum, maximum and current values of the slider.
|
void |
setLabelWidth(int labelWidth)
The width of the labels used to display the minimum, maximum and current values of the slider.
|
void |
setLength(int length)
Used to set slider height if vertical, slider width if horizontal.
|
com.smartgwt.logicalstructure.core.LogicalStructureObject |
setLogicalStructure(com.smartgwt.logicalstructure.widgets.SliderLogicalStructure s)
Setter implementing the
LogicalStructure interface,
which supports Eclipse's logical structure debugging facility. |
void |
setMaxValue(double maxValue)
The maximum slider value.
|
void |
setMaxValue(float maxValue)
Deprecated.
|
void |
setMaxValueLabel(java.lang.String maxValueLabel)
The text displayed in the label for the maximum value of the slider.
|
void |
setMinValue(double minValue)
The minimum slider value.
|
void |
setMinValue(float minValue)
Deprecated.
|
void |
setMinValueLabel(java.lang.String minValueLabel)
The text displayed in the label for the minimum value of the slider.
|
void |
setNumValues(java.lang.Integer numValues)
The number of discrete values represented by slider.
|
void |
setRoundPrecision(int roundPrecision)
If
roundValues is false, the slider value will be rounded to
this number of decimal places. |
void |
setRoundValues(java.lang.Boolean roundValues)
Specifies whether the slider value should be rounded to the nearest integer.
|
void |
setShowActiveTrack(java.lang.Boolean showActiveTrack)
If true, applies a separate
CSS style to the part of the
track between the minimum and current values. |
void |
setShowRange(java.lang.Boolean showRange)
Indicates whether labels for the min and max values of the slider should be displayed.
|
void |
setShowTitle(java.lang.Boolean showTitle)
Indicates whether the slider's title should be displayed.
|
void |
setShowValue(java.lang.Boolean showValue)
Indicates whether a label for the value of the slider should be displayed.
|
void |
setStepPercent(double stepPercent)
The percentage of the total slider that constitutes one discrete step.
|
void |
setStepPercent(float stepPercent)
Deprecated.
|
void |
setThumbSrc(java.lang.String thumbSrc)
The base filename for the slider thumb images.
|
void |
setThumbThickWidth(int thumbThickWidth)
The dimension of the thumb perpendicular to the slider track.
|
void |
setThumbThinWidth(int thumbThinWidth)
The dimension of the thumb parallel to the slider track.
|
void |
setTitle(java.lang.String title)
Optional display title for the slider.
|
void |
setTitleSpacing(int titleSpacing)
The space between the title and the track.
|
void |
setTrackCapSize(int trackCapSize)
The height of vertical slider start and end images, or width of horizontal slider start and end images.
|
void |
setTrackImageType(ImageStyle trackImageType)
The imageType setting for the slider track.
|
void |
setTrackSrc(java.lang.String trackSrc)
The base filename for the slider track images.
|
void |
setTrackWidth(int trackWidth)
The thickness of the track.
|
void |
setValue(double value)
The slider value.
|
void |
setValue(float value)
Deprecated.
|
void |
setVertical(java.lang.Boolean vertical)
Indicates whether this is a vertical or horizontal slider.
|
void |
setVThumbStyle(java.lang.String vThumbStyle)
Optional CSS style for the thumb for a vertically oriented slider.
|
void |
setVTrackStyle(java.lang.String vTrackStyle)
Optional CSS style for the track for a vertically oriented slider.
|
java.lang.Boolean |
valueIsChanging()
Call this method in your
Slider.valueChanged() handler
to determine whether the value change is due to an ongoing drag interaction (true) or due to a thumb-release, mouse
click, keypress, or programmatic event (false). |
addChild, addChild, addChild, addChild, addChild, addClearHandler, addClickHandler, addDoubleClickHandler, addDragMoveHandler, addDragRepositionMoveHandler, addDragRepositionStartHandler, addDragRepositionStopHandler, addDragResizeMoveHandler, addDragResizeStartHandler, addDragResizeStopHandler, addDragStartHandler, addDragStopHandler, addDropHandler, addDropMoveHandler, addDropOutHandler, addDropOverHandler, addFocusChangedHandler, addHoverHandler, addHoverHiddenHandler, addKeyDownHandler, addKeyPressHandler, addMouseDownHandler, addMouseMoveHandler, addMouseOutHandler, addMouseOverHandler, addMouseStillDownHandler, addMouseUpHandler, addMouseWheelHandler, addMovedHandler, addParentMovedHandler, addPeer, addPeer, addPeer, addPeer, addResizedHandler, addRightMouseDownHandler, addRuleContextChangedHandler, addScrolledHandler, addShowContextMenuHandler, addSnapAlignCandidate, addStyleName, addVisibilityChangedHandler, adjustForContent, animateFade, animateFade, animateFade, animateFade, animateFade, animateFade, animateFade, animateFade, animateHide, animateHide, animateHide, animateHide, animateHide, animateHide, animateHide, animateMove, animateMove, animateMove, animateMove, animateRect, animateRect, animateRect, animateRect, animateResize, animateResize, animateResize, animateResize, animateScroll, animateScroll, animateScroll, animateScroll, animateScroll, animateScroll, animateShow, animateShow, animateShow, animateShow, animateShow, animateShow, animateShow, asSGWTComponent, blur, bringToFront, clear, clearExplicitTabIndex, clickMaskUp, clickMaskUp, contains, contains, containsEvent, containsFocus, containsPoint, containsPoint, deparent, depeer, disable, enable, encloses, focus, focusAfterGroup, focusAtEnd, focusInNextTabElement, focusInPreviousTabElement, getAbsoluteLeft, getAbsoluteTop, getAccessKey, getAdaptiveHeightPriority, getAdaptiveWidthPriority, getAlwaysShowScrollbars, getAnimateAcceleration, getAnimateFadeTime, getAnimateHideAcceleration, getAnimateHideEffect, getAnimateHideTime, getAnimateMoveAcceleration, getAnimateMoveTime, getAnimateRectAcceleration, getAnimateRectTime, getAnimateResizeAcceleration, getAnimateResizeTime, getAnimateScrollAcceleration, getAnimateScrollTime, getAnimateShowAcceleration, getAnimateShowEffect, getAnimateShowTime, getAnimateTime, getAppImgDir, getAriaRole, getAutoDraw, getAutoMaskComponents, getAutoParent, getAutoShowParent, getBackgroundColor, getBackgroundImage, getBackgroundPosition, getBackgroundRepeat, getBorder, getBottom, getById, getByJSObject, getByLocalId, getCanAcceptDrop, getCanAdaptHeight, getCanAdaptWidth, getCanDrag, getCanDragReposition, getCanDragResize, getCanDragScroll, getCanDrop, getCanDropBefore, getCanHover, getCanSelectText, getCanvasAutoChild, getCanvasItem, getChildren, getChildrenResizeSnapAlign, getChildrenSnapAlign, getChildrenSnapCenterAlign, getChildrenSnapEdgeAlign, getChildrenSnapResizeToGrid, getChildrenSnapToGrid, getChildTabPosition, getClassName, getComponentMask, getComponentMaskDefaults, getContentElement, getContents, getContextMenu, getCorrectZoomOverflow, getCursor, getDataPath, getDefaultHeight, getDefaultWidth, getDestroyed, getDestroying, getDisabled, getDisabledCursor, getDisableTouchScrollingForDrag, getDoubleClickDelay, getDragAppearance, getDragIntersectStyle, getDragMaskType, getDragMaxHeight, getDragMaxWidth, getDragMinHeight, getDragMinWidth, getDragOpacity, getDragRepositionAppearance, getDragRepositionCursor, getDragResizeAppearance, getDragScrollDelay, getDragStartDistance, getDragTarget, getDragType, getDropTypes, getDropTypesAsString, getDynamicContents, getEdgeBackgroundColor, getEdgeCenterBackgroundColor, getEdgeImage, getEdgeMarginSize, getEdgeOffset, getEdgeOpacity, getEdgeShowCenter, getEdgeSize, getEditNode, getEditProxy, getEditProxyConstructor, getElement, getElement, getEnableWhen, getEndLine, getEventEdge, getEventEdge, getExtraSpace, getFacetId, getFormItemAutoChild, getFullDataPath, getGroupBorderCSS, getGroupLabelBackgroundColor, getGroupLabelStyleName, getGroupTitle, getHeight, getHeightAsString, getHideUsingDisplayNone, getHoverAlign, getHoverAutoDestroy, getHoverAutoFitMaxWidth, getHoverAutoFitMaxWidthAsString, getHoverAutoFitWidth, getHoverComponent, getHoverDelay, getHoverHeight, getHoverHTML, getHoverMoveWithMouse, getHoverOpacity, getHoverStyle, getHoverVAlign, getHoverWidth, getHoverWrap, getHSnapOrigin, getHSnapOrigin, getHSnapPosition, getHSnapPosition, getHtmlElement, getHtmlPosition, getImage, getImgURL, getImgURL, getInnerContentHeight, getInnerContentWidth, getInnerHeight, getInnerWidth, getIsGroup, getIsPrinting, getIsRuleScope, getIsSnapAlignCandidate, getKeepInParentRect, getLayoutAlign, getLeavePageSpace, getLeft, getLeftAsString, getLocalId, getLocateChildrenBy, getLocateChildrenType, getLocatePeersBy, getLocatePeersType, getMargin, getMasterCanvas, getMasterElement, getMatchElement, getMaxHeight, getMaxWidth, getMaxZoomOverflowError, getMenuConstructor, getMinHeight, getMinNonEdgeSize, getMinWidth, getMomentumScrollMinSpeed, getMouseStillDownDelay, getMouseStillDownInitialDelay, getNextZIndex, getNoDoubleClicks, getNoDropCursor, getOffsetHeight, getOffsetWidth, getOffsetX, getOffsetY, getOpacity, getOuterElement, getOverflow, getPadding, getPageBottom, getPageLeft, getPageRect, getPageRight, getPageTop, getPaletteDefaults, getPanelContainer, getParentCanvas, getParentElement, getPeers, getPercentBox, getPercentSource, getPosition, getPrefix, getPrintChildrenAbsolutelyPositioned, getPrintHTML, getPrintHTML, getPrompt, getProportionalResizeModifiers, getProportionalResizing, getRect, getRedrawOnResize, getResizeBarTarget, getResizeFrom, getRight, getRuleContext, getRuleContext, getRuleScope, getScrollbarSize, getScrollBottom, getScrollHeight, getScrollLeft, getScrollRight, getScrollTop, getScrollWidth, getShadowColor, getShadowDepth, getShadowHOffset, getShadowImage, getShadowOffset, getShadowSoftness, getShadowSpread, getShadowVOffset, getShouldPrint, getShowCustomScrollbars, getShowDragShadow, getShowEdges, getShowHover, getShowHoverComponents, getShowResizeBar, getShowShadow, getShowSnapGrid, getShrinkElementOnHide, getSizeMayChangeOnRedraw, getSkinImgDir, getSnapAlignCandidates, getSnapAlignCenterLineStyle, getSnapAlignEdgeLineStyle, getSnapAxis, getSnapEdge, getSnapHDirection, getSnapHGap, getSnapOffsetLeft, getSnapOffsetTop, getSnapOnDrop, getSnapPosition, getSnapPosition, getSnapResizeToAlign, getSnapResizeToGrid, getSnapTo, getSnapToAlign, getSnapToCenterAlign, getSnapToEdgeAlign, getSnapToGrid, getSnapVDirection, getSnapVGap, getStartLine, getStyleName, getTabIndex, getTestInstance, getTooltip, getTop, getTopAsString, getTopElement, getUpdateTabPositionOnDraw, getUpdateTabPositionOnReparent, getUseBackMask, getUseCSSShadow, getUseDragMask, getUseImageForSVG, getUseNativeDrag, getUseOpacityFilter, getUseTouchScrolling, getValuesManager, getValuesManagerAsString, getViewportHeight, getViewportWidth, getVisibility, getVisibleHeight, getVisibleWhen, getVisibleWidth, getVSnapOrigin, getVSnapOrigin, getVSnapPosition, getVSnapPosition, getWidth, getWidthAsString, getZIndex, getZIndex, handleHover, hide, hideClickMask, hideClickMask, hideComponentMask, hideComponentMask, hideContextMenu, imgHTML, imgHTML, imgHTML, intersects, isDirty, isDisabled, isFocused, isVisible, keyUp, layoutChildren, linkHTML, linkHTML, linkHTML, linkHTML, linkHTML, linkHTML, markForDestroy, markForRedraw, markForRedraw, moveAbove, moveBelow, moveBy, moveTo, onAttach, onDetach, onInit, pageScrollDown, pageScrollUp, parentResized, placeNear, placeNear, placeNear, printComponents, provideRuleContext, provideRuleContext, redraw, redraw, removeChild, removeChild, removePeer, removePeer, removeSnapAlignCandidate, resizeAutoChildAttributes, resizeBy, resizeControls, resizeFonts, resizeFonts, resizeFonts, resizeIcons, resizeTo, resizeTo, revealChild, revealChild, scrollBy, scrollByPercent, scrollTo, scrollTo, scrollTo, scrollToBottom, scrollToLeft, scrollToPercent, scrollToRight, scrollToTop, sendToBack, setAccessKey, setAdaptHeightByCustomizer, setAdaptiveHeightPriority, setAdaptiveWidthPriority, setAdaptWidthByCustomizer, setAlign, setAllowExternalFilters, setAlwaysShowScrollbars, setAnimateAcceleration, setAnimateFadeTime, setAnimateHideAcceleration, setAnimateHideEffect, setAnimateHideTime, setAnimateMoveAcceleration, setAnimateMoveTime, setAnimateRectAcceleration, setAnimateRectTime, setAnimateResizeAcceleration, setAnimateResizeTime, setAnimateScrollAcceleration, setAnimateScrollTime, setAnimateShowAcceleration, setAnimateShowEffect, setAnimateShowTime, setAnimateTime, setAppImgDir, setAriaRole, setAriaState, setAutoChildConstructor, setAutoChildProperties, setAutoChildProperties, setAutoChildProperties, setAutoChildProperties, setAutoChildVisibility, setAutoDraw, setAutoHeight, setAutoMaskComponents, setAutoParent, setAutoResizeAutoChildAttributes, setAutoResizeIcons, setAutoShowParent, setAutoWidth, setBackgroundColor, setBackgroundImage, setBackgroundPosition, setBackgroundRepeat, setBorder, setBottom, setCanAcceptDrop, setCanAdaptHeight, setCanAdaptWidth, setCanDrag, setCanDragReposition, setCanDragResize, setCanDragScroll, setCanDrop, setCanDropBefore, setCanHover, setCanSelectText, setChildren, setChildrenResizeSnapAlign, setChildrenSnapAlign, setChildrenSnapCenterAlign, setChildrenSnapEdgeAlign, setChildrenSnapResizeToGrid, setChildrenSnapToGrid, setComponentMaskDefaults, setContents, setContextMenu, setCorrectZoomOverflow, setCursor, setDataPath, setDefaultHeight, setDefaultPageSpace, setDefaultProperties, setDefaultWidth, setDisabled, setDisabledCursor, setDisableTouchScrollingForDrag, setDoubleClickDelay, setDragAppearance, setDragIntersectStyle, setDragMaskType, setDragMaxHeight, setDragMaxWidth, setDragMinHeight, setDragMinWidth, setDragOpacity, setDragRepositionAppearance, setDragRepositionCursor, setDragResizeAppearance, setDragScrollDelay, setDragStartDistance, setDragTarget, setDragType, setDropTypes, setDropTypes, setDynamicContents, setEdgeBackgroundColor, setEdgeCenterBackgroundColor, setEdgeImage, setEdgeMarginSize, setEdgeOffset, setEdgeOpacity, setEdgeShowCenter, setEdgeSize, setEditMode, setEditMode, setEditMode, setEditProxyConstructor, setElement, setEnableWhen, setEndLine, setExtraSpace, setFacetId, setGroupBorderCSS, setGroupLabelBackgroundColor, setGroupLabelStyleName, setGroupTitle, setHeight, setHeight, setHeight, setHeight100, setHideUsingDisplayNone, setHoverAlign, setHoverAutoDestroy, setHoverAutoFitMaxWidth, setHoverAutoFitMaxWidth, setHoverAutoFitWidth, setHoverDelay, setHoverHeight, setHoverMoveWithMouse, setHoverOpacity, setHoverStyle, setHoverVAlign, setHoverWidth, setHoverWrap, setHtmlElement, setHtmlPosition, setImage, setImage, setInitHandler, setIsGroup, setIsRuleScope, setIsSnapAlignCandidate, setKeepInParentRect, setKeepInParentRect, setKeepInParentRect, setLayoutAlign, setLayoutAlign, setLeavePageSpace, setLeft, setLeft, setLocateChildrenBy, setLocateChildrenType, setLocatePeersBy, setLocatePeersType, setLogicalStructure, setMargin, setMatchElement, setMaxHeight, setMaxWidth, setMaxZoomOverflowError, setMenuConstructor, setMinHeight, setMinNonEdgeSize, setMinWidth, setMomentumScrollMinSpeed, setMouseStillDownDelay, setMouseStillDownInitialDelay, setNeverUseFilters, setNoDoubleClicks, setNoDropCursor, setOpacity, setOverflow, setPadding, setPageLeft, setPageTop, setPanelContainer, setParentCanvas, setParentElement, setPeers, setPercentBox, setPercentSource, setPosition, setPrefix, setPrintChildrenAbsolutelyPositioned, setPrompt, setProportionalResizeModifiers, setProportionalResizing, setRect, setRect, setRedrawOnResize, setRelativeTabPosition, setResizeBarTarget, setResizeFrom, setResizeFrom, setRight, setRuleScope, setScrollbarConstructor, setScrollbarSize, setShadowColor, setShadowDepth, setShadowHOffset, setShadowImage, setShadowOffset, setShadowSoftness, setShadowSpread, setShadowVOffset, setShouldPrint, setShowCustomScrollbars, setShowDragShadow, setShowEdges, setShowHover, setShowHoverComponents, setShowResizeBar, setShowShadow, setShowSnapGrid, setShrinkElementOnHide, setSizeMayChangeOnRedraw, setSkinImgDir, setSmoothFade, setSnapAlignCandidates, setSnapAlignCenterLineStyle, setSnapAlignEdgeLineStyle, setSnapAxis, setSnapEdge, setSnapHDirection, setSnapHGap, setSnapOffsetLeft, setSnapOffsetTop, setSnapOnDrop, setSnapResizeToAlign, setSnapResizeToGrid, setSnapTo, setSnapToAlign, setSnapToCenterAlign, setSnapToEdgeAlign, setSnapToGrid, setSnapVDirection, setSnapVGap, setStartLine, setStyleName, setTabIndex, setTooltip, setTop, setTop, setUpdateTabPositionOnDraw, setUpdateTabPositionOnReparent, setUseBackMask, setUseCSSShadow, setUseDragMask, setUseImageForSVG, setUseNativeDrag, setUseOpacityFilter, setUseTouchScrolling, setValuesManager, setValuesManager, setVisibility, setVisible, setVisibleWhen, setWidth, setWidth, setWidth, setWidth100, setZIndex, shouldDragScroll, show, showClickMask, showComponentMask, showComponentMask, showNextTo, showNextTo, showNextTo, showNextTo, showPrintPreview, showPrintPreview, showPrintPreview, showPrintPreview, showRecursively, updateChildTabPosition, updateChildTabPositions, updateEditNode, updateHover, updateHover, updateShadow, updateTabPositionForDraw, visibleAtPoint, willAcceptDrop
addDrawHandler, applyFactoryProperties, completeCreation, destroy, doAddHandler, doInit, doOnRender, draw, equals, error, errorIfNotCreated, getAttribute, getAttributeAsBoolean, getAttributeAsDate, getAttributeAsDateArray, getAttributeAsDouble, getAttributeAsElement, getAttributeAsFloat, getAttributeAsFloatArray, getAttributeAsInt, getAttributeAsIntArray, getAttributeAsJavaScriptObject, getAttributeAsMap, getAttributeAsRecord, getAttributeAsString, getAttributeAsStringArray, getConfig, getDOM, getHandlerCount, getID, getInnerHTML, getJsObj, getOrCreateJsObj, getRef, getScClassName, hasAutoAssignedID, hashCode, initNativeObject, internalSetID, internalSetID, isConfigOnly, isCreated, isDrawn, isFactoryCreated, onBind, onDestroy, onDraw, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setConfig, setConfigOnly, setDefaultProperties, setDragTracker, setFactoryCreated, setID, setJavaScriptObject, setLogicalStructure, setLogicalStructure, setNullProperty, setPosition, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setScClassName, toString
addAttachHandler, addBitlessDomHandler, addDomHandler, addHandler, asWidget, asWidgetOrNull, createHandlerManager, delegateEvent, doAttachChildren, doDetachChildren, fireEvent, getLayoutData, getParent, isAttached, isOrWasAttached, onBrowserEvent, onLoad, onUnload, removeFromParent, setLayoutData, sinkEvents, unsinkEvents
addStyleDependentName, ensureDebugId, ensureDebugId, ensureDebugId, getStyleElement, getStyleName, getStylePrimaryName, getStylePrimaryName, isVisible, onEnsureDebugId, removeStyleDependentName, removeStyleName, resolvePotentialElement, setElement, setPixelSize, setSize, setStyleDependentName, setStyleName, setStyleName, setStyleName, setStylePrimaryName, setStylePrimaryName, setVisible, sinkBitlessEvent
public Slider()
public Slider(com.google.gwt.core.client.JavaScriptObject jsObj)
public Slider(java.lang.String title)
public static Slider getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj)
public static void changeAutoChildDefaults(java.lang.String autoChildName, Canvas defaults)
autoChildName
.autoChildName
- name of an AutoChild to customize the defaults for.defaults
- Canvas defaults to apply. These defaults override any existing properties
without destroying or wiping out non-overridden properties. For usage tips on this
param, see SGWTProperties
.AutoChildUsage
public static void changeAutoChildDefaults(java.lang.String autoChildName, FormItem defaults)
autoChildName
.autoChildName
- name of an AutoChild to customize the defaults for.defaults
- FormItem defaults to apply. These defaults override any existing properties
without destroying or wiping out non-overridden properties. For usage tips on this
param, see SGWTProperties
.AutoChildUsage
protected com.google.gwt.core.client.JavaScriptObject create()
public void setActiveTrackStyle(java.lang.String activeTrackStyle) throws java.lang.IllegalStateException
Will have the suffix "Disabled" added when the slider is disabled.
activeTrackStyle
- New activeTrackStyle value. Default value is nulljava.lang.IllegalStateException
- this property cannot be changed after the component has been createdCSSStyleName
public java.lang.String getActiveTrackStyle()
Will have the suffix "Disabled" added when the slider is disabled.
CSSStyleName
public void setAnimateThumb(java.lang.Boolean animateThumb)
animateThumb
- New animateThumb value. Default value is truepublic java.lang.Boolean getAnimateThumb()
public void setAnimateThumbInit(java.lang.Boolean animateThumbInit)
animateThumbInit
- New animateThumbInit value. Default value is falsepublic java.lang.Boolean getAnimateThumbInit()
public void setAnimateThumbTime(int animateThumbTime)
animateThumbTime
- New animateThumbTime value. Default value is 250public int getAnimateThumbTime()
public void setCanFocus(java.lang.Boolean canFocus)
setCanFocus
in class Canvas
canFocus
- New canFocus value. Default value is trueFocus overview and related methods
,
Focus & Tabbing Examplepublic java.lang.Boolean getCanFocus()
getCanFocus
in class Canvas
Focus overview and related methods
,
Focus & Tabbing Examplepublic void setFlipValues(java.lang.Boolean flipValues)
flipValues
property of the sliderflipValues
- flip slider values?. Default value is falsepublic java.lang.Boolean getFlipValues()
public void setHThumbStyle(java.lang.String hThumbStyle) throws java.lang.IllegalStateException
Will have the suffix "down" added when the mouse is down on the thumb, and "Disabled" added when the slider is disabled.
hThumbStyle
- New hThumbStyle value. Default value is nulljava.lang.IllegalStateException
- this property cannot be changed after the component has been createdCSSStyleName
public java.lang.String getHThumbStyle()
Will have the suffix "down" added when the mouse is down on the thumb, and "Disabled" added when the slider is disabled.
CSSStyleName
public void setHTrackStyle(java.lang.String hTrackStyle) throws java.lang.IllegalStateException
Will have the suffix "Disabled" added when the slider is disabled.
hTrackStyle
- New hTrackStyle value. Default value is nulljava.lang.IllegalStateException
- this property cannot be changed after the component has been createdCSSStyleName
public java.lang.String getHTrackStyle()
Will have the suffix "Disabled" added when the slider is disabled.
CSSStyleName
public void setLabelHeight(int labelHeight)
labelHeight
property of the sliderlabelHeight
- new label height. Default value is 20public int getLabelHeight()
public void setLabelSpacing(int labelSpacing)
labelSpacing
property of the sliderlabelSpacing
- new label spacing. Default value is 5public int getLabelSpacing()
public void setLabelWidth(int labelWidth)
labelWidth
property of the sliderlabelWidth
- new label width. Default value is 50public int getLabelWidth()
public void setLength(int length)
length
- New length value. Default value is 200public int getLength()
public void setMaxValue(float maxValue)
GwtFloatVsDouble
maximum value
of the slidermaxValue
- the new maximum value Note:Use Doubles rather Floats when manipulating decimal values. See GwtFloatVsDouble
for details. Default value is 100setFlipValues(java.lang.Boolean)
,
Slider Examplepublic float getMaxValue()
GwtFloatVsDouble
getFlipValues()
,
Slider Examplepublic void setMaxValue(double maxValue)
maximum value
of the slidermaxValue
- the new maximum value Note:Use Doubles rather Floats when manipulating decimal values. See GwtFloatVsDouble
for details. Default value is 100setFlipValues(java.lang.Boolean)
,
Slider Examplepublic double getMaxValueAsDouble()
getFlipValues()
,
Slider Examplepublic void setMaxValueLabel(java.lang.String maxValueLabel)
maxValueLabel
property of the slidermaxValueLabel
- new label text. Default value is nullsetShowRange(java.lang.Boolean)
,
setMaxValue(float)
public java.lang.String getMaxValueLabel()
getShowRange()
,
getMaxValue()
public void setMinValue(float minValue)
GwtFloatVsDouble
minimum value
of the sliderminValue
- the new minimum value Note:Use Doubles rather Floats when manipulating decimal values. See GwtFloatVsDouble
for details. Default value is 1setFlipValues(java.lang.Boolean)
,
Slider Examplepublic float getMinValue()
GwtFloatVsDouble
getFlipValues()
,
Slider Examplepublic void setMinValue(double minValue)
minimum value
of the sliderminValue
- the new minimum value Note:Use Doubles rather Floats when manipulating decimal values. See GwtFloatVsDouble
for details. Default value is 1setFlipValues(java.lang.Boolean)
,
Slider Examplepublic double getMinValueAsDouble()
getFlipValues()
,
Slider Examplepublic void setMinValueLabel(java.lang.String minValueLabel)
minValueLabel
- New minValueLabel value. Default value is nullsetShowRange(java.lang.Boolean)
,
setMinValue(float)
public java.lang.String getMinValueLabel()
getShowRange()
,
getMinValue()
public void setNumValues(java.lang.Integer numValues)
minValue
and maxValue
) will be divided into this many steps. As the thumb is moved along the
track it will only select these values and appear to jump between the steps.
number of values
for the slidernumValues
- the new number of values Note:Use Doubles rather Floats when manipulating decimal values. See GwtFloatVsDouble
for details. Default value is nullpublic java.lang.Integer getNumValues()
minValue
and maxValue
) will be divided into this many steps. As the thumb is moved along the
track it will only select these values and appear to jump between the steps.public void setRoundPrecision(int roundPrecision)
roundValues
is false, the slider value will be rounded to
this number of decimal places. If set to null the value will not be rounded
roundPrecision
property of the sliderroundPrecision
- new round precision. Default value is 1public int getRoundPrecision()
roundValues
is false, the slider value will be rounded to
this number of decimal places. If set to null the value will not be roundedpublic void setRoundValues(java.lang.Boolean roundValues)
roundPrecision
.
roundValues
property of the sliderroundValues
- round slider values?. Default value is truepublic java.lang.Boolean getRoundValues()
roundPrecision
.public void setShowActiveTrack(java.lang.Boolean showActiveTrack)
CSS style
to the part of the
track between the minimum and current values.showActiveTrack
- New showActiveTrack value. Default value is nullpublic java.lang.Boolean getShowActiveTrack()
CSS style
to the part of the
track between the minimum and current values.public void setShowRange(java.lang.Boolean showRange)
showRange
property of the slidershowRange
- show the slider range?. Default value is truesetMinValueLabel(java.lang.String)
,
setMaxValueLabel(java.lang.String)
public java.lang.Boolean getShowRange()
getMinValueLabel()
,
getMaxValueLabel()
public void setShowTitle(java.lang.Boolean showTitle)
showTitle
property of the slidershowTitle
- show the slider title?. Default value is truesetTitle(java.lang.String)
public java.lang.Boolean getShowTitle()
getTitle()
public void setShowValue(java.lang.Boolean showValue)
showValue
property of the slidershowValue
- show the slider value?. Default value is truesetValue(float)
public java.lang.Boolean getShowValue()
getValue()
public void setStepPercent(float stepPercent)
GwtFloatVsDouble
stepPercent
property of the sliderstepPercent
- new slider step percent. Default value is 5public float getStepPercent()
GwtFloatVsDouble
public void setStepPercent(double stepPercent)
stepPercent
property of the sliderstepPercent
- new slider step percent. Default value is 5public double getStepPercentAsDouble()
public void setThumbSrc(java.lang.String thumbSrc)
{baseName}.{extension}
h{baseName}.{extension}
:
default enabled appearance. h{baseName}_down.{extension}
: appearance when the slider is enabled and
the thumb is clicked. h{baseName}_Disabled.{extension}
: appearance when the slider is disabled.
v{baseName}.{extension}
: default enabled appearance.
v{baseName}_down.{extension}
: appearance when the slider is enabled and the thumb is clicked.
v{baseName}_Disabled.{extension}
: appearance when the slider is disabled. thumbSrc
property of the sliderthumbSrc
- new thumbSrc. Default value is "thumb.gif"public java.lang.String getThumbSrc()
{baseName}.{extension}
h{baseName}.{extension}
:
default enabled appearance. h{baseName}_down.{extension}
: appearance when the slider is enabled and
the thumb is clicked. h{baseName}_Disabled.{extension}
: appearance when the slider is disabled.
v{baseName}.{extension}
: default enabled appearance.
v{baseName}_down.{extension}
: appearance when the slider is enabled and the thumb is clicked.
v{baseName}_Disabled.{extension}
: appearance when the slider is disabled. public void setThumbThickWidth(int thumbThickWidth)
thumbThickWidth
property of the sliderthumbThickWidth
- new thumbThickWidth. Default value is 23public int getThumbThickWidth()
public void setThumbThinWidth(int thumbThinWidth)
thumbThinWidth
property of the sliderthumbThinWidth
- new thumbThinWidth. Default value is 17public int getThumbThinWidth()
public void setTitle(java.lang.String title)
title
of the slidersetTitle
in class Canvas
title
- new title for the slider. Default value is "Set Value"setShowTitle(java.lang.Boolean)
public java.lang.String getTitle()
getTitle
in class Canvas
getShowTitle()
public void setTitleSpacing(int titleSpacing)
titleSpacing
- New titleSpacing value. Default value is 5public int getTitleSpacing()
public void setTrackCapSize(int trackCapSize)
trackCapSize
property of the slidertrackCapSize
- new trackCapSize. Default value is 6public int getTrackCapSize()
public void setTrackImageType(ImageStyle trackImageType)
trackImageType
property of the slidertrackImageType
- new trackImageType. Default value is "stretch"ImageStyle
,
StretchImg.setImageType(com.smartgwt.client.types.ImageStyle)
public ImageStyle getTrackImageType()
ImageStyle
,
StretchImg.getImageType()
public void setTrackSrc(java.lang.String trackSrc)
{baseName}.{extension}
h{baseName}_start.{extension}
:
start (left edge) of the track for a slider that is enabled. h{baseName}_stretch.{extension}
: the
track for an enabled slider; this may be centered, tiled, or stretched.
h{baseName}_end.{extension}
: end (right edge) of the track for a slider that is enabled.
h{baseName}_Disabled_start.{extension}
: start (left edge) of the track for a slider that is
disabled. h{baseName}_Disabled_stretch.{extension}
: the track for a disabled slider; this may be
centered, tiled, or stretched. h{baseName}_Disabled_end.{extension}
: end (right edge) of the track for
a slider that is disabled. v{baseName}_start.{extension}
: start
(bottom edge) of the track for a slider that is enabled. v{baseName}_stretch.{extension}
: the
track for an enabled slider; this may be centered, tiled, or stretched.
v{baseName}_end.{extension}
: end (top edge) of the track for a slider that is enabled.
v{baseName}_Disabled_start.{extension}
: start (bottom edge) of the track for a slider that is
disabled. v{baseName}_Disabled_stretch.{extension}
: the track for a disabled slider; this may be
centered, tiled, or stretched. v{baseName}_end.{extension}
: end (top edge) of the track for a slider
that is disabled. trackSrc
property of the slidertrackSrc
- new trackSrc. Default value is "track.gif"setTrackImageType(com.smartgwt.client.types.ImageStyle)
public java.lang.String getTrackSrc()
{baseName}.{extension}
h{baseName}_start.{extension}
:
start (left edge) of the track for a slider that is enabled. h{baseName}_stretch.{extension}
: the
track for an enabled slider; this may be centered, tiled, or stretched.
h{baseName}_end.{extension}
: end (right edge) of the track for a slider that is enabled.
h{baseName}_Disabled_start.{extension}
: start (left edge) of the track for a slider that is
disabled. h{baseName}_Disabled_stretch.{extension}
: the track for a disabled slider; this may be
centered, tiled, or stretched. h{baseName}_Disabled_end.{extension}
: end (right edge) of the track for
a slider that is disabled. v{baseName}_start.{extension}
: start
(bottom edge) of the track for a slider that is enabled. v{baseName}_stretch.{extension}
: the
track for an enabled slider; this may be centered, tiled, or stretched.
v{baseName}_end.{extension}
: end (top edge) of the track for a slider that is enabled.
v{baseName}_Disabled_start.{extension}
: start (bottom edge) of the track for a slider that is
disabled. v{baseName}_Disabled_stretch.{extension}
: the track for a disabled slider; this may be
centered, tiled, or stretched. v{baseName}_end.{extension}
: end (top edge) of the track for a slider
that is disabled. getTrackImageType()
public void setTrackWidth(int trackWidth)
trackWidth
property of the slidertrackWidth
- new trackWidth. Default value is 7public int getTrackWidth()
public void setValue(float value)
GwtFloatVsDouble
value
- the new value Note:Use Doubles rather Floats when manipulating decimal values. See GwtFloatVsDouble
for details. Default value is 1setMinValue(float)
,
setMaxValue(float)
,
setFlipValues(java.lang.Boolean)
,
setShowValue(java.lang.Boolean)
public float getValue()
GwtFloatVsDouble
getMinValue()
,
getMaxValue()
,
getFlipValues()
,
getShowValue()
public void setValue(double value)
value
- the new value Note:Use Doubles rather Floats when manipulating decimal values. See GwtFloatVsDouble
for details. Default value is 1setMinValue(float)
,
setMaxValue(float)
,
setFlipValues(java.lang.Boolean)
,
setShowValue(java.lang.Boolean)
public double getValueAsDouble()
getMinValue()
,
getMaxValue()
,
getFlipValues()
,
getShowValue()
public void setVertical(java.lang.Boolean vertical)
vertical
property of the slidervertical
- is the slider vertical. Default value is truepublic java.lang.Boolean getVertical()
public void setVThumbStyle(java.lang.String vThumbStyle) throws java.lang.IllegalStateException
hThumbStyle
for state suffixes.vThumbStyle
- New vThumbStyle value. Default value is nulljava.lang.IllegalStateException
- this property cannot be changed after the component has been createdCSSStyleName
public java.lang.String getVThumbStyle()
hThumbStyle
for state suffixes.CSSStyleName
public void setVTrackStyle(java.lang.String vTrackStyle) throws java.lang.IllegalStateException
Will have the suffix "Disabled" added when the slider is disabled.
vTrackStyle
- New vTrackStyle value. Default value is nulljava.lang.IllegalStateException
- this property cannot be changed after the component has been createdCSSStyleName
public java.lang.String getVTrackStyle()
Will have the suffix "Disabled" added when the slider is disabled.
CSSStyleName
public com.google.gwt.event.shared.HandlerRegistration addValueChangedHandler(ValueChangedHandler handler)
This method is called when the slider value changes. This occurs when the setValue()
method is called, or when the slider is moved. Observe this
method to be notified when the slider value changes.
addValueChangedHandler
in interface HasValueChangedHandlers
handler
- the valueChanged handlerHandlerRegistration
used to remove this handlerpublic java.lang.Boolean valueIsChanging()
Slider.valueChanged()
handler
to determine whether the value change is due to an ongoing drag interaction (true) or due to a thumb-release, mouse
click, keypress, or programmatic event (false). You may choose to execute temporary or partial updates while the slider
thumb is dragged, and final updates or persistence of the value in response to the other events.public static void setDefaultProperties(Slider sliderProperties)
Note: This method is intended for setting default attributes only and will affect all instances of the underlying class (including those automatically generated in JavaScript). This method should not be used to apply standard EventHandlers or override methods for a class - use a custom subclass instead. Calling this method after instances have been created can result in undefined behavior, since it bypasses any setters and a class instance may have already examined a particular property and not be expecting any changes through this route.
sliderProperties
- properties that should be used as new defaults when instances of this class are createdSGWTProperties
public com.smartgwt.logicalstructure.core.LogicalStructureObject setLogicalStructure(com.smartgwt.logicalstructure.widgets.SliderLogicalStructure s)
LogicalStructure
interface,
which supports Eclipse's logical structure debugging facility.public com.smartgwt.logicalstructure.core.LogicalStructureObject getLogicalStructure()
LogicalStructure
interface,
which supports Eclipse's logical structure debugging facility.getLogicalStructure
in interface LogicalStructure
getLogicalStructure
in class Canvas