/src/com/custardbelly/as3flobile/controls/slider/context/SliderMouseContext.as

http://github.com/bustardcelly/as3flobile · ActionScript · 178 lines · 83 code · 15 blank · 80 comment · 2 complexity · 9d2055b0c6257c14e444245feff38f77 MD5 · raw file

  1. /**
  2. * <p>Original Author: toddanderson</p>
  3. * <p>Class File: SliderMouseContext.as</p>
  4. * <p>Version: 0.3</p>
  5. *
  6. * <p>Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:</p>
  12. *
  13. * <p>The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.</p>
  15. *
  16. * <p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. * THE SOFTWARE.</p>
  23. *
  24. * <p>Licensed under The MIT License</p>
  25. * <p>Redistributions of files must retain the above copyright notice.</p>
  26. */
  27. package com.custardbelly.as3flobile.controls.slider.context
  28. {
  29. import com.custardbelly.as3flobile.controls.slider.ISlider;
  30. import flash.display.InteractiveObject;
  31. import flash.events.MouseEvent;
  32. import flash.geom.Point;
  33. /**
  34. * SliderMouseContext is an extension of BaseSliderContext to provide stategy context based on mouse gestures.
  35. * @author toddanderson
  36. */
  37. public class SliderMouseContext extends BaseSliderContext
  38. {
  39. protected var _point:Point;
  40. protected var _mouseTarget:InteractiveObject;
  41. protected var _backgroundTarget:InteractiveObject;
  42. protected var _thumbTarget:InteractiveObject;
  43. /**
  44. * Constructor.
  45. * @param strategy ISliderStrategy
  46. */
  47. public function SliderMouseContext( strategy:ISliderStrategy )
  48. {
  49. super( strategy );
  50. _point = new Point();
  51. }
  52. /**
  53. * @private
  54. *
  55. * Adds events listeners to target interactive objects.
  56. */
  57. protected function addTargetListeners():void
  58. {
  59. _thumbTarget.stage.addEventListener( MouseEvent.MOUSE_MOVE, handleThumbMove, false, 0, true );
  60. _thumbTarget.stage.addEventListener( MouseEvent.MOUSE_UP, handleThumbUp, false, 0 , true );
  61. }
  62. /**
  63. * @private
  64. *
  65. * Removes event listeners form target interactive objects.
  66. */
  67. protected function removeTargetListeners():void
  68. {
  69. if( !_thumbTarget ) return;
  70. _thumbTarget.stage.removeEventListener( MouseEvent.MOUSE_MOVE, handleThumbMove, false );
  71. _thumbTarget.stage.removeEventListener( MouseEvent.MOUSE_UP, handleThumbUp, false );
  72. }
  73. /**
  74. * @private
  75. *
  76. * Event handler for click gesture on background target.
  77. * @param evt MouseEvent
  78. */
  79. protected function handleBackgroundClick( evt:MouseEvent ):void
  80. {
  81. _point.x = _mouseTarget.mouseX;
  82. _point.y = _mouseTarget.mouseY;
  83. _strategy.click( _point );
  84. }
  85. /**
  86. * @private
  87. *
  88. * Event handler for down gesture on thumb target
  89. * @param evt MouseEvent
  90. */
  91. protected function handleThumbDown( evt:MouseEvent ):void
  92. {
  93. addTargetListeners();
  94. _point.x = _mouseTarget.mouseX;
  95. _point.y = _mouseTarget.mouseY;
  96. _strategy.start( _point );
  97. }
  98. /**
  99. * @private
  100. *
  101. * Event handler for move gesture of thumb target.
  102. * @param evt MouseEvent
  103. */
  104. protected function handleThumbMove( evt:MouseEvent ):void
  105. {
  106. _point.x = _mouseTarget.mouseX;
  107. _point.y = _mouseTarget.mouseY;
  108. _strategy.move( _point );
  109. }
  110. /**
  111. * @private
  112. *
  113. * Event handler for up gesture on thumb target.
  114. * @param evt MouseEvent
  115. */
  116. protected function handleThumbUp( evt:MouseEvent ):void
  117. {
  118. removeTargetListeners();
  119. _point.x = _mouseTarget.mouseX;
  120. _point.y = _mouseTarget.mouseY;
  121. _strategy.end( _point );
  122. }
  123. /**
  124. * @inherit
  125. */
  126. override public function initialize( target:ISlider ):void
  127. {
  128. super.initialize( target );
  129. _mouseTarget = ( target as InteractiveObject );
  130. _backgroundTarget = target.backgroundTarget;
  131. _thumbTarget = target.thumbTarget;
  132. }
  133. /**
  134. * @inherit
  135. */
  136. override public function activate():void
  137. {
  138. super.activate();
  139. _backgroundTarget.addEventListener( MouseEvent.CLICK, handleBackgroundClick, false, 0, true );
  140. _thumbTarget.addEventListener( MouseEvent.MOUSE_DOWN, handleThumbDown, false, 0, true );
  141. }
  142. /**
  143. * @inherit
  144. */
  145. override public function deactivate():void
  146. {
  147. if( _isActive ) removeTargetListeners();
  148. super.deactivate();
  149. _backgroundTarget.removeEventListener( MouseEvent.CLICK, handleBackgroundClick, false );
  150. _thumbTarget.removeEventListener( MouseEvent.MOUSE_DOWN, handleThumbDown, false );
  151. }
  152. /**
  153. * @inherit
  154. */
  155. override public function dispose():void
  156. {
  157. super.dispose();
  158. _mouseTarget = null;
  159. _backgroundTarget = null;
  160. _thumbTarget = null;
  161. }
  162. }
  163. }