| 459 | } |
| 460 | |
| 461 | BOOL SListView::OnItemGetRect(SItemPanel *pItem,CRect &rcItem) |
| 462 | { |
| 463 | int iPosition = (int)pItem->GetItemIndex(); |
| 464 | int nOffset = m_lvItemLocator->Item2Position(iPosition)-m_siVer.nPos; |
| 465 | rcItem = GetClientRect(); |
| 466 | rcItem.top += nOffset; |
| 467 | rcItem.bottom = rcItem.top + m_lvItemLocator->GetItemHeight(iPosition); |
| 468 | return TRUE; |
| 469 | } |
| 470 | |
| 471 | void SListView::OnItemSetCapture(SItemPanel *pItem,BOOL bCapture) |
| 472 | { |
no test coverage detected