trait DualRangeModel extends AnyRef
- Alphabetic
- By Inheritance
- DualRangeModel
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
- abstract def addChangeListener(l: ChangeListener): Unit
-
abstract
val
adjusting: Boolean
Flag to indicate whether user is currently dragging the slider.
Flag to indicate whether user is currently dragging the slider. Changing this fires an event.
-
abstract
val
maximum: Int
Upper bound of the model.
Upper bound of the model. Changing this fires an event.
-
abstract
val
minimum: Int
Lower bound of the model.
Lower bound of the model. Changing this fires an event.
-
abstract
val
range: (Int, Int)
Range value of the model.
Range value of the model. Changing this fires an event.
- abstract def removeChangeListener(l: ChangeListener): Unit
-
abstract
def
setRangeProperties(value: Int = this.value, range: (Int, Int) = this.range, minimum: Int = this.minimum, maximum: Int = this.maximum, adjusting: Boolean = this.adjusting): Unit
Adjusts all the properties.
Adjusts all the properties. If any property constitutes a model change, fires an event.
Note: The
adjustingparameter is treated specially: If it is the only property that would change, then this method does nothing. For example, if the method is called with default arguments, setting onlyvalue = xandadjusting = true, this performs a check forx. Ifxis different from the current value, then both the model'svalueandadjustingproperties are set; otherwise nothing is changed (ignoring theadjustingargument). -
abstract
val
value: Int
Single value of the model.
Single value of the model. Changing this fires an event.
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
extent: Int
Queries the extent of the range, which is
abs(range._2 - range._1). -
def
extent_=(value: Int): Unit
Adjusts the extent of the range, which is
abs(range._2 - range._1).Adjusts the extent of the range, which is
abs(range._2 - range._1). Fires an event. -
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
rangeHi: Int
Logical range higher value, which is
max(range._1, range._2). -
def
rangeLo: Int
Logical range lower value, which is
min(range._1, range._2). -
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )