@@ -35,14 +35,23 @@ function Mouse() {
35
35
Mouse . prototype = Object . create ( EventDispatcher . prototype ) ;
36
36
Mouse . prototype . constructor = Mouse ;
37
37
38
+ /**
39
+ * @return {Number } mouse x position
40
+ */
38
41
Mouse . prototype . getPosX = function ( ) {
39
42
return this . _x ;
40
43
} ;
41
44
45
+ /**
46
+ * @return {Number } mouse y position
47
+ */
42
48
Mouse . prototype . getPosY = function ( ) {
43
49
return this . _y ;
44
50
} ;
45
51
52
+ /**
53
+ * @return {Array } mouse position as [x, y]
54
+ */
46
55
Mouse . prototype . getPos = function ( out ) {
47
56
if ( out === undefined ) {
48
57
return [ this . _x , this . _y ] ;
@@ -52,14 +61,23 @@ Mouse.prototype.getPos = function(out){
52
61
return out ;
53
62
} ;
54
63
64
+ /**
65
+ * @return {Number } previous mouse x position
66
+ */
55
67
Mouse . prototype . getPrevPosX = function ( ) {
56
68
return this . _prevX ;
57
69
} ;
58
70
71
+ /**
72
+ * @return {Number } previous mouse y position
73
+ */
59
74
Mouse . prototype . getPrevPosY = function ( ) {
60
75
return this . _prevY ;
61
76
} ;
62
77
78
+ /**
79
+ * @return {Array } previous mouse position as [x, y]
80
+ */
63
81
Mouse . prototype . getPrevPos = function ( out ) {
64
82
if ( out === undefined ) {
65
83
return [ this . _prevX , this . _prevY ] ;
@@ -69,14 +87,23 @@ Mouse.prototype.getPrevPos = function(out){
69
87
return out ;
70
88
} ;
71
89
90
+ /**
91
+ * @return {Number } the difference between current and the last position on the x axis
92
+ */
72
93
Mouse . prototype . getDeltaX = function ( ) {
73
94
return this . _deltaX ;
74
95
} ;
75
96
97
+ /**
98
+ * @return {Number } the difference between current and the last position on the y axis
99
+ */
76
100
Mouse . prototype . getDeltaY = function ( ) {
77
101
return this . _deltaY ;
78
102
} ;
79
103
104
+ /**
105
+ * @return {Array } the difference between current and the last position as [x,y]
106
+ */
80
107
Mouse . prototype . getDelta = function ( out ) {
81
108
if ( out === undefined ) {
82
109
return [ this . _deltaX , this . _deltaY ] ;
@@ -86,18 +113,54 @@ Mouse.prototype.getDelta = function(out){
86
113
return out ;
87
114
} ;
88
115
116
+ /**
117
+ * Fires MOUSE_DOWN event
118
+ * @protected
119
+ *
120
+ * @param {Object } e - event data
121
+ * @param {String } e.x - mouse x position
122
+ * @param {Number } e.y - mouse y position
123
+ * @param {Boolean } e.altKey - is alt key pressed?
124
+ * @param {Boolean } e.shiftKey - is shift key pressed?
125
+ * @param {Boolean } e.ctrlKey - is ctrl key pressed?
126
+ * @param {Boolean } e.metaKey - is meta (apple/win) key pressed?
127
+ */
89
128
Mouse . prototype . handleMouseDown = function ( e ) {
90
129
this . _isDown = true ;
91
130
e . mouse = this ;
92
131
this . dispatchEvent ( new MouseEvent ( MouseEvent . MOUSE_DOWN , e ) ) ;
93
132
}
94
133
134
+ /**
135
+ * Fires MOUSE_UP event
136
+ * @protected
137
+ *
138
+ * @param {Object } e - event data
139
+ * @param {String } e.x - mouse x position
140
+ * @param {Number } e.y - mouse y position
141
+ * @param {Boolean } e.altKey - is alt key pressed?
142
+ * @param {Boolean } e.shiftKey - is shift key pressed?
143
+ * @param {Boolean } e.ctrlKey - is ctrl key pressed?
144
+ * @param {Boolean } e.metaKey - is meta (apple/win) key pressed?
145
+ */
95
146
Mouse . prototype . handleMouseUp = function ( e ) {
96
147
this . _isDown = false ;
97
148
e . mouse = this ;
98
149
this . dispatchEvent ( new MouseEvent ( MouseEvent . MOUSE_UP , e ) ) ;
99
150
}
100
151
152
+ /**
153
+ * Fires MOUSE_MOVE event
154
+ * @protected
155
+ *
156
+ * @param {Object } e - event data
157
+ * @param {String } e.x - mouse x position
158
+ * @param {Number } e.y - mouse y position
159
+ * @param {Boolean } e.altKey - is alt key pressed?
160
+ * @param {Boolean } e.shiftKey - is shift key pressed?
161
+ * @param {Boolean } e.ctrlKey - is ctrl key pressed?
162
+ * @param {Boolean } e.metaKey - is meta (apple/win) key pressed?
163
+ */
101
164
Mouse . prototype . handleMouseMove = function ( e ) {
102
165
this . _prevX = this . _x ;
103
166
this . _prevY = this . _y ;
@@ -117,6 +180,18 @@ Mouse.prototype.handleMouseMove = function(e) {
117
180
}
118
181
}
119
182
183
+ /**
184
+ * Fires MOUSE_SCROLL event
185
+ * @protected
186
+ *
187
+ * @param {Object } e - event data
188
+ * @param {String } e.dx - amount of scroll in x direction
189
+ * @param {Number } e.dy - amount of scroll in y direction
190
+ * @param {Boolean } e.altKey - is alt key pressed?
191
+ * @param {Boolean } e.shiftKey - is shift key pressed?
192
+ * @param {Boolean } e.ctrlKey - is ctrl key pressed?
193
+ * @param {Boolean } e.metaKey - is meta (apple/win) key pressed?
194
+ */
120
195
Mouse . prototype . handleMouseScroll = function ( e ) {
121
196
e . mouse = this ;
122
197
this . dispatchEvent ( new MouseEvent ( MouseEvent . MOUSE_SCROLL , e ) ) ;
0 commit comments