| 1151 | } |
| 1152 | |
| 1153 | void Window::callScrollMouseDrag(int16_t xPos, int16_t yPos, uint8_t scrollIndex) |
| 1154 | { |
| 1155 | if (eventHandlers->scrollMouseDrag == nullptr) |
| 1156 | { |
| 1157 | return; |
| 1158 | } |
| 1159 | |
| 1160 | this->eventHandlers->scrollMouseDrag(*this, xPos, yPos, scrollIndex); |
| 1161 | } |
| 1162 | |
| 1163 | void Window::callScrollMouseOver(int16_t xPos, int16_t yPos, uint8_t scrollIndex) |
| 1164 | { |
no outgoing calls
no test coverage detected