| 45 | } |
| 46 | |
| 47 | std::unique_ptr<RenderQueue> SpinButton::InvalidateImpl() const { |
| 48 | return Context::Get().GetEngine().CreateSpinButtonDrawable( std::dynamic_pointer_cast<const SpinButton>( shared_from_this() ) ); |
| 49 | } |
| 50 | |
| 51 | sf::Vector2f SpinButton::CalculateRequisition() { |
| 52 | const std::string& font_name( Context::Get().GetEngine().GetProperty<std::string>( "FontName", shared_from_this() ) ); |
nothing calls this directly
no test coverage detected