/trunk/main/vcl/win/source/window/ |
H A D | salobj.cxx | 320 switch( nMsg ) in SalSysObjWndProc() 427 LRESULT nRet = SalSysObjWndProc( hWnd, nMsg, wParam, lParam, bDef ); in SalSysObjWndProcA() 429 nRet = DefWindowProcA( hWnd, nMsg, wParam, lParam ); in SalSysObjWndProcA() 436 LRESULT nRet = SalSysObjWndProc( hWnd, nMsg, wParam, lParam, bDef ); in SalSysObjWndProcW() 438 nRet = DefWindowProcW( hWnd, nMsg, wParam, lParam ); in SalSysObjWndProcW() 448 switch( nMsg ) in SalSysObjChildWndProc() 496 nRet = ImplSendMessage( hWndParent, nMsg, wParam, lParam ); in SalSysObjChildWndProc() 509 LRESULT nRet = SalSysObjChildWndProc( hWnd, nMsg, wParam, lParam, bDef ); in SalSysObjChildWndProcA() 511 nRet = DefWindowProcA( hWnd, nMsg, wParam, lParam ); in SalSysObjChildWndProcA() 518 LRESULT nRet = SalSysObjChildWndProc( hWnd, nMsg, wParam, lParam, bDef ); in SalSysObjChildWndProcW() [all …]
|
H A D | salframe.cxx | 2394 int nMsg; in CaptureMouse() local 3340 if( nMsg == WM_LBUTTONDOWN || nMsg == WM_MBUTTONDOWN || nMsg == WM_RBUTTONDOWN ) in ImplHandleMouseMsg() 3379 switch ( nMsg ) in ImplHandleMouseMsg() 3752 if ( (nMsg == WM_CHAR) || (nMsg == WM_SYSCHAR) ) in ImplHandleKeyMsg() 3892 sal_Bool bKeyUp = (nMsg == WM_KEYUP) || (nMsg == WM_SYSKEYUP); in ImplHandleKeyMsg() 4001 if ( (nMsg == WM_KEYDOWN) || (nMsg == WM_KEYUP) ) in ImplHandleSalObjKeyMsg() 4482 if ( (nMsg == WM_DISPLAYCHANGE) || (nMsg == WM_WININICHANGE) ) in ImplHandleSettingsChangeMsg() 4555 if ( (nMsg == WM_PALETTECHANGED) || (nMsg == SAL_MSG_POSTPALCHANGED) ) in ImplHandlePalette() 4562 if ( (nMsg == WM_QUERYNEWPALETTE) || (nMsg == WM_PALETTECHANGED) ) in ImplHandlePalette() 5869 switch( nMsg ) in SalFrameWndProc() [all …]
|
/trunk/main/avmedia/source/win/ |
H A D | window.cxx | 83 switch( nMsg ) in MediaPlayerWndProc() 123 if( WM_LBUTTONDOWN == nMsg || WM_LBUTTONUP == nMsg ) in MediaPlayerWndProc() 126 if( WM_MBUTTONDOWN == nMsg || WM_MBUTTONUP == nMsg ) in MediaPlayerWndProc() 129 if( WM_RBUTTONDOWN == nMsg || WM_RBUTTONUP == nMsg ) in MediaPlayerWndProc() 133 if( WM_LBUTTONDOWN == nMsg || in MediaPlayerWndProc() 134 WM_MBUTTONDOWN == nMsg || in MediaPlayerWndProc() 135 WM_RBUTTONDOWN == nMsg ) in MediaPlayerWndProc() 140 else if( WM_LBUTTONUP == nMsg || in MediaPlayerWndProc() 141 WM_MBUTTONUP == nMsg || in MediaPlayerWndProc() 142 WM_RBUTTONUP == nMsg ) in MediaPlayerWndProc() [all …]
|
H A D | player.cxx | 51 LRESULT CALLBACK MediaPlayerWndProc_2( HWND hWnd,UINT nMsg, WPARAM nPar1, LPARAM nPar2 ) in MediaPlayerWndProc_2() argument 58 switch( nMsg ) in MediaPlayerWndProc_2() 71 return( bProcessed ? 0 : DefWindowProc( hWnd, nMsg, nPar1, nPar2 ) ); in MediaPlayerWndProc_2()
|
/trunk/main/vcl/os2/source/window/ |
H A D | salobj.cxx | 96 MRESULT EXPENTRY SalSysObjWndProc( HWND hWnd, ULONG nMsg, in SalSysObjWndProc() argument 104 debug_printf( "SalSysObjWndProc hWnd 0x%x nMsg %d\n", hWnd, nMsg); in SalSysObjWndProc() 107 switch( nMsg ) in SalSysObjWndProc() 189 nRet = WinDefWindowProc( hWnd, nMsg, nMP1, nMP2 ); in SalSysObjWndProc() 195 MRESULT EXPENTRY SalSysObjChildWndProc( HWND hWnd, ULONG nMsg, in SalSysObjChildWndProc() argument 205 switch( nMsg ) in SalSysObjChildWndProc() 226 nRet = WinDefWindowProc( hWnd, nMsg, nMP1, nMP2 ); in SalSysObjChildWndProc() 232 MRESULT EXPENTRY SalSysObjClipWndProc( HWND hWnd, ULONG nMsg, in SalSysObjClipWndProc() argument 242 switch( nMsg ) in SalSysObjClipWndProc() 268 nRet = WinSendMsg( hWndParent, nMsg, nMP1, nMP2 ); in SalSysObjClipWndProc() [all …]
|
H A D | salframe.cxx | 83 MRESULT EXPENTRY SalFrameSubClassWndProc( HWND hWnd, ULONG nMsg, 2400 switch ( nMsg ) in ImplHandleMouseMsg() 2529 if ( nMsg == WM_MOUSEMOVE ) in ImplHandleMouseMsg() 2572 if( nMsg == WM_HSCROLL ) in ImplHandleWheelMsg() 3455 MRESULT EXPENTRY SalFrameWndProc( HWND hWnd, ULONG nMsg, in SalFrameWndProc() argument 3464 if (nMsg!=WM_TIMER && nMsg!=WM_MOUSEMOVE) in SalFrameWndProc() 3468 switch( nMsg ) in SalFrameWndProc() 3628 ImplHandleWheelMsg( hWnd, nMsg, nMP1, nMP2 ); in SalFrameWndProc() 3719 nRet = WinDefWindowProc( hWnd, nMsg, nMP1, nMP2 ); in SalFrameWndProc() 3750 if (nMsg == WM_QUERYTRACKINFO) { in SalFrameSubClassWndProc() [all …]
|
/trunk/main/vcl/win/source/app/ |
H A D | salinst.cxx | 102 LRESULT CALLBACK SalComWndProcA( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam ); 103 LRESULT CALLBACK SalComWndProcW( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam ); 763 switch ( nMsg ) in SalComWndProc() 840 LRESULT CALLBACK SalComWndProcA( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam ) argument 854 nRet = SalComWndProc( hWnd, nMsg, wParam, lParam, bDef ); 865 if ( !ImplHandleGlobalMsg( hWnd, nMsg, wParam, lParam, nRet ) ) 866 nRet = DefWindowProcA( hWnd, nMsg, wParam, lParam ); 871 LRESULT CALLBACK SalComWndProcW( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam ) argument 885 nRet = SalComWndProc( hWnd, nMsg, wParam, lParam, bDef ); 896 if ( !ImplHandleGlobalMsg( hWnd, nMsg, wParam, lParam, nRet ) ) [all …]
|
H A D | saldata.cxx | 131 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()
|
/trunk/main/vcl/inc/win/ |
H A D | saldata.hxx | 221 LRESULT CALLBACK SalFrameWndProcA( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam ); 222 LRESULT CALLBACK SalFrameWndProcW( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam ); 225 void CALLBACK SalTimerProc( HWND hWnd, UINT nMsg, UINT_PTR nId, DWORD nTime ); 232 long ImplHandleSalObjKeyMsg( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam ); 234 sal_Bool ImplHandleGlobalMsg( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam, LRESULT& rlResult…
|
/trunk/main/vcl/inc/os2/ |
H A D | saldata.hxx | 151 PM_BOOL SalImplHandleProcessMenu( HWND hWnd, ULONG nMsg, MPARAM nMP1, MPARAM nMP2 ); 179 MRESULT EXPENTRY SalFrameWndProc( HWND hWnd, ULONG nMsg, MPARAM nMP1, MPARAM nMP2 ); 180 MRESULT EXPENTRY SalFrameFrameProc( HWND hWnd, ULONG nMsg, MPARAM nMP1, MPARAM nMP2 ); 183 void SalTimerProc( HWND hWnd, UINT nMsg, UINT nId, ULONG nTime );
|
/trunk/main/vcl/os2/source/app/ |
H A D | salinst.cxx | 80 MRESULT EXPENTRY SalComWndProc( HWND hWnd, ULONG nMsg, MPARAM nMP1, MPARAM nMP2 ); 628 MRESULT EXPENTRY SalComWndProc( HWND hWnd, ULONG nMsg, in SalComWndProc() argument 633 switch ( nMsg ) in SalComWndProc() 689 return WinDefWindowProc( hWnd, nMsg, nMP1, nMP2 ); in SalComWndProc()
|
/trunk/main/dtrans/source/os2/clipb/ |
H A D | Os2Clipboard.cxx | 65 MRESULT EXPENTRY DtransObjWndProc( HWND hWnd, ULONG nMsg, MPARAM nMP1, MPARAM nMP2 ) in DtransObjWndProc() argument 68 switch ( nMsg ) in DtransObjWndProc() 92 return WinDefWindowProc( hWnd, nMsg, nMP1, nMP2 ); in DtransObjWndProc()
|
/trunk/main/extensions/source/scanner/ |
H A D | twain.cxx | 73 MRESULT EXPENTRY TwainWndProc( HWND hWnd, ULONG nMsg, MPARAM nParam1, MPARAM nParam2 ) in TwainWndProc() argument 85 LRESULT CALLBACK TwainWndProc( HWND hWnd,UINT nMsg, WPARAM nPar1, LPARAM nPar2 ) in TwainWndProc() argument 87 return DefWindowProc( hWnd, nMsg, nPar1, nPar2 ); in TwainWndProc()
|
H A D | scanwin.cxx | 153 LRESULT CALLBACK TwainWndProc( HWND hWnd,UINT nMsg, WPARAM nPar1, LPARAM nPar2 ) in TwainWndProc() argument 155 return DefWindowProc( hWnd, nMsg, nPar1, nPar2 ); in TwainWndProc()
|
/trunk/main/automation/inc/automation/ |
H A D | simplecm.hxx | 112 …InfoString( ByteString &nMsg, CM_InfoType nIT, CommunicationLink *pCL = NULL ): ByteString( nMsg )… in InfoString() argument
|