| 1181 | } |
| 1182 | |
| 1183 | void Window::callViewportRotate() |
| 1184 | { |
| 1185 | if (eventHandlers->viewportRotate == nullptr) |
| 1186 | { |
| 1187 | return; |
| 1188 | } |
| 1189 | |
| 1190 | this->eventHandlers->viewportRotate(*this); |
| 1191 | } |
| 1192 | |
| 1193 | std::optional<FormatArguments> Window::callTooltip(WidgetIndex_t widgetIndex, const WidgetId id) |
| 1194 | { |
no test coverage detected