| 1477 | } |
| 1478 | |
| 1479 | void Draw(const Window *w) override |
| 1480 | { |
| 1481 | /* Draw brown-red toolbar bg. */ |
| 1482 | const Rect r = this->GetCurrentRect(); |
| 1483 | GfxFillRect(r, PC_VERY_DARK_RED); |
| 1484 | GfxFillRect(r, PC_DARK_RED, FILLRECT_CHECKER); |
| 1485 | |
| 1486 | this->NWidgetContainer::Draw(w); |
| 1487 | } |
| 1488 | |
| 1489 | /** |
| 1490 | * Get the arrangement of the buttons for the toolbar. |
nothing calls this directly
no test coverage detected