| 209 | } |
| 210 | |
| 211 | void Desktop::SendFakeMouseMoveEvent( std::shared_ptr<Widget> widget, int x, int y ) const { |
| 212 | widget->HandleEvent( sf::Event::MouseMoved{ { x, y } } ); |
| 213 | } |
| 214 | |
| 215 | void Desktop::RecalculateWidgetLevels() { |
| 216 | auto children_size = m_children.size(); |
nothing calls this directly
no test coverage detected