| 63 | *****************************************************************************/ |
| 64 | |
| 65 | ScrollController::ScrollController() : |
| 66 | m_isEnabled(false), |
| 67 | m_direction(DIRECTION_HORIZONTAL), |
| 68 | m_offset(0), |
| 69 | m_offsetDest(0), |
| 70 | m_contentSize(0U), |
| 71 | m_scrollingCnt(0U), |
| 72 | m_timer() |
| 73 | { |
| 74 | } |
| 75 | |
| 76 | void ScrollController::enable(Direction direction, uint16_t canvasSize, uint16_t contentSize) |
| 77 | { |
nothing calls this directly
no outgoing calls
no test coverage detected