| 1141 | } |
| 1142 | |
| 1143 | void Window::callScrollMouseDown(int16_t xPos, int16_t yPos, uint8_t scrollIndex) |
| 1144 | { |
| 1145 | if (eventHandlers->scrollMouseDown == nullptr) |
| 1146 | { |
| 1147 | return; |
| 1148 | } |
| 1149 | |
| 1150 | this->eventHandlers->scrollMouseDown(*this, xPos, yPos, scrollIndex); |
| 1151 | } |
| 1152 | |
| 1153 | void Window::callScrollMouseDrag(int16_t xPos, int16_t yPos, uint8_t scrollIndex) |
| 1154 | { |
no outgoing calls
no test coverage detected