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

◆ GetPrevEntry()

void GetPrevEntry ( )
protected

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

393 {
394 Widget focused = GetFocus();
395 if ( focused && focused.GetName() == "server_browser_list_entry_root" )
396 {
397 Widget sibling = focused.GetParent().GetChildren();
398 if ( focused == sibling )
399 return;
400
401 while ( sibling )
402 {
403 if ( sibling && sibling.GetSibling() == focused )
404 {
405 SetFocus( sibling );
406 }
407 else
408 {
409 sibling = sibling.GetSibling();
410 }
411 }
412 }
413 }
Определения EnWidgets.c:190
proto native Widget GetFocus()
proto native void SetFocus(Widget w)

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