| 1291 | } |
| 1292 | |
| 1293 | NWidgetCore *NWidgetCore::GetWidgetFromPos(int x, int y) |
| 1294 | { |
| 1295 | return (IsInsideBS(x, this->pos_x, this->current_x) && IsInsideBS(y, this->pos_y, this->current_y)) ? this : nullptr; |
| 1296 | } |
| 1297 | |
| 1298 | NWidgetBase *NWidgetContainer::GetWidgetOfType(WidgetType tp) |
| 1299 | { |
no test coverage detected