Lines Matching refs:nFlags
502 void screen_flow_diagram_win::OnLButtonDown(UINT nFlags, CPoint point) in OnLButtonDown() argument
549 void screen_flow_diagram_win::OnLButtonUp(UINT nFlags, CPoint point) in OnLButtonUp() argument
559 void screen_flow_diagram_win::OnRButtonDown(UINT nFlags, CPoint point) in OnRButtonDown() argument
561 OnLButtonDown(nFlags, point); in OnRButtonDown()
563 CWnd::OnRButtonDown(nFlags, point); in OnRButtonDown()
567 void screen_flow_diagram_win::OnRButtonUp(UINT nFlags, CPoint point) in OnRButtonUp() argument
583 CWnd::OnRButtonUp(nFlags, point); in OnRButtonUp()
852 void screen_flow_diagram_win::OnMouseMove(UINT nFlags, CPoint point) in OnMouseMove() argument
856 if ((nFlags & MK_LBUTTON) == 0) in OnMouseMove()
868 if (mpDragItem && (nFlags & MK_LBUTTON)) in OnMouseMove()
961 CWnd::OnMouseMove(nFlags, point); in OnMouseMove()
965 BOOL screen_flow_diagram_win::OnMouseWheel(UINT nFlags, short zDelta, CPoint pt) in OnMouseWheel() argument
968 if (nFlags & MK_CONTROL) in OnMouseWheel()
980 return CWnd::OnMouseWheel(nFlags, zDelta, pt); in OnMouseWheel()
984 BOOL wasScrolled = m_scroll_helper->OnMouseWheel(nFlags, zDelta, pt); in OnMouseWheel()