Home | History | Annotate | Download | only in win

Lines Matching refs:POINT

44     POINT point = { -1, -1 };
45 ::GetCursorPos(&point);
46 ::ScreenToClient(hwnd, &point);
47 return MAKELPARAM(point.x, point.y);
50 static inline POINT point(LPARAM lParam)
52 POINT point = { GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam) };
53 return point;
72 static inline int clickCount(WebEvent::Type type, WebMouseEvent::Button button, const POINT& position, double timeStampSeconds)
76 static POINT lastClickPosition;
386 POINT position = point(lParam);
387 POINT globalPosition = position;
403 POINT globalPosition = point(lParam);
404 POINT position = globalPosition;