| 558 | } |
| 559 | |
| 560 | LRESULT SListView::OnKeyEvent(UINT uMsg,WPARAM wParam,LPARAM lParam) |
| 561 | { |
| 562 | LRESULT lRet=0; |
| 563 | SItemPanel *pItem = GetItemPanel(m_iSelItem); |
| 564 | if(pItem) |
| 565 | { |
| 566 | lRet=pItem->DoFrameEvent(uMsg,wParam,lParam); |
| 567 | SetMsgHandled(pItem->IsMsgHandled()); |
| 568 | }else |
| 569 | { |
| 570 | SetMsgHandled(FALSE); |
| 571 | } |
| 572 | return lRet; |
| 573 | } |
| 574 | |
| 575 | void SListView::OnMouseLeave() |
| 576 | { |
nothing calls this directly
no test coverage detected