Lines Matching full:lparam
106 LRESULT CALLBACK WebView::WebViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
111 return webView->wndProc(hWnd, message, wParam, lParam);
114 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam);
121 return ::DefWindowProc(hWnd, message, wParam, lParam);
124 LRESULT WebView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
141 lResult = onPaintEvent(hWnd, message, wParam, lParam, handled);
144 lResult = onPrintClientEvent(hWnd, message, wParam, lParam, handled);
161 lResult = onMouseEvent(hWnd, message, wParam, lParam, handled);
165 lResult = onWheelEvent(hWnd, message, wParam, lParam, handled);
168 lResult = onHorizontalScroll(hWnd, message, wParam, lParam, handled);
171 lResult = onVerticalScroll(hWnd, message, wParam, lParam, handled);
174 lResult = onGestureNotify(hWnd, message, wParam, lParam, handled);
177 lResult = onGesture(hWnd, message, wParam, lParam, handled);
185 lResult = onKeyEvent(hWnd, message, wParam, lParam, handled);
188 lResult = onSizeEvent(hWnd, message, wParam, lParam, handled);
191 lResult = onWindowPositionChangedEvent(hWnd, message, wParam, lParam, handled);
194 lResult = onSetFocusEvent(hWnd, message, wParam, lParam, handled);
197 lResult = onKillFocusEvent(hWnd, message, wParam, lParam, handled);
200 lResult = onTimerEvent(hWnd, message, wParam, lParam, handled);
203 lResult = onShowWindowEvent(hWnd, message, wParam, lParam, handled);
206 lResult = onSetCursor(hWnd, message, wParam, lParam, handled);
212 lResult = onIMERequest(wParam, lParam);
215 handled = onIMEComposition(lParam);
221 handled = onIMESelect(wParam, lParam);
224 handled = onIMESetContext(wParam, lParam);
232 lResult = ::DefWindowProc(hWnd, message, wParam, lParam);
389 LRESULT WebView::onMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool& handled)
391 NativeWebMouseEvent mouseEvent = NativeWebMouseEvent(hWnd, message, wParam, lParam, m_wasActivatedByMouseEvent);
426 LRESULT WebView::onWheelEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool& handled)
428 WebWheelEvent wheelEvent = WebEventFactory::createWebWheelEvent(hWnd, message, wParam, lParam);
442 LRESULT WebView::onHorizontalScroll(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool& handled)
474 LRESULT WebView::onVerticalScroll(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool& handled)
506 LRESULT WebView::onGestureNotify(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool& handled)
511 GESTURENOTIFYSTRUCT* gn = reinterpret_cast<GESTURENOTIFYSTRUCT*>(lParam);
529 LRESULT WebView::onGesture(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool& handled)
542 HGESTUREINFO gestureHandle = reinterpret_cast<HGESTUREINFO>(lParam);
609 LRESULT WebView::onKeyEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool& handled)
611 m_page->handleKeyboardEvent(NativeWebKeyboardEvent(hWnd, message, wParam, lParam));
669 LRESULT WebView::onPaintEvent(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled)
688 LRESULT WebView::onPrintClientEvent(HWND hWnd, UINT, WPARAM wParam, LPARAM, bool& handled)
714 LRESULT WebView::onSizeEvent(HWND, UINT, WPARAM, LPARAM lParam, bool& handled)
716 int width = LOWORD(lParam);
717 int height = HIWORD(lParam);
728 LRESULT WebView::onWindowPositionChangedEvent(HWND, UINT, WPARAM, LPARAM lParam, bool& handled)
730 if (reinterpret_cast<WINDOWPOS*>(lParam)->flags & SWP_SHOWWINDOW)
737 LRESULT WebView::onSetFocusEvent(HWND, UINT, WPARAM, LPARAM lParam, bool& handled)
744 LRESULT WebView::onKillFocusEvent(HWND, UINT, WPARAM, LPARAM lParam, bool& handled)
751 LRESULT WebView::onTimerEvent(HWND hWnd, UINT, WPARAM wParam, LPARAM, bool& handled)
764 LRESULT WebView::onShowWindowEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool& handled)
766 // lParam is 0 when the message is sent because of a ShowWindow call.
769 if (!lParam)
776 LRESULT WebView::onSetCursor(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool& handled)
833 ::SendMessage(m_toolTipWindow, TTM_ADDTOOL, 0, reinterpret_cast<LPARAM>(&info));
1007 ::SendMessage(m_toolTipWindow, TTM_UPDATETIPTEXT, 0, reinterpret_cast<LPARAM>(&info));
1199 if (lparam & name) { \
1206 static String imeCompositionArgumentNames(LPARAM lparam)
1252 bool WebView::onIMEComposition(LPARAM lparam)
1254 LOG(TextInput, "onIMEComposition %s", imeCompositionArgumentNames(lparam).latin1().data());
1264 if (lparam & GCS_RESULTSTR || !lparam) {
1266 if (!getCompositionString(hInputContext, GCS_RESULTSTR, compositionString) && lparam)
1342 LRESULT WebView::onIMERequest(WPARAM request, LPARAM data)
1358 bool WebView::onIMESelect(WPARAM wparam, LPARAM lparam)
1361 UNUSED_PARAM(lparam);
1362 LOG(TextInput, "onIMESelect locale %ld %s", lparam, wparam ? "select" : "deselect");
1366 bool WebView::onIMESetContext(WPARAM wparam, LPARAM)
1377 ::DefWindowProcW(event.nativeEvent()->hwnd, event.nativeEvent()->message, event.nativeEvent()->wParam, event.nativeEvent()->lParam);
1512 void WebView::windowReceivedMessage(HWND, UINT message, WPARAM wParam, LPARAM)