| 22 | } |
| 23 | |
| 24 | LRESULT WindowImplBase::ResponseDefaultKeyEvent(WPARAM wParam) |
| 25 | { |
| 26 | if (wParam == VK_RETURN) |
| 27 | { |
| 28 | return FALSE; |
| 29 | } |
| 30 | else if (wParam == VK_ESCAPE) |
| 31 | { |
| 32 | Close(); |
| 33 | return TRUE; |
| 34 | } |
| 35 | |
| 36 | return FALSE; |
| 37 | } |
| 38 | |
| 39 | UINT WindowImplBase::GetClassStyle() const |
| 40 | { |
nothing calls this directly
no outgoing calls
no test coverage detected