Lines Matching refs:Point
1784 POINT Point; in WindowProc() local
1785 ::GetCursorPos(&Point); in WindowProc()
1786 ::ScreenToClient(m_hWnd, &Point); in WindowProc()
1790 m_pBehindModal->ModalMouseNotify(HIWORD(lParam), Point.x, Point.y); in WindowProc()
1802 MSG msg = { m_hWnd, HIWORD(lParam), 0, MAKELPARAM(Point.x, Point.y) }; in WindowProc()
1807 HandleMouseMsg(HIWORD(lParam), Point.x, Point.y); in WindowProc()
2446 POINT Point; in ShowTip() local
2447 ::GetCursorPos(&Point); in ShowTip()
2448 ::ScreenToClient(*m_pToolTipTarget->m_pWindow, &Point); in ShowTip()
2452 if (!::PtInRect(&rc, Point)) in ShowTip()
2536 POINT Point; in GetTipWindowRect() local
2537 GetCursorPos(&Point); in GetTipWindowRect()
2566 HMONITOR hMon = ::MonitorFromPoint(Point, MONITOR_DEFAULTTONEAREST); in GetTipWindowRect()
2575 pRect->left = Point.x; in GetTipWindowRect()
2577 pRect->top = Point.y + cyCursor - yHotspot; in GetTipWindowRect()
3675 POINT Point; in STDMETHODIMP_() local
3676 ::ClientToScreen(*m_pWindow, &Point); in STDMETHODIMP_()
3681 rc.left = Point.x + m_rcWnd.left - m_ptHit.x; in STDMETHODIMP_()
3684 rc.top = Point.y + m_rcWnd.top - m_ptHit.y; in STDMETHODIMP_()
3688 rc.right = Point.x + m_rcWnd.right - m_ptHit.x; in STDMETHODIMP_()
3695 rc.bottom = Point.y + m_rcWnd.bottom - m_ptHit.y; in STDMETHODIMP_()
3706 POINT Point = { x, y }; in STDMETHODIMP_() local
3711 ::ClientToScreen(*m_pWindow, &Point); in STDMETHODIMP_()
3712 m_ptHit = Point; in STDMETHODIMP_()