| 1333 | } |
| 1334 | |
| 1335 | void NWidgetContainer::Draw(const Window *w) |
| 1336 | { |
| 1337 | for (const auto &child_wid : this->children) { |
| 1338 | child_wid->Draw(w); |
| 1339 | } |
| 1340 | |
| 1341 | DrawOutline(w, this); |
| 1342 | } |
| 1343 | |
| 1344 | NWidgetCore *NWidgetContainer::GetWidgetFromPos(int x, int y) |
| 1345 | { |
no test coverage detected