* Blits the combo box components. * @param surface Pointer to surface to blit onto. */
| 302 | * @param surface Pointer to surface to blit onto. |
| 303 | */ |
| 304 | void ComboBox::blit(Surface *surface) |
| 305 | { |
| 306 | Surface::blit(surface); |
| 307 | _list->invalidate(); |
| 308 | if (_visible && !_hidden) |
| 309 | { |
| 310 | _button->blit(surface); |
| 311 | _arrow->blit(surface); |
| 312 | _window->blit(surface); |
| 313 | _list->blit(surface); |
| 314 | } |
| 315 | } |
| 316 | |
| 317 | /** |
| 318 | * Passes events to internal components. |
nothing calls this directly
no test coverage detected