Lines Matching refs:custom
242 Window* custom = window->child; in Draw() local
243 while (custom) in Draw()
246 custom->sortedDrawItems = custom->menuItems; in Draw()
247 SortList(custom->sortedDrawItems); in Draw()
250 custom->x = window->x; in Draw()
251 custom->y = y; in Draw()
252 custom->offY = window->offY; in Draw()
253 custom->Draw(); in Draw()
254 …for (std::list<MenuItem*>::reverse_iterator iter = custom->sortedDrawItems.rbegin(); iter != custo… in Draw()
260 y -= custom->maxHeight; in Draw()
261 custom = custom->child; in Draw()
372 Window* custom = window->child; in Update() local
373 while (custom) in Update()
376 custom->x = window->x; in Update()
377 custom->y = y; in Update()
378 custom->offY = window->offY; in Update()
379 canUpdate = custom->Update(canUpdate); in Update()
382 custom->sortedItems = custom->menuItems; in Update()
383 SortList(custom->sortedItems); in Update()
385 y -= custom->maxHeight; in Update()
386 custom = custom->child; in Update()
391 Window* custom = window; in Update() local
393 while (custom) in Update()
395 std::list<MenuItem*>::iterator iter = custom->sortedItems.begin(); in Update()
396 std::list<MenuItem*>::iterator preiter = custom->sortedItems.begin(); in Update()
399 for ( ; preiter != custom->sortedItems.end(); ++preiter) in Update()
408 custom = custom->child; in Update()
416 custom = window; in Update()
417 while (custom) in Update()
419 std::list<MenuItem*>::iterator iter = custom->sortedItems.begin(); in Update()
424 for ( ; iter != custom->sortedItems.end(); ++iter) in Update()
436 for ( ; iter != custom->sortedItems.end(); ++iter) in Update()
442 custom = custom->child; in Update()
456 Window* custom = window->child; in Update() local
457 while (custom) in Update()
459 std::list<MenuItem*>::iterator iter = custom->sortedItems.begin(); in Update()
460 for ( ; iter != custom->sortedItems.end(); ++iter) in Update()
463 custom = custom->child; in Update()