(owner: GComponent)
| 122 | private _onMouseUpHandler: (data: IInputEventData) => void; |
| 123 | |
| 124 | constructor(owner: GComponent) { |
| 125 | super(); |
| 126 | this.owner = owner; |
| 127 | |
| 128 | // Bind handlers |
| 129 | this._onMouseMoveHandler = (data: IInputEventData) => this.onMouseMove(data.stageX, data.stageY); |
| 130 | this._onMouseUpHandler = () => this.onMouseUp(); |
| 131 | } |
| 132 | |
| 133 | /** |
| 134 | * Get scroll type |
nothing calls this directly
no test coverage detected