| 1131 | } |
| 1132 | |
| 1133 | void Window::callGetScrollSize(uint32_t scrollIndex, int32_t& scrollWidth, int32_t& scrollHeight) |
| 1134 | { |
| 1135 | if (eventHandlers->getScrollSize == nullptr) |
| 1136 | { |
| 1137 | return; |
| 1138 | } |
| 1139 | |
| 1140 | eventHandlers->getScrollSize(*this, scrollIndex, scrollWidth, scrollHeight); |
| 1141 | } |
| 1142 | |
| 1143 | void Window::callScrollMouseDown(int16_t xPos, int16_t yPos, uint8_t scrollIndex) |
| 1144 | { |
no outgoing calls
no test coverage detected