MCPcopy Create free account
hub / github.com/OpenDUNE/OpenDUNE / GUI_Widget_DrawAll

Function GUI_Widget_DrawAll

src/gui/widget_draw.c:956–962  ·  view source on GitHub ↗

* Draw all widgets, starting with the one given by the parameters. * @param w First widget of the chain to draw. */

Source from the content-addressed store, hash-verified

954 * @param w First widget of the chain to draw.
955 */
956void GUI_Widget_DrawAll(Widget *w)
957{
958 while (w != NULL) {
959 GUI_Widget_Draw(w);
960 w = GUI_Widget_GetNext(w);
961 }
962}

Callers 5

GUI_PickHouseFunction · 0.85
GUI_ChangeSelectionTypeFunction · 0.85
GUI_Mentat_ShowFunction · 0.85

Calls 2

GUI_Widget_DrawFunction · 0.85
GUI_Widget_GetNextFunction · 0.85

Tested by

no test coverage detected