| 288 | } |
| 289 | |
| 290 | void Entry::HandleFocusChange( Widget::Ptr focused_widget ) { |
| 291 | if( HasFocus() ) { |
| 292 | m_elapsed_time = 0.f; |
| 293 | m_cursor_status = true; |
| 294 | } |
| 295 | |
| 296 | Invalidate(); |
| 297 | |
| 298 | Widget::HandleFocusChange( focused_widget ); |
| 299 | } |
| 300 | |
| 301 | void Entry::HandleSizeChange() { |
| 302 | if( HasFocus() ) { |
nothing calls this directly
no outgoing calls
no test coverage detected