| 94 | } |
| 95 | |
| 96 | MyGUI::Widget* WidgetSelectorManager::getTopWidget(const MyGUI::IntPoint& _point) |
| 97 | { |
| 98 | MyGUI::Widget* result = nullptr; |
| 99 | |
| 100 | EnumeratorWidgetContainer container = EditorWidgets::getInstance().getWidgets(); |
| 101 | while (container.next()) |
| 102 | checkContainer(container.current(), result, _point); |
| 103 | |
| 104 | return result; |
| 105 | } |
| 106 | |
| 107 | void WidgetSelectorManager::checkContainer( |
| 108 | WidgetContainer* _container, |
nothing calls this directly
no test coverage detected