Lines Matching refs:pEvent
475 long X11SalObject::Dispatch( XEvent* pEvent ) in Dispatch() argument
482 if( pEvent->xany.window == pObject->maPrimary || in Dispatch()
483 pEvent->xany.window == pObject->maSecondary ) in Dispatch()
486 pEvent->type == ButtonPress || in Dispatch()
487 pEvent->type == ButtonRelease || in Dispatch()
488 pEvent->type == EnterNotify || in Dispatch()
489 pEvent->type == LeaveNotify || in Dispatch()
490 pEvent->type == MotionNotify in Dispatch()
498 XTranslateCoordinates( pEvent->xbutton.display, in Dispatch()
499 pEvent->xbutton.root, in Dispatch()
501 pEvent->xbutton.x_root, in Dispatch()
502 pEvent->xbutton.y_root, in Dispatch()
507 aEvt.mnTime = pEvent->xbutton.time; in Dispatch()
508 aEvt.mnCode = sal_GetCode( pEvent->xbutton.state ); in Dispatch()
511 if( pEvent->type == ButtonPress || in Dispatch()
512 pEvent->type == ButtonRelease ) in Dispatch()
514 switch( pEvent->xbutton.button ) in Dispatch()
520 nEvent = (pEvent->type == ButtonPress) ? in Dispatch()
524 else if( pEvent->type == EnterNotify ) in Dispatch()
532 switch( pEvent->type ) in Dispatch()