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

◆ GetFocusedContainerHeight()

float LayoutHolder::GetFocusedContainerHeight ( bool contents = false)
inlineprotected

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

285 {
286 float x, y, result;
287 if( GetFocusedContainer() )
289 else if( GetRootWidget() )
290 GetRootWidget().GetScreenSize( x, y );
291
292 result = y;
293
294 if ( m_ActiveIndex == 0 )
295 {
296 if ( GetHeader() )
297 {
298 GetHeader().GetRootWidget().GetScreenSize( x, y );
299 result += y;
300 }
301 }
302 return result;
303 }
Icon x
Icon y
override float GetFocusedContainerHeight(bool contents=false)
Определения CargoContainer.c:436
int m_ActiveIndex
Определения Container.c:5
Container GetFocusedContainer()
Определения Container.c:48
Header GetHeader()

Перекрестные ссылки GetFocusedContainer(), Container::GetHeader(), m_ActiveIndex, x и y.