| 269 | } |
| 270 | |
| 271 | void TouchpadController::Handler::zoom( float scale, bool kinetic, GestureState state ) |
| 272 | { |
| 273 | switch ( state ) |
| 274 | { |
| 275 | case GestureState::Begin: |
| 276 | ENQUEUE_VIEWER_METHOD( "Zoom touchpad gesture started", touchpadZoomGestureBegin ); |
| 277 | break; |
| 278 | case GestureState::Update: |
| 279 | ENQUEUE_VIEWER_METHOD_ARGS_SKIPABLE( "Zoom touchpad gesture updated", touchpadZoomGestureUpdate, scale, kinetic ); |
| 280 | break; |
| 281 | case GestureState::End: |
| 282 | ENQUEUE_VIEWER_METHOD( "Zoom touchpad gesture ended", touchpadZoomGestureEnd ); |
| 283 | break; |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | } |
no outgoing calls
no test coverage detected