Finds all immediate children widgets with corresponding userIDs.
См. определение в файле ControlsXboxNew.c строка 418
419 {
420 Widget child = wid.GetChildren();
421 while (child)
422 {
423 if (child.GetUserID() == user_id)
424 {
425 results.Insert(child);
426 }
427 child = child.GetSibling();
428 }
429 return (results && results.Count() > 0);
430 }
Используется в DrawConnectingLines().