| 253 | } |
| 254 | |
| 255 | void Entry::HandleMouseLeave( int /*x*/, int /*y*/ ) { |
| 256 | if( !HasFocus() ) { |
| 257 | SetState( State::NORMAL ); |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | void Entry::HandleMouseButtonEvent( sf::Mouse::Button button, bool press, int x, int /*y*/ ) { |
| 262 | if( !press || !IsMouseInWidget() ) { |
nothing calls this directly
no outgoing calls
no test coverage detected