Home | History | Annotate | Download | only in wince

Lines Matching refs:lParam

59 LRESULT CALLBACK WebView::webViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
62 return webView->wndProc(hWnd, message, wParam, lParam);
64 return DefWindowProc(hWnd, message, wParam, lParam);
279 bool WebView::handleMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
289 PlatformMouseEvent mouseEvent(hWnd, message, wParam, lParam);
302 PlatformMouseEvent moveEvent(hWnd, WM_MOUSEMOVE, 0, lParam, false);
341 bool WebView::handleMouseWheel(HWND hWnd, WPARAM wParam, LPARAM lParam, bool isHorizontal)
343 PlatformWheelEvent wheelEvent(hWnd, wParam, lParam, isHorizontal);
347 bool WebView::handleKeyDown(WPARAM virtualKeyCode, LPARAM keyData, bool systemKeyDown)
369 bool WebView::handleKeyPress(WPARAM charCode, LPARAM keyData, bool systemKeyDown)
383 bool WebView::handleKeyUp(WPARAM virtualKeyCode, LPARAM keyData, bool systemKeyDown)
391 LRESULT WebView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
412 handled = handleMouseEvent(hWnd, message, wParam, lParam);
417 handled = handleMouseWheel(hWnd, wParam, lParam, wParam & MK_SHIFT);
421 handled = handleKeyDown(wParam, lParam, true);
425 handled = handleKeyDown(wParam, lParam, false);
429 handled = handleKeyUp(wParam, lParam, true);
433 handled = handleKeyUp(wParam, lParam, false);
437 handled = handleKeyPress(wParam, lParam, true);
441 handled = handleKeyPress(wParam, lParam, false);
445 PostMessage(m_parentWindowHandle, WM_CLOSE, wParam, lParam);
457 return DefWindowProc(hWnd, message, wParam, lParam);