Home
last modified time | relevance | path

Searched refs:pMouseEvt (Results 1 – 10 of 10) sorted by path

/trunk/main/sw/source/ui/docvw/
H A DSidebarWin.cxx1064 MouseEvent* pMouseEvt = (MouseEvent*)pWinEvent->GetData(); in IMPL_LINK() local
1065 if ( pMouseEvt->IsEnterWindow() ) in IMPL_LINK()
1074 else if ( pMouseEvt->IsLeaveWindow()) in IMPL_LINK()
/trunk/main/toolkit/source/awt/
H A Dvclxwindow.cxx743 MouseEvent* pMouseEvt = (MouseEvent*)rVclWindowEvent.GetData(); in ProcessWindowEvent() local
744 …if ( mpImpl->getMouseListeners().getLength() && ( pMouseEvt->IsEnterWindow() || pMouseEvt->IsLeave… in ProcessWindowEvent()
746 awt::MouseEvent aEvent( VCLUnoHelper::createMouseEvent( *pMouseEvt, *this ) ); in ProcessWindowEvent()
749pMouseEvt->IsEnterWindow() ? &MouseListenerMultiplexer::mouseEntered : &MouseListenerMultiplexer::… in ProcessWindowEvent()
756 …if ( mpImpl->getMouseMotionListeners().getLength() && !pMouseEvt->IsEnterWindow() && !pMouseEvt->I… in ProcessWindowEvent()
758 awt::MouseEvent aEvent( VCLUnoHelper::createMouseEvent( *pMouseEvt, *this ) ); in ProcessWindowEvent()
760 if ( pMouseEvt->GetMode() & MOUSE_SIMPLEMOVE ) in ProcessWindowEvent()
/trunk/main/vcl/source/control/
H A Dbutton.cxx1681 const MouseEvent* pMouseEvt = NULL; in PreNotify() local
1683 if( (rNEvt.GetType() == EVENT_MOUSEMOVE) && (pMouseEvt = rNEvt.GetMouseEvent()) != NULL ) in PreNotify()
1685 if( pMouseEvt->IsEnterWindow() || pMouseEvt->IsLeaveWindow() ) in PreNotify()
2908 const MouseEvent* pMouseEvt = NULL; in PreNotify() local
2910 if( (rNEvt.GetType() == EVENT_MOUSEMOVE) && (pMouseEvt = rNEvt.GetMouseEvent()) != NULL ) in PreNotify()
2912 … if( !pMouseEvt->GetButtons() && !pMouseEvt->IsSynthetic() && !pMouseEvt->IsModifierChanged() ) in PreNotify()
2921 pMouseEvt->IsLeaveWindow() || pMouseEvt->IsEnterWindow() ) in PreNotify()
3905 const MouseEvent* pMouseEvt = NULL; in PreNotify() local
3907 if( (rNEvt.GetType() == EVENT_MOUSEMOVE) && (pMouseEvt = rNEvt.GetMouseEvent()) != NULL ) in PreNotify()
3909 … if( !pMouseEvt->GetButtons() && !pMouseEvt->IsSynthetic() && !pMouseEvt->IsModifierChanged() ) in PreNotify()
[all …]
H A Dilstbox.cxx2845 const MouseEvent* pMouseEvt = NULL; in PreNotify() local
2847 if( (rNEvt.GetType() == EVENT_MOUSEMOVE) && (pMouseEvt = rNEvt.GetMouseEvent()) != NULL ) in PreNotify()
2849 if( pMouseEvt->IsEnterWindow() || pMouseEvt->IsLeaveWindow() ) in PreNotify()
H A Dscrbar.cxx1388 const MouseEvent* pMouseEvt = NULL; in PreNotify() local
1390 if( (rNEvt.GetType() == EVENT_MOUSEMOVE) && (pMouseEvt = rNEvt.GetMouseEvent()) != NULL ) in PreNotify()
1392 … if( !pMouseEvt->GetButtons() && !pMouseEvt->IsSynthetic() && !pMouseEvt->IsModifierChanged() ) in PreNotify()
1399 if( pRect != pLastRect || pMouseEvt->IsLeaveWindow() || pMouseEvt->IsEnterWindow() ) in PreNotify()
H A Dspinbtn.cxx509 const MouseEvent* pMouseEvt = NULL; in PreNotify() local
511 if( (rNEvt.GetType() == EVENT_MOUSEMOVE) && (pMouseEvt = rNEvt.GetMouseEvent()) != NULL ) in PreNotify()
513 if( !pMouseEvt->GetButtons() && !pMouseEvt->IsSynthetic() && !pMouseEvt->IsModifierChanged() ) in PreNotify()
521 if( pRect != pLastRect || (pMouseEvt->IsLeaveWindow() || pMouseEvt->IsEnterWindow()) ) in PreNotify()
H A Dspinfld.cxx908 const MouseEvent* pMouseEvt = NULL; in PreNotify() local
910 if( (rNEvt.GetType() == EVENT_MOUSEMOVE) && (pMouseEvt = rNEvt.GetMouseEvent()) != NULL ) in PreNotify()
912 … if( !pMouseEvt->GetButtons() && !pMouseEvt->IsSynthetic() && !pMouseEvt->IsModifierChanged() ) in PreNotify()
920 … if( pRect != pLastRect || (pMouseEvt->IsLeaveWindow() || pMouseEvt->IsEnterWindow()) ) in PreNotify()
H A Dtabctrl.cxx1526 const MouseEvent* pMouseEvt = NULL; in PreNotify() local
1528 if( (rNEvt.GetType() == EVENT_MOUSEMOVE) && (pMouseEvt = rNEvt.GetMouseEvent()) != NULL ) in PreNotify()
1530 if( !pMouseEvt->GetButtons() && !pMouseEvt->IsSynthetic() && !pMouseEvt->IsModifierChanged() ) in PreNotify()
1537 if( pRect != pLastRect || (pMouseEvt->IsLeaveWindow() || pMouseEvt->IsEnterWindow()) ) in PreNotify()
/trunk/main/vcl/source/window/
H A Dsplitwin.cxx2701 const MouseEvent* pMouseEvt = NULL; in PreNotify() local
2703 if( (rNEvt.GetType() == EVENT_MOUSEMOVE) && (pMouseEvt = rNEvt.GetMouseEvent()) != NULL ) in PreNotify()
2705 … if( !pMouseEvt->GetButtons() && !pMouseEvt->IsSynthetic() && !pMouseEvt->IsModifierChanged() ) in PreNotify()
2718 if( pMouseEvt->IsLeaveWindow() || pMouseEvt->IsEnterWindow() ) in PreNotify()
H A Dwinproc.cxx2382 MouseEvent* pMouseEvt = (MouseEvent*) pEvent; in ImplWindowFrameProc() local
2386 aSalMouseEvent.mnX = pMouseEvt->GetPosPixel().X(); in ImplWindowFrameProc()
2387 aSalMouseEvent.mnY = pMouseEvt->GetPosPixel().Y(); in ImplWindowFrameProc()
2389 aSalMouseEvent.mnCode = pMouseEvt->GetButtons() | pMouseEvt->GetModifier(); in ImplWindowFrameProc()
2402 MouseEvent* pMouseEvt = (MouseEvent*) pEvent; in ImplWindowFrameProc() local
2406 aSalMouseEvent.mnX = pMouseEvt->GetPosPixel().X(); in ImplWindowFrameProc()
2407 aSalMouseEvent.mnY = pMouseEvt->GetPosPixel().Y(); in ImplWindowFrameProc()
2408 aSalMouseEvent.mnButton = pMouseEvt->GetButtons(); in ImplWindowFrameProc()
2409 aSalMouseEvent.mnCode = pMouseEvt->GetButtons() | pMouseEvt->GetModifier(); in ImplWindowFrameProc()
2419 MouseEvent* pMouseEvt = (MouseEvent*) pEvent; in ImplWindowFrameProc() local
[all …]

Completed in 96 milliseconds