| 25 | } |
| 26 | |
| 27 | Entry::Ptr Entry::Create( const sf::String& text ) { |
| 28 | Ptr ptr( new Entry ); |
| 29 | ptr->SetText( text ); |
| 30 | return ptr; |
| 31 | } |
| 32 | |
| 33 | std::unique_ptr<RenderQueue> Entry::InvalidateImpl() const { |
| 34 | return Context::Get().GetEngine().CreateEntryDrawable( std::dynamic_pointer_cast<const Entry>( shared_from_this() ) ); |