summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/type/Range.js
blob: 848550b7aef5fa019412c94af24fd93bee7b4fba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/* ************************************************************************

   qooxdoo - the new era of web development

   http://qooxdoo.org

   Copyright:
     2004-2006 by 1&1 Internet AG, Germany, http://www.1and1.org

   License:
     LGPL 2.1: http://www.gnu.org/licenses/lgpl.html

   Authors:
     * Sebastian Werner (wpbasti)
     * Andreas Ecker (ecker)

************************************************************************ */

/* ************************************************************************


************************************************************************ */

/**
 * This manager is used by all objects which needs ranges like qx.ui.form.Spinner, ...
 *
 * @event change {qx.event.type.Event}
 */
qx.OO.defineClass("qx.type.Range", qx.core.Target,
function() {
  qx.core.Target.call(this);
});

/** current value of the Range object */
qx.OO.addProperty({ name : "value", type : "number", defaultValue : 0 });

/** minimal value of the Range object */
qx.OO.addProperty({ name : "min", type : "number", defaultValue : 0 });

/** maximal value of the Range object */
qx.OO.addProperty({ name : "max", type : "number", defaultValue : 100 });

/** Step size for increments/decrements of the value property */
qx.OO.addProperty({ name : "step", type : "number", defaultValue : 1 });

qx.Proto._checkValue = function(propValue) {
  return Math.max(this.getMin(), Math.min(this.getMax(), Math.floor(propValue)));
}

qx.Proto._modifyValue = function(propValue, propOldValue, propData)
{
  if (this.hasEventListeners("change")) {
    this.dispatchEvent(new qx.event.type.Event("change"), true);
  }

  return true;
}

qx.Proto._checkMax = function(propValue) {
  return Math.floor(propValue);
}

qx.Proto._modifyMax = function(propValue, propOldValue, propData)
{
  this.setValue(Math.min(this.getValue(), propValue));

  if (this.hasEventListeners("change")) {
    this.dispatchEvent(new qx.event.type.Event("change"), true);
  }

  return true;
}

qx.Proto._checkMin = function(propValue) {
  return Math.floor(propValue);
}

qx.Proto._modifyMin = function(propValue, propOldValue, propData)
{
  this.setValue(Math.max(this.getValue(), propValue));

  if (this.hasEventListeners("change")) {
    this.dispatchEvent(new qx.event.type.Event("change"), true);
  }

  return true;
}