| 195 | |
| 196 | |
| 197 | void GuiTabPageCtrl::selectWindow(void) |
| 198 | { |
| 199 | //first make sure this window is the front most of its siblings |
| 200 | GuiControl *parent = getParent(); |
| 201 | if (parent) |
| 202 | { |
| 203 | parent->pushObjectToBack(this); |
| 204 | } |
| 205 | |
| 206 | //also set the first responder to be the one within this window |
| 207 | setFirstResponder(mFirstResponder); |
| 208 | } |
| 209 | |
| 210 | void GuiTabPageCtrl::onRender(Point2I offset,const RectI &updateRect) |
| 211 | { |
nothing calls this directly
no test coverage detected