aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/hottext.reel
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/montage/ui/hottext.reel')
-rw-r--r--node_modules/montage/ui/hottext.reel/hottext.css27
-rw-r--r--node_modules/montage/ui/hottext.reel/hottext.html29
-rw-r--r--node_modules/montage/ui/hottext.reel/hottext.js376
3 files changed, 0 insertions, 432 deletions
diff --git a/node_modules/montage/ui/hottext.reel/hottext.css b/node_modules/montage/ui/hottext.reel/hottext.css
deleted file mode 100644
index 34b353f4..00000000
--- a/node_modules/montage/ui/hottext.reel/hottext.css
+++ /dev/null
@@ -1,27 +0,0 @@
1/* <copyright>
2This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5</copyright> */
6
7.hottext {
8 cursor: default;
9 border:none;
10 border-bottom:1px dotted white;
11 width:50px;
12 text-align:center;
13 -webkit-user-select:none;
14 outline:none;
15}
16
17.hottext:hover
18{
19 cursor: pointer;
20}
21
22.hottextInput
23{
24 cursor: default;
25 width:50px;
26 text-align:center;
27} \ No newline at end of file
diff --git a/node_modules/montage/ui/hottext.reel/hottext.html b/node_modules/montage/ui/hottext.reel/hottext.html
deleted file mode 100644
index 29912e42..00000000
--- a/node_modules/montage/ui/hottext.reel/hottext.html
+++ /dev/null
@@ -1,29 +0,0 @@
1<!DOCTYPE html>
2<!-- <copyright>
3 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
4 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
5 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
6 </copyright> -->
7<html>
8<head>
9 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
10 <link rel="stylesheet" type="text/css" href="hottext.css">
11
12
13 <script type="text/montage-serialization">
14 {
15 "owner": {
16 "module": "montage/ui/hottext.reel",
17 "name": "HotText",
18 "properties": {
19 "element": {"#": "hottext"}
20 }
21 }
22 }
23 </script>
24
25</head>
26<body>
27 <input id="hottext" class="hottext"/>
28</body>
29</html> \ No newline at end of file
diff --git a/node_modules/montage/ui/hottext.reel/hottext.js b/node_modules/montage/ui/hottext.reel/hottext.js
deleted file mode 100644
index b593e175..00000000
--- a/node_modules/montage/ui/hottext.reel/hottext.js
+++ /dev/null
@@ -1,376 +0,0 @@
1/* <copyright>
2This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5</copyright> */
6
7var Montage = require("montage").Montage,
8 SliderBase = require("ui/slider-base").SliderBase;
9
10var HotText = exports.HotText = Montage.create(SliderBase, {
11 /* Allow users to specify a function to format the display.
12 * For example, the Color Picker can specify a function to map
13 * the numeric hot text value to hex color values.
14 */
15 labelFunction: {
16 serializable: true,
17 enumerable: true,
18 value: null
19 },
20
21 inputFunction: {
22 serializable: true,
23 enumerable: true,
24 value: parseFloat
25 },
26
27 _numValue: {
28 enumerable: false,
29 value: 0
30 },
31
32 numValue: {
33 serializable: false,
34 enumerable: true,
35 get: function() {
36 return this._numValue;
37 },
38 set: function(value) {
39 if (value < this._minValue) {
40 value = this._minValue;
41 }
42 if (value > this._maxValue) {
43 value = this._maxValue;
44 }
45 if (value !== this._numValue) {
46 this._numValue = Math.round(value * this._decimalPlace)/this._decimalPlace;
47 }
48 }
49 },
50
51 _previousValue: {
52 enumerable: false,
53 value: null
54 },
55
56 _stepSize: {
57 enumerable: false,
58 value: 1
59 },
60
61 stepSize: {
62 serializable: true,
63 enumerable: true,
64 get: function() {
65 return this._stepSize;
66 },
67 set: function(value) {
68 if (value !== this._stepSize) {
69 this._stepSize = value;
70 this.needsDraw = true;
71 }
72 }
73 },
74
75 _stepSizeShift: {
76 enumerable: false,
77 value: 10
78 },
79
80 _xStart: {
81 enumerable: false,
82 value: 0
83 },
84
85 _yStart: {
86 enumerable: false,
87 value: 0
88 },
89
90 // Needed to determine when to commit a value change
91 _wasShiftKeyPressed: {
92 enumerable: false,
93 value: false
94 },
95
96 // for ones, use 1
97 // for tenths, use 10
98 // for hundredths, use 100, etc.
99 _decimalPlace: {
100 enumerable: false,
101 value: 1
102 },
103
104 decimalPlace: {
105 serializable: true,
106 enumerable: true,
107 get: function() {
108 return this._decimalPlace;
109 },
110 set: function(value) {
111 if (value !== this._decimalPlace) {
112 this._decimalPlace = value;
113 this.needsDraw = true;
114 }
115 }
116 },
117
118 value: {
119 serializable: true,
120 enumerable: true,
121 get: function() {
122 return this._value;
123 },
124 set: function(value, fromInput) {
125 if (isNaN(value)) {
126 this._valueSyncedWithInputField = false;
127 this.needsDraw = true;
128 return;
129 }
130
131 if (value < this._minValue) {
132 value = this._minValue;
133 this._valueSyncedWithInputField = false;
134 this.needsDraw = true;
135 }
136 else if (value > this._maxValue) {
137 value = this._maxValue;
138 this._valueSyncedWithInputField = false;
139 this.needsDraw = true;
140 }
141
142 if (value !== this._value) {
143 this._value = this._numValue = Math.round(value * this._decimalPlace)/this._decimalPlace;
144 this._valueSyncedWithInputField = false;
145 this.needsDraw = true;
146 this._dispatchActionEvent();
147 }
148 }
149 },
150
151 _valueSyncedWithInputField: {
152 enumerable: false,
153 value: false
154 },
155
156 // We don't want to handle every input; we only want to handle input from tab or enter
157 // Thus, we don't listen for an input event; we call this from handleKeydown
158 handleInput: {
159 enumerable: false,
160 value: function() {
161 this._setEventFlags("change", false);
162 Object.getPropertyDescriptor(this, "value").set.call(this, this.inputFunction(this.element.value), true);
163 }
164 },
165
166
167 _valueFromPageOffset: {