Lines Matching full:lparam
42 static inline LPARAM relativeCursorPosition(HWND hwnd)
50 static inline POINT point(LPARAM lParam)
52 POINT point = { GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam) };
162 static bool isKeypadEvent(WPARAM wParam, LPARAM lParam, WebEvent::Type type)
187 return HIWORD(lParam) & KF_EXTENDED;
198 return !(HIWORD(lParam) & KF_EXTENDED);
327 WebMouseEvent WebEventFactory::createWebMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool didActivateWebView)
352 lParam = relativeCursorPosition(hWnd);
386 POINT position = point(lParam);
398 WebWheelEvent WebEventFactory::createWebWheelEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
403 POINT globalPosition = point(lParam);
446 WebKeyboardEvent WebEventFactory::createWebKeyboardEvent(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam)
455 bool autoRepeat = HIWORD(lparam) & KF_REPEAT;
456 bool isKeypad = isKeypadEvent(wparam, lparam, type);