| 792 | } |
| 793 | |
| 794 | LRESULT OnMouseMove(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM lParam, BOOL &bHandled) |
| 795 | { |
| 796 | // Column resize code added by Remco Verhoef, thanks. |
| 797 | if( m_iPrevious > 0 ) { |
| 798 | int x = _GetDragPos(GET_X_LPARAM(lParam)); |
| 799 | if( m_iPrevXGhostBar != x ) { |
| 800 | if( m_iPrevXGhostBar ) _DrawGhostBar(m_iPrevXGhostBar); |
| 801 | m_iPrevXGhostBar = x; |
| 802 | _DrawGhostBar(m_iPrevXGhostBar); |
| 803 | } |
| 804 | return 0; |
| 805 | } |
| 806 | bHandled = FALSE; |
| 807 | return 0; |
| 808 | } |
| 809 | |
| 810 | LRESULT OnSetCursor(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& bHandled) |
| 811 | { |
nothing calls this directly
no test coverage detected