| 631 | } |
| 632 | |
| 633 | void CFamiTrackerView::OnLButtonDown(UINT nFlags, CPoint point) |
| 634 | { |
| 635 | SetTimer(TMR_SCROLL, 10, NULL); |
| 636 | |
| 637 | m_pPatternEditor->OnMouseDown(point); |
| 638 | SetCapture(); // Capture mouse |
| 639 | InvalidateCursor(); |
| 640 | |
| 641 | if (m_pPatternEditor->IsOverHeader(point)) |
| 642 | InvalidateHeader(); |
| 643 | |
| 644 | CView::OnLButtonDown(nFlags, point); |
| 645 | } |
| 646 | |
| 647 | void CFamiTrackerView::OnLButtonUp(UINT nFlags, CPoint point) |
| 648 | { |
nothing calls this directly
no test coverage detected