Home | History | Annotate | Download | only in win

Lines Matching refs:WPARAM

743 LRESULT CALLBACK PopupMenu::PopupMenuWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
752 return popup->wndProc(hWnd, message, wParam, lParam);
766 return ::DefWindowProc(hWnd, message, wParam, lParam);
771 LRESULT PopupMenu::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
798 switch (LOWORD(wParam)) {
835 ::SendMessage(client()->hostWindow()->platformPageClient(), message, wParam, lParam);
842 if (isASCIIPrintable(wParam))
847 ::PostMessage(m_popup, WM_HOST_WINDOW_CHAR, wParam, lParam);
859 switch (wParam) {
885 PlatformMouseEvent event(hWnd, message, wParam, MAKELPARAM(mousePoint.x(), mousePoint.y()));
898 if (!::PtInRect(&bounds, mousePoint) && !(wParam & MK_LBUTTON) && client()) {
905 ::PostMessage(m_popup, WM_HOST_WINDOW_MOUSEMOVE, wParam, lParam);
909 if ((shouldHotTrack || wParam & MK_LBUTTON) && ::PtInRect(&bounds, mousePoint))
921 PlatformMouseEvent event(hWnd, message, wParam, MAKELPARAM(mousePoint.x(), mousePoint.y()));
946 PlatformMouseEvent event(hWnd, message, wParam, MAKELPARAM(mousePoint.x(), mousePoint.y()));
971 for (incrementWheelDelta(GET_WHEEL_DELTA_WPARAM(wParam)); abs(wheelDelta()) >= WHEEL_DELTA; reduceWheelDelta(WHEEL_DELTA)) {
991 paint(clientRect(), (HDC)wParam);
995 lResult = DefWindowProc(hWnd, message, wParam, lParam);