DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ UpdateLayout()

void SpacerBase::UpdateLayout ( )
inlineprotected

См. определение в файле SpacerBase.c строка 64

65 {
66 if (m_count == 0) return;
67
68 float width;
69 float height;
70 m_root.GetScreenSize(width, height);
71
72 Widget child = m_root.GetChildren();
73
74 int index = 0;
75 while (child)
76 {
77 UpdateChild(child, width, height, index);
78 index++;
79 child = child.GetSibling();
80 }
81 }
Widget m_root
Определения SpacerBase.c:4
void UpdateChild(Widget child, float w, float h, int index)
Определения SpacerBase.c:82
int m_count
Определения SpacerBase.c:5
WorkspaceWidget Widget
Defined in code.

Перекрестные ссылки m_count, m_root и UpdateChild().

Используется в OnUpdate().