Home
last modified time | relevance | path

Searched refs:wParam (Results 1 – 25 of 49) sorted by relevance

12

/AOO42X/main/vcl/win/source/window/
H A Dsalobj.cxx130 …sult = ( 1 == ImplSendMessage( pSalObj->maSysData.hWnd, rMsg.message, rMsg.wParam, rMsg.lParam ) ); in ImplInterceptChildWindowKeyDown()
143 LRESULT CALLBACK SalSysMsgProc( int nCode, WPARAM wParam, LPARAM lParam ) in SalSysMsgProc() argument
176 if ( pObject && !ImplFindSalObject( (HWND)pData->wParam ) ) in SalSysMsgProc()
180 if ( !pData->wParam || !ImplFindSalObject( (HWND)pData->wParam ) ) in SalSysMsgProc()
191 pObject->mhLastFocusWnd = (HWND)pData->wParam; in SalSysMsgProc()
196 return CallNextHookEx( pSalData->mhSalObjMsgHook, nCode, wParam, lParam ); in SalSysMsgProc()
228 if ( ((pMsg->wParam >= 65) && (pMsg->wParam <= 90)) || in ImplSalPreDispatchMsg()
229 ((pMsg->wParam >= 48) && (pMsg->wParam <= 57)) ) in ImplSalPreDispatchMsg()
234 else if ( ((pMsg->wParam >= VK_F1) && (pMsg->wParam <= VK_F24)) || in ImplSalPreDispatchMsg()
235 ((pMsg->wParam >= VK_SPACE) && (pMsg->wParam <= VK_HELP)) || in ImplSalPreDispatchMsg()
[all …]
H A Dsalframe.cxx3328 WPARAM wParam, LPARAM lParam ) in ImplHandleMouseMsg() argument
3342 ImplPostMessage( hWnd, nMsg, wParam, lParam ); in ImplHandleMouseMsg()
3386 (aTempMsg.wParam == wParam) ) in ImplHandleMouseMsg()
3515 static long ImplHandleWheelMsg( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam ) in ImplHandleWheelMsg() argument
3527 WORD nWinModCode = LOWORD( wParam ); in ImplHandleWheelMsg()
3538 aWheelEvt.mnDelta = (short)HIWORD( wParam ); in ImplHandleWheelMsg()
3586 static sal_uInt16 ImplSalGetKeyCode( WPARAM wParam ) in ImplSalGetKeyCode() argument
3591 if ( wParam < KEY_TAB_SIZE ) in ImplSalGetKeyCode()
3592 nKeyCode = aImplTranslateKeyTab[wParam]; in ImplSalGetKeyCode()
3596 std::map< UINT, sal_uInt16 >::const_iterator it = pSalData->maVKMap.find( (UINT)wParam ); in ImplSalGetKeyCode()
[all …]
/AOO42X/main/vcl/win/source/app/
H A Dsalinst.cxx102 LRESULT CALLBACK SalComWndProcA( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam );
103 LRESULT CALLBACK SalComWndProcW( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam );
758 LRESULT CALLBACK SalComWndProc( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam, int& rDef ) in SalComWndProc() argument
766 ImplSalPrinterAbortJobAsync( (HDC)wParam ); in SalComWndProc()
770 ImplSalYield( (sal_Bool)wParam, (sal_Bool)lParam ); in SalComWndProc()
780 ImplPostMessage( hWnd, SAL_MSG_RELEASEWAITYIELD, wParam, lParam ); in SalComWndProc()
789 …et = (LRESULT)ImplSalCreateFrame( GetSalData()->mpFirstInstance, (HWND)lParam, (sal_uLong)wParam ); in SalComWndProc()
793 nRet = (LRESULT)ImplSalReCreateHWND( (HWND)wParam, (HWND)lParam, FALSE ); in SalComWndProc()
797 nRet = (LRESULT)ImplSalReCreateHWND( (HWND)wParam, (HWND)lParam, TRUE ); in SalComWndProc()
825 nRet = (LRESULT)GetDCEx( (HWND)wParam, 0, DCX_CACHE ); in SalComWndProc()
[all …]
H A Dsaldata.cxx131 BOOL ImplPostMessage( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam ) in ImplPostMessage() argument
133 return PostMessageW( hWnd, nMsg, wParam, lParam ); in ImplPostMessage()
138 BOOL ImplSendMessage( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam ) in ImplSendMessage() argument
140 BOOL bRet = SendMessageW( hWnd, nMsg, wParam, lParam ); in ImplSendMessage()
/AOO42X/main/dtrans/test/win32/dnd/
H A Datlwindow.cxx50 LRESULT APIENTRY EditSubclassProc( HWND hwnd, UINT uMsg,WPARAM wParam, LPARAM lParam) ;
65 LRESULT AWindow::OnClose(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) in OnClose() argument
84 LRESULT AWindow::OnCreate(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) in OnCreate() argument
141 LRESULT AWindow::OnMouseAction(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) in OnMouseAction() argument
156 LRESULT AWindow::OnTimer(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) in OnTimer() argument
225 LRESULT AWindow::OnSize(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) in OnSize() argument
237 LRESULT AWindow::OnFocus(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) in OnFocus() argument
246 LRESULT APIENTRY EditSubclassProc( HWND hwnd, UINT uMsg,WPARAM wParam, LPARAM lParam) in EditSubclassProc() argument
252 ::SendMessage( hAWindow, uMsg, wParam, lParam); in EditSubclassProc()
256 wParam, lParam); in EditSubclassProc()
H A Datlwindow.hxx87 LRESULT OnClose(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
88 LRESULT OnCreate(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
89 LRESULT OnMouseAction(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
90 LRESULT OnTimer(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
91 LRESULT OnSize(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
92 LRESULT OnFocus(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
H A DdndTest.cxx168 InitializationData* pData= (InitializationData*)msg.wParam; in MTAFunc()
179 StartDragData* pData= (StartDragData*)msg.wParam; in MTAFunc()
/AOO42X/main/dtrans/source/win32/mtaole/
H A DMtaOleClipb.cxx640 LRESULT CMtaOleClipboard::sendMessage( UINT msg, WPARAM wParam, LPARAM lParam ) in sendMessage() argument
642 return ::SendMessageA( m_hwndMtaOleReqWnd, msg, wParam, lParam ); in sendMessage()
650 sal_Bool CMtaOleClipboard::postMessage( UINT msg, WPARAM wParam, LPARAM lParam ) in postMessage() argument
652 return PostMessageA( m_hwndMtaOleReqWnd, msg, wParam, lParam ) ? sal_True : sal_False; in postMessage()
660 LRESULT CALLBACK CMtaOleClipboard::mtaOleReqWndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lP… in mtaOleReqWndProc() argument
672 IDataObject* pIDataObject = reinterpret_cast< IDataObject* >( wParam ); in mtaOleReqWndProc()
692 aMsgCtx->hr = pImpl->onGetClipboard( reinterpret_cast< LPSTREAM* >(wParam) ); in mtaOleReqWndProc()
712 …l->onRegisterClipViewer( reinterpret_cast<CMtaOleClipboard::LPFNC_CLIPVIEWER_CALLBACK_t>(wParam) ); in mtaOleReqWndProc()
719 reinterpret_cast< HWND >( wParam ), reinterpret_cast< HWND >( lParam ) ); in mtaOleReqWndProc()
736 lResult = DefWindowProcA( hWnd, uMsg, wParam, lParam ); in mtaOleReqWndProc()
/AOO42X/main/desktop/win32/source/QuickStart/
H A DQuickStart.cpp201 return msg.wParam; in WinMain()
281 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in WndProc() argument
401 if( wParam == UPDATE_TIMER ) in WndProc()
422 return DefWindowProc(hWnd, message, wParam, lParam); in WndProc()
428 LRESULT CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM) in About() argument
436 if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL) in About()
438 EndDialog(hDlg, LOWORD(wParam)); in About()
/AOO42X/main/vcl/inc/win/
H A Dsaldata.hxx221 LRESULT CALLBACK SalFrameWndProcA( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam );
222 LRESULT CALLBACK SalFrameWndProcW( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam );
232 long ImplHandleSalObjKeyMsg( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam );
233 long ImplHandleSalObjSysCharMsg( HWND hWnd, WPARAM wParam, LPARAM lParam );
234 sal_Bool ImplHandleGlobalMsg( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam, LRESULT& rlResult…
349 BOOL ImplPostMessage( HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam );
350 BOOL ImplSendMessage( HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam );
/AOO42X/main/sal/workben/clipboardwben/testpaste/
H A Dcbptest.cxx175 return msg.wParam; in WinMain()
254 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in WndProc() argument
268 wmId = LOWORD(wParam); in WndProc()
269 wmEvent = HIWORD(wParam); in WndProc()
283 return DefWindowProc( hWnd, message, wParam, lParam ); in WndProc()
310 return DefWindowProc( hWnd, message, wParam, lParam ); in WndProc()
/AOO42X/main/sal/workben/clipboardwben/testcopy/
H A Dcbcpytest.cxx163 return msg.wParam; in WinMain()
242 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in WndProc() argument
256 wmId = LOWORD(wParam); in WndProc()
257 wmEvent = HIWORD(wParam); in WndProc()
275 return DefWindowProc( hWnd, message, wParam, lParam ); in WndProc()
305 return DefWindowProc( hWnd, message, wParam, lParam ); in WndProc()
/AOO42X/main/sal/workben/clipboardwben/testviewer/
H A Dcbvtest.cxx122 return msg.wParam; in WinMain()
197 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in WndProc() argument
215 wmId = LOWORD(wParam); in WndProc()
216 wmEvent = HIWORD(wParam); in WndProc()
230 return DefWindowProc( hWnd, message, wParam, lParam ); in WndProc()
259 return DefWindowProc( hWnd, message, wParam, lParam ); in WndProc()
/AOO42X/main/crashrep/source/win32/
H A Dsoreport.cpp864 WPARAM wParam, in PreviewDialogProc() argument
982 switch ( LOWORD(wParam) ) in PreviewDialogProc()
986 EndDialog( hwndDlg, wParam ); in PreviewDialogProc()
1034 WPARAM wParam, in OptionsDialogProc() argument
1094 switch ( LOWORD(wParam) ) in OptionsDialogProc()
1099 if ( BN_CLICKED == HIWORD(wParam) ) in OptionsDialogProc()
1120 EndDialog( hwndDlg, wParam ); in OptionsDialogProc()
1164 WPARAM wParam, in ReportDialogProc() argument
1215 if ( (BOOL)wParam ) in ReportDialogProc()
1248 switch ( LOWORD(wParam) ) in ReportDialogProc()
[all …]
/AOO42X/main/fpicker/source/win32/filepicker/
H A DWinFileOpenImpl.cxx509 HWND hWnd, UINT wMessage, WPARAM wParam, LPARAM lParam) in SubClassFunc() argument
526 hWnd,wMessage,wParam,lParam); in SubClassFunc()
533 hWnd,wMessage,wParam,lParam); in SubClassFunc()
541 hWnd,wMessage,wParam,lParam); in SubClassFunc()
549 hWnd,wMessage,wParam,lParam); in SubClassFunc()
551 pImpl->onWMShow((sal_Bool)wParam); in SubClassFunc()
561 hWnd,wMessage,wParam,lParam); in SubClassFunc()
567 hWnd,wMessage,wParam,lParam); in SubClassFunc()
H A DFileOpenDlg.cxx557 HWND hChildDlg, unsigned int uiMsg, WPARAM wParam, LPARAM lParam) in ofnHookProc() argument
596 hChildDlg, LOWORD(wParam), HIWORD(lParam)); in ofnHookProc()
608 HWND hWnd, UINT wMessage, WPARAM wParam, LPARAM lParam) in BaseDlgProc() argument
629 hWnd,wMessage,wParam,lParam); in BaseDlgProc()
H A DFileOpenDlg.hxx306 WPARAM wParam, // message parameter
315 HWND hWnd, UINT wMessage, WPARAM wParam, LPARAM lParam );
/AOO42X/main/dtrans/source/inc/
H A DMtaOleClipb.hxx76 sal_Bool postMessage( UINT msg, WPARAM wParam = 0, LPARAM lParam = 0 );
77 LRESULT sendMessage( UINT msg, WPARAM wParam = 0, LPARAM lParam = 0 );
93 static LRESULT CALLBACK mtaOleReqWndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
127 friend LRESULT CALLBACK mtaOleReqWndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
/AOO42X/main/winaccessibility/source/service/
H A Dmsaaservice_impl.cxx47 extern long GetMSComPtr(long hWnd, long lParam, long wParam);
113 virtual sal_Int32 SAL_CALL getAccObjectPtr (long hWnd, long lParam, long wParam)
154 sal_Int32 MSAAServiceImpl::getAccObjectPtr ( long hWnd, long lParam, long wParam) throw (RuntimeExc… in getAccObjectPtr() argument
156 return GetMSComPtr(hWnd, lParam, wParam); in getAccObjectPtr()
H A DAccObjectWinManager.cxx67 long GetMSComPtr(long hWnd, long lParam, long wParam) in GetMSComPtr() argument
70 return (long)g_acc_manager->Get_ToATInterface(HWND((void*)hWnd),lParam,wParam ); in GetMSComPtr()
136 long AccObjectWinManager::Get_ToATInterface( HWND hWnd, long lParam, long wParam) in Get_ToATInterface() argument
156 HRESULT result = LresultFromObject(IID_IAccessible, wParam, pTemp); in Get_ToATInterface()
/AOO42X/main/sfx2/source/appl/
H A Dshutdowniconw32.cxx363 LRESULT CALLBACK listenerWndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) in listenerWndProc() argument
463 return DefWindowProc(hWnd, uMsg, wParam, lParam); in listenerWndProc()
482 return DefWindowProc(hWnd, uMsg, wParam, lParam); in listenerWndProc()
504 LRESULT CALLBACK executerWndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) in executerWndProc() argument
514 switch( LOWORD(wParam) ) in executerWndProc()
563 return DefWindowProc(hWnd, uMsg, wParam, lParam); in executerWndProc()
595 return msg.wParam; // Exit code of WM_QUIT in SystrayThread()
/AOO42X/main/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/
H A Dnativeview.c129 HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) in NativeViewWndProc() argument
136 if (wParam == WM_CREATE) in NativeViewWndProc()
166 return CallWindowProc( hFuncPtr, hWnd, uMsg, wParam, lParam); in NativeViewWndProc()
/AOO42X/main/embeddedobj/test/Container1/nativelib/
H A Dnativeview.c142 HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
149 if (wParam == WM_CREATE)
179 return CallWindowProc( hFuncPtr, hWnd, uMsg, wParam, lParam);
/AOO42X/main/bean/native/win32/
H A Dcom_sun_star_comp_beans_LocalOfficeWindow.c160 WPARAM wParam, in OpenOfficeWndProc() argument
166 if (wParam == WM_CREATE) { in OpenOfficeWndProc()
199 hWnd, uMsg, wParam, lParam); in OpenOfficeWndProc()
/AOO42X/main/shell/inc/internal/
H A Dpropsheets.hxx77 static BOOL CALLBACK PropPageSummaryProc(HWND hwnd, UINT uiMsg, WPARAM wParam, LPARAM lParam);
78 … static BOOL CALLBACK PropPageStatisticsProc(HWND hwnd, UINT uiMsg, WPARAM wParam, LPARAM lParam);

12