| 44 | } |
| 45 | |
| 46 | void Button::HandleMouseEnter( int /*x*/, int /*y*/ ) { |
| 47 | if( GetState() == State::NORMAL ) { |
| 48 | SetState( State::PRELIGHT ); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | void Button::HandleMouseLeave( int /*x*/, int /*y*/ ) { |
| 53 | if( GetState() == State::PRELIGHT ) { |
nothing calls this directly
no outgoing calls
no test coverage detected