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

◆ GetPrevEntry()

void GetPrevEntry ( )
protected

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

383 {
384 Widget focused = GetFocus();
385 if ( focused && focused.GetName() == "server_browser_list_entry_root" )
386 {
387 Widget sibling = focused.GetParent().GetChildren();
388 if ( focused == sibling )
389 return;
390
391 while ( sibling )
392 {
393 if ( sibling && sibling.GetSibling() == focused )
394 {
395 SetFocus( sibling );
396 }
397 else
398 {
399 sibling = sibling.GetSibling();
400 }
401 }
402 }
403 }
Определения EnWidgets.c:190
proto native Widget GetFocus()
proto native void SetFocus(Widget w)

Перекрестные ссылки GetFocus() и SetFocus().