| 12 | Signal::SignalID Entry::OnTextChanged = 0; |
| 13 | |
| 14 | Entry::Entry() : |
| 15 | m_string(), |
| 16 | m_visible_string(), |
| 17 | m_visible_offset( 0 ), |
| 18 | m_text_placeholder( 0 ), |
| 19 | m_max_length( 0 ), |
| 20 | m_cursor_position( 0 ), |
| 21 | m_elapsed_time( 0.f ), |
| 22 | m_text_margin( 0.f ), |
| 23 | m_cursor_status( false ) |
| 24 | { |
| 25 | } |
| 26 | |
| 27 | Entry::Ptr Entry::Create( const sf::String& text ) { |
| 28 | Ptr ptr( new Entry ); |
nothing calls this directly
no outgoing calls
no test coverage detected