zul.inp
Class Slider

java.lang.Object
  extended by zk.Object
      extended by zk.Widget
          extended by zul.Widget
              extended by zul.inp.Slider

public class Slider
extends Widget

A slider.

Default Widget.getZclass(): z-slider.


Field Summary
 
Fields inherited from class zk.Widget
$weave, auDelay, autag, bindLevel, className, desktop, effects_, firstChild, id, insertingBefore_, inServer, lastChild, nChildren, nextSibling, parent, previousSibling, uuid, widgetName
 
Fields inherited from class zk.Object
$class, $oid
 
Method Summary
 double getCurpos()
          Returns the current position of the slider.
 double getMaxpos()
          Returns the maximum position of the slider.
 double getMinpos()
          Returns the minimum position of the slider.
 String getMode()
          Returns the current mode of slider One of "integer", "decimal".
 String getName()
          Returns the name of this component.
 String getOrient()
          Returns the orient.
 void getPageIncrement()
          Returns the amount that the value of getCurpos() changes by when the tray of the scroll bar is clicked.
 String getSlidingtext()
          Returns the sliding text.
 double getStep()
          Returns the step of slider
 boolean inScaleMold()
          Return whether this widget in scale mold
 boolean inSphereMold()
          Return whether this widget in sphere mold
 boolean isDecimal()
          Returns whether it is a decimal slider.
 boolean isVertical()
          Returns whether it is a vertical slider.
 void setCurpos(double curpos)
          Sets the current position of the slider.
 void setMaxpos(double maxpos)
          Sets the maximum position of the slider.
 void setMinpos(double minpos)
          Sets the minimum position of the slider.
 void setMode(String name)
          Sets the mode to integer or decimal.
 void setName(String name)
          Sets the name of this component.
 void setOrient(String orient)
          Sets the orient.
 void setPageIncrement(double pginc)
          Sets the amount that the value of getCurpos() changes by when the tray of the scroll bar is clicked.
 void setSlidingtext(String slidingtext)
          Sets the sliding text.
 void setStep(double step)
          Sets the step of slider Default: -1 (means it will scroll to the position the user clicks).
 
Methods inherited from class zul.Widget
afterKeyDown_, beforeCtrlKeys_, getContext, getCtrlKeys, getOpenTooltip, getPopup, getTooltip, setContext, setContext, setCtrlKeys, setPopup, setPopup, setTooltip, setTooltip
 
Methods inherited from class zk.Widget
$, $f, $f, $f, $init, $n, $n, $o, $s, afterAnima_, afterParentChanged_, appendChild, appendChild, beforeParentChanged_, beforeSendAU_, bind_, bind, bindChildren_, bindDoubleTap_, bindSwipe_, bindTapHold_, canActivate, cleanDrag_, clear, clearCache, cloneDrag_, deferRedraw_, deferRedrawHTML_, detach, doBlur_, doClick_, doDoubleClick_, doFocus_, doKeyDown_, doKeyPress_, doKeyUp_, domAttrs_, domClass_, domListen_, doMouseDown_, doMouseEnter_, doMouseLeave_, doMouseMove_, doMouseOut_, doMouseOver_, doMouseUp_, domStyle_, domTextStyleAttr_, domTooltiptext_, domUnlisten_, doResizeScroll_, doRightClick_, doSelect_, doSwipe_, doTooltipOut_, doTooltipOver_, dropEffect_, extraBind_, fire, fireX, focus_, focus, forcerender, fromPageCoord, get, getAction, getCaveNode, getChildAt, getChildIndex, getClass, getDraggable, getDragMessage_, getDragNode, getDragOptions_, getDrop_, getDroppable, getElementsById, getElementsByName, getFirstNode_, getFloatZIndex_, getHeight, getHflex, getId, getLeft, getMold, getOldWidget_, getPage, getRenderdefer, getSclass, getScrollLeft, getScrollTop, getStyle, getTextNode, getTooltiptext, getTop, getTopWidget, getVflex, getWidth, getZclass, getZIndex, hide, ignoreDescendantFloatUp_, ignoreDrag_, initDrag_, insertBefore, insertChildHTML_, isAutoId, isBinding, isFloating_, isListen, isRealElement, isRealVisible, isRealVisible, isVisible, isVisible, isWatchable_, listen, listenOnFitSize_, mimicMouseDown_, newInstance, nextUuid, onAfterSize, onChildAdded_, onChildRemoved_, onChildRenderDefer_, onChildReplaced_, onChildVisible_, onDrop_, redraw, redrawHTML_, register, removeChild, removeChild, removeChildHTML_, removeHTML_, replaceCavedChildren_, replaceChildHTML_, replaceHTML, replaceWidget, rerender, rerender, scrollIntoView, sendAU_, set, set, setAction, setChildren, setDomVisible_, setDraggable, setDroppable, setFloating_, setFloatZIndex_, setHeight, setHflex, setId, setLeft, setListener, setListener, setListeners, setMold, setRenderdefer, setSclass, setScrollLeft, setScrollTop, setStyle, setTooltiptext, setTop, setTopmost, setVflex, setVisible, setWidth, setZclass, setZIndex, shallChildROD_, shallIgnoreClick_, show, smartUpdate, unbind_, unbind, unbindChildren_, unbindDoubleTap_, unbindSwipe_, unbindTapHold_, uncloneDrag_, unlisten, unlistenOnFitSize_, updateDomClass_, updateDomStyle_, uuid, zsync
 
Methods inherited from class zk.Object
$init, $instanceof, $super, $super, $supers, $supers, afterInit, isAssignableFrom, isInstance, proxy
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

setOrient

public void setOrient(String orient)
Sets the orient.

Default : "horizontal"

Parameters:
orient - either "horizontal" or "vertical".

getOrient

public String getOrient()
Returns the orient.

Default: "horizontal".

Returns:
String

setCurpos

public void setCurpos(double curpos)
Sets the current position of the slider. If negative, 0 is assumed. If larger than getMaxpos(), getMaxpos() is assumed.

Parameters:
curpos -

getCurpos

public double getCurpos()
Returns the current position of the slider.

Default: 0.

Returns:
double

setMinpos

public void setMinpos(double minpos)
Sets the minimum position of the slider.

Parameters:
minpos - (since 7.0.1)

getMinpos

public double getMinpos()
Returns the minimum position of the slider.

Default: 0.

Returns:
double (since 7.0.1)

setMaxpos

public void setMaxpos(double maxpos)
Sets the maximum position of the slider.

Parameters:
maxpos - (since 7.0.1)

getMaxpos

public double getMaxpos()
Returns the maximum position of the slider.

Default: 100.

Returns:
double (since 7.0.1)

setSlidingtext

public void setSlidingtext(String slidingtext)
Sets the sliding text. The syntax "{0}" will be replaced with the position at client side.

Parameters:
slidingtext -

getSlidingtext

public String getSlidingtext()
Returns the sliding text.

Default : "{0}"

Returns:
String

setPageIncrement

public void setPageIncrement(double pginc)
Sets the amount that the value of getCurpos() changes by when the tray of the scroll bar is clicked.

Default: -1 (means it will scroll to the position the user clicks).

Parameters:
pginc - the page increment. If negative, slider will scroll (since 7.0.1) to the position that user clicks.

getPageIncrement

public void getPageIncrement()
Returns the amount that the value of getCurpos() changes by when the tray of the scroll bar is clicked.

Default: -1 (means it will scroll to the position the user clicks).


setStep

public void setStep(double step)
Sets the step of slider

Default: -1 (means it will scroll to the position the user clicks). Note: In "decimal" mode, the fraction part only contains one digit if step is -1.

Parameters:
step -
Since:
7.0.1

getStep

public double getStep()
Returns the step of slider

Returns:
double
Since:
7.0.1

setName

public void setName(String name)
Sets the name of this component.

The name is used only to work with "legacy" Web application that handles user's request by servlets. It works only with HTTP/HTML-based browsers. It doesn't work with other kind of clients.

Don't use this method if your application is purely based on ZK's event-driven model.

Parameters:
name - the name of this component.

getName

public String getName()
Returns the name of this component.

Default: null.

The name is used only to work with "legacy" Web application that handles user's request by servlets. It works only with HTTP/HTML-based browsers. It doesn't work with other kind of clients.

Don't use this method if your application is purely based on ZK's event-driven model.

Returns:
String

setMode

public void setMode(String name)
Sets the mode to integer or decimal.

Parameters:
name - the mode which could be one of "integer", "decimal".
Since:
7.0.1

getMode

public String getMode()
Returns the current mode of slider One of "integer", "decimal".

Default: "integer"

Returns:
String
Since:
7.0.1

inScaleMold

public boolean inScaleMold()
Return whether this widget in scale mold

Returns:
boolean

inSphereMold

public boolean inSphereMold()
Return whether this widget in sphere mold

Returns:
boolean

isVertical

public boolean isVertical()
Returns whether it is a vertical slider.

Returns:
boolean

isDecimal

public boolean isDecimal()
Returns whether it is a decimal slider.

Returns:
boolean
Since:
7.0.1


Copyright © 2005-2011 Potix Corporation. All Rights Reserved. SourceForge.net Logo