Searched refs:wParam (Results 1 - 25 of 88) sorted by relevance

1234

/macosx-10.10/WebCore-7600.1.25/platform/win/
H A DPlatformMouseEventWin.cpp82 PlatformMouseEvent::PlatformMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool didActivateWebView) argument
83 : PlatformEvent(messageToEventType(message), wParam & MK_SHIFT, wParam & MK_CONTROL, GetKeyState(VK_MENU) & HIGH_BIT_MASK_SHORT, GetKeyState(VK_MENU) & HIGH_BIT_MASK_SHORT, currentTime())
88 , m_modifierFlags(wParam)
110 if (wParam & MK_LBUTTON)
112 else if (wParam & MK_MBUTTON)
114 else if (wParam & MK_RBUTTON)
H A DWheelEventWin.cpp87 PlatformWheelEvent::PlatformWheelEvent(HWND hWnd, WPARAM wParam, LPARAM lParam, bool isMouseHWheel) argument
88 : PlatformEvent(PlatformEvent::Wheel, wParam & MK_SHIFT, wParam & MK_CONTROL, GetKeyState(VK_MENU) & HIGH_BIT_MASK_SHORT, GetKeyState(VK_MENU) & HIGH_BIT_MASK_SHORT, ::GetTickCount() * 0.001)
101 float delta = GET_WHEEL_DELTA_WPARAM(wParam) / static_cast<float>(WHEEL_DELTA);
H A DWindowMessageBroadcaster.cpp108 LRESULT CALLBACK WindowMessageBroadcaster::SubclassedWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) argument
117 (*it)->windowReceivedMessage(hwnd, message, wParam, lParam);
125 return CallWindowProc(originalWndProc, hwnd, message, wParam, lParam);
H A DSharedTimerWin.cpp83 LRESULT CALLBACK TimerWindowWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
91 PostMessage(hWnd, message, wParam, lParam);
97 if (wParam == sharedTimerID) {
102 else if (wParam == endHighResTimerID) {
114 return DefWindowProc(hWnd, message, wParam, lParam);
H A DPopupMenuWin.cpp799 LRESULT CALLBACK PopupMenuWin::PopupMenuWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
802 return popup->wndProc(hWnd, message, wParam, lParam);
812 return ::DefWindowProc(hWnd, message, wParam, lParam);
817 LRESULT PopupMenuWin::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
849 switch (LOWORD(wParam)) {
911 ::SendMessage(client()->hostWindow()->platformPageClient(), message, wParam, lParam);
918 if (isASCIIPrintable(wParam))
923 ::PostMessage(m_popup, WM_HOST_WINDOW_CHAR, wParam, lParam);
936 switch (wParam) {
962 PlatformMouseEvent event(hWnd, message, wParam, MAKELPARA
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Dpasswd_dlg.c50 pwd_dialog_proc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
55 switch(wParam)
61 EndDialog(hwndDlg, wParam);
/macosx-10.10/WTF-7600.1.24/wtf/win/
H A DRunLoopWin.cpp37 LRESULT CALLBACK RunLoop::RunLoopWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
40 return runLoop->wndProc(hWnd, message, wParam, lParam);
50 return ::DefWindowProc(hWnd, message, wParam, lParam);
53 LRESULT RunLoop::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
60 RunLoop::TimerBase::timerFired(this, wParam);
64 return ::DefWindowProc(hWnd, message, wParam, lParam);
H A DMainThreadWin.cpp43 LRESULT CALLBACK ThreadingWindowWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
48 return DefWindowProc(hWnd, message, wParam, lParam);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/ca/win/
H A DLayerChangesFlusher.cpp71 LRESULT LayerChangesFlusher::hookCallback(int code, WPARAM wParam, LPARAM lParam) argument
77 return shared().hookFired(code, wParam, lParam);
80 LRESULT LayerChangesFlusher::hookFired(int code, WPARAM wParam, LPARAM lParam) argument
95 LRESULT result = ::CallNextHookEx(m_hook, code, wParam, lParam);
/macosx-10.10/BerkeleyDB-21/db/examples_cxx/wce_tpcb/
H A DTpcbUI.cpp58 return msg.wParam;
134 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
141 DefWindowProc(hWnd, message, wParam, lParam);
152 return DefWindowProc(hWnd, message, wParam, lParam);
158 LRESULT CALLBACK MainDialog(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) argument
182 if (LOWORD(wParam) == IDC_INIT_BUTTON ||
183 LOWORD(wParam) == IDC_RUN_BUTTON ) {
221 if (LOWORD(wParam) == IDC_ADV_BUTTON) {
225 } else if (LOWORD(wParam) == IDC_INIT_BUTTON) {
232 } else if (LOWORD(wParam)
306 AdvancedDialog(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) argument
[all...]
/macosx-10.10/WebKit-7600.1.25/wince/
H A DWebView.cpp63 LRESULT CALLBACK WebView::webViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
66 return webView->wndProc(hWnd, message, wParam, lParam);
68 return DefWindowProc(hWnd, message, wParam, lParam);
281 bool WebView::handleMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
291 PlatformMouseEvent mouseEvent(hWnd, message, wParam, lParam);
343 bool WebView::handleMouseWheel(HWND hWnd, WPARAM wParam, LPARAM lParam, bool isHorizontal)
345 PlatformWheelEvent wheelEvent(hWnd, wParam, lParam, isHorizontal);
393 LRESULT WebView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
414 handled = handleMouseEvent(hWnd, message, wParam, lParam);
419 handled = handleMouseWheel(hWnd, wParam, lPara
[all...]
H A DWebView.h81 static LRESULT CALLBACK webViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
85 bool handleMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
86 bool handleMouseWheel(HWND hWnd, WPARAM wParam, LPARAM lParam, bool isHorizontal);
/macosx-10.10/tcl-105/tk84/tk/win/
H A DtkWinX.c55 WPARAM wParam, LPARAM lParam)) CallWindowProcA,
56 (LRESULT (WINAPI *)(HWND hWnd, UINT Msg, WPARAM wParam,
72 WPARAM wParam, LPARAM lParam)) CallWindowProcW,
73 (LRESULT (WINAPI *)(HWND hWnd, UINT Msg, WPARAM wParam,
120 WPARAM wParam, LPARAM lParam));
121 static unsigned int GetState _ANSI_ARGS_((UINT message, WPARAM wParam,
804 TkWinChildProc(hwnd, message, wParam, lParam)
807 WPARAM wParam;
814 UpdateInputLanguage(wParam);
821 result = DefWindowProc(hwnd, message, wParam, lPara
[all...]
H A DtkWinInt.h160 WPARAM wParam, LPARAM lParam));
191 UINT Msg, WPARAM wParam, LPARAM lParam);
192 LRESULT (WINAPI *defWindowProc)(HWND hWnd, UINT Msg, WPARAM wParam,
/macosx-10.10/WebCore-7600.1.25/platform/graphics/win/
H A DMediaPlayerPrivateFullscreenWindow.cpp134 LRESULT MediaPlayerPrivateFullscreenWindow::staticWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
145 return window->wndProc(hWnd, message, wParam, lParam);
147 return ::DefWindowProc(hWnd, message, wParam, lParam);
150 LRESULT MediaPlayerPrivateFullscreenWindow::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
198 HDC context = (HDC)wParam;
204 lResult = m_client->fullscreenClientWndProc(hWnd, message, wParam, lParam);
/macosx-10.10/OpenSSL098-52/src/apps/
H A Dwinrand.c113 return msg.wParam;
116 LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam) argument
138 if (RAND_event(iMsg, wParam, lParam) == 1 && seeded == 0)
147 return DefWindowProc(hwnd, iMsg, wParam, lParam);
/macosx-10.10/WebCore-7600.1.25/plugins/win/
H A DPluginMessageThrottlerWin.cpp71 void PluginMessageThrottlerWin::appendMessage(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) argument
77 message->wParam = wParam;
111 ::CallWindowProc(m_pluginView->pluginWndProc(), message->hWnd, message->msg, message->wParam, message->lParam);
H A DPluginMessageThrottlerWin.h40 WPARAM wParam; member in struct:WebCore::PluginMessage
/macosx-10.10/tcl-105/tk/tk/win/
H A DtkWinEmbed.c420 WPARAM wParam,
449 * wParam - a sub message
463 switch(wParam) {
482 * wParam - a handle of an embedded window
485 * An embedded window may send this message with a wParam of NULL
496 if (wParam) {
498 Tk_HWNDToWindow((HWND) wParam);
504 containerPtr->embeddedHWnd = (HWND)wParam;
518 * wParam - N/A
539 * wParam
411 TkWinEmbeddedEventProc( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) argument
[all...]
H A DtkWinX.c70 WPARAM wParam, LPARAM lParam)) CallWindowProcA,
71 (LRESULT (WINAPI *)(HWND hWnd, UINT Msg, WPARAM wParam,
88 WPARAM wParam, LPARAM lParam)) CallWindowProcW,
89 (LRESULT (WINAPI *)(HWND hWnd, UINT Msg, WPARAM wParam,
140 WPARAM wParam, LPARAM lParam);
141 static unsigned int GetState(UINT message, WPARAM wParam, LPARAM lParam);
814 WPARAM wParam,
821 UpdateInputLanguage((int) wParam);
828 result = DefWindowProc(hwnd, message, wParam, lParam);
847 GenerateXEvent(hwnd, message, wParam, lPara
797 TkWinChildProc( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) argument
902 Tk_TranslateWinEvent( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam, LRESULT *resultPtr) argument
998 GenerateXEvent( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) argument
1300 GetState( UINT message, WPARAM wParam, LPARAM lParam) argument
[all...]
/macosx-10.10/mDNSResponder-561.1.1/mDNSWindows/ControlPanel/
H A DConfigPropertySheet.cpp95 CConfigPropertySheet::OnCommand(WPARAM wParam, LPARAM lParam) argument
99 if ( ( wParam == ID_WIZFINISH ) || ( wParam == IDOK ) || ( wParam == IDCANCEL ) )
104 return CPropertySheet::OnCommand(wParam, lParam);
/macosx-10.10/vim-55/src/
H A Dglbl_ime.cpp130 global_ime_DefWindowProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam) argument
135 wParam, lParam, &lResult) != S_OK)
139 lResult = DefWindowProcW(hWnd, Msg, wParam, lParam);
142 lResult = DefWindowProc(hWnd, Msg, wParam, lParam);
H A Dgui_w32.c32 # define HANDLE_WM_XBUTTONUP(hwnd, wParam, lParam, fn) \
33 ((fn)((hwnd), (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
36 # define HANDLE_WM_XBUTTONDOWN(hwnd, wParam, lParam, fn) \
37 ((fn)((hwnd), FALSE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
40 # define HANDLE_WM_XBUTTONDBLCLK(hwnd, wParam, lParam, fn) \
41 ((fn)((hwnd), TRUE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
82 # define HANDLE_WM_RBUTTONDBLCLK(hwnd, wParam, lParam, fn) \
83 ((fn)((hwnd), TRUE, (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)), 0L)
86 # define HANDLE_WM_MBUTTONUP(hwnd, wParam, lParam, fn) \
87 ((fn)((hwnd), (int)(short)LOWORD(lParam), (int)(short)HIWORD(lParam), (UINT)(wParam)),
741 _WndProc( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
2894 dialog_callback( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) argument
3601 tearoff_callback( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) argument
[all...]
/macosx-10.10/emacs-93/emacs/src/
H A Dw32inevt.c293 int wParam; local
383 wParam = event->wVirtualKeyCode;
384 if (GetAsyncKeyState (wParam) & 0x8000)
388 faked_key = wParam;
389 keybd_event ((BYTE) wParam, (BYTE) MapVirtualKey (wParam, 0),
391 keybd_event ((BYTE) wParam, (BYTE) MapVirtualKey (wParam, 0),
393 keybd_event ((BYTE) wParam, (BYTE) MapVirtualKey (wParam,
[all...]
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebNodeHighlight.cpp222 LRESULT CALLBACK OverlayWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) argument
226 return ::DefWindowProc(hwnd, msg, wParam, lParam);
228 return ::DefWindowProc(hwnd, msg, wParam, lParam);
276 void WebNodeHighlight::windowReceivedMessage(HWND window, UINT msg, WPARAM wParam, LPARAM lParam) argument
281 onWebViewShowWindow(wParam);

Completed in 679 milliseconds

1234