MCPcopy Create free account
hub / github.com/OpenXcom/OpenXcom / blit

Method blit

src/Interface/ComboBox.cpp:304–315  ·  view source on GitHub ↗

* Blits the combo box components. * @param surface Pointer to surface to blit onto. */

Source from the content-addressed store, hash-verified

302 * @param surface Pointer to surface to blit onto.
303 */
304void 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.

Callers

nothing calls this directly

Calls 1

invalidateMethod · 0.80

Tested by

no test coverage detected