| 1170 | } |
| 1171 | |
| 1172 | void UserEventStream::PerformDoubleTap(Touch const & touch) |
| 1173 | { |
| 1174 | ASSERT_EQUAL(m_state, STATE_WAIT_DOUBLE_TAP_HOLD, ()); |
| 1175 | m_state = STATE_EMPTY; |
| 1176 | if (m_listener) |
| 1177 | m_listener->OnDoubleTap(m2::PointD(touch.m_location)); |
| 1178 | } |
| 1179 | |
| 1180 | bool UserEventStream::DetectForceTap(Touch const & touch) |
| 1181 | { |
nothing calls this directly
no test coverage detected