overridable draws the window background before gadgets
| 617 | |
| 618 | // overridable draws the window background before gadgets |
| 619 | void UIWindow::OnDraw() { |
| 620 | if (m_BackItem) |
| 621 | m_BackItem->draw(0, 0, m_W, m_H); |
| 622 | } |
| 623 | |
| 624 | // used to manage keypresses so repeating isn't quick. |
| 625 | bool UIWindow::TrapKey(int key) { |
no test coverage detected