Lines Matching refs:_eventHandlers

39         this._eventHandlers = {  property in anonymousFunction261d23f50100.Keyboard
112 Util.addEvent(c, 'keydown', this._eventHandlers.keydown);
113 Util.addEvent(c, 'keyup', this._eventHandlers.keyup);
114 Util.addEvent(c, 'keypress', this._eventHandlers.keypress);
117 Util.addEvent(window, 'blur', this._eventHandlers.blur);
126 Util.removeEvent(c, 'keydown', this._eventHandlers.keydown);
127 Util.removeEvent(c, 'keyup', this._eventHandlers.keyup);
128 Util.removeEvent(c, 'keypress', this._eventHandlers.keypress);
129 Util.removeEvent(window, 'blur', this._eventHandlers.blur);
167 this._eventHandlers = { property in anonymousFunction261d23f50100.Mouse
336 Util.addEvent(c, 'touchstart', this._eventHandlers.mousedown);
337 Util.addEvent(window, 'touchend', this._eventHandlers.mouseup);
338 Util.addEvent(c, 'touchend', this._eventHandlers.mouseup);
339 Util.addEvent(c, 'touchmove', this._eventHandlers.mousemove);
341 Util.addEvent(c, 'mousedown', this._eventHandlers.mousedown);
342 Util.addEvent(window, 'mouseup', this._eventHandlers.mouseup);
343 Util.addEvent(c, 'mouseup', this._eventHandlers.mouseup);
344 Util.addEvent(c, 'mousemove', this._eventHandlers.mousemove);
346 this._eventHandlers.mousewheel);
350 Util.addEvent(document, 'click', this._eventHandlers.mousedisable);
351 Util.addEvent(document.body, 'contextmenu', this._eventHandlers.mousedisable);
358 Util.removeEvent(c, 'touchstart', this._eventHandlers.mousedown);
359 Util.removeEvent(window, 'touchend', this._eventHandlers.mouseup);
360 Util.removeEvent(c, 'touchend', this._eventHandlers.mouseup);
361 Util.removeEvent(c, 'touchmove', this._eventHandlers.mousemove);
363 Util.removeEvent(c, 'mousedown', this._eventHandlers.mousedown);
364 Util.removeEvent(window, 'mouseup', this._eventHandlers.mouseup);
365 Util.removeEvent(c, 'mouseup', this._eventHandlers.mouseup);
366 Util.removeEvent(c, 'mousemove', this._eventHandlers.mousemove);
368 this._eventHandlers.mousewheel);
372 Util.removeEvent(document, 'click', this._eventHandlers.mousedisable);
373 Util.removeEvent(document.body, 'contextmenu', this._eventHandlers.mousedisable);