| 17 | } |
| 18 | |
| 19 | std::unique_ptr<RenderQueue> CheckButton::InvalidateImpl() const { |
| 20 | if( GetChild() ) { |
| 21 | GetChild()->Invalidate(); |
| 22 | } |
| 23 | |
| 24 | return Context::Get().GetEngine().CreateCheckButtonDrawable( std::dynamic_pointer_cast<const CheckButton>( shared_from_this() ) ); |
| 25 | } |
| 26 | |
| 27 | sf::Vector2f CheckButton::CalculateRequisition() { |
| 28 | const std::string& font_name( Context::Get().GetEngine().GetProperty<std::string>( "FontName", shared_from_this() ) ); |
nothing calls this directly
no test coverage detected