Lines Matching refs:pEvent
131 IMPL_LINK( VCLXAccessibleComponent, WindowEventListener, VclSimpleEvent*, pEvent ) in IMPL_LINK() argument
135 DBG_ASSERT( pEvent && pEvent->ISA( VclWindowEvent ), "Unknown WindowEvent!" ); in IMPL_LINK()
141 …if ( pEvent && pEvent->ISA( VclWindowEvent ) && mxWindow.is() /* #122218# */ && (pEvent->GetId() !… in IMPL_LINK()
143 DBG_ASSERT( ((VclWindowEvent*)pEvent)->GetWindow(), "Window???" ); in IMPL_LINK()
144 …if( !((VclWindowEvent*)pEvent)->GetWindow()->IsAccessibilityEventsSuppressed() || ( pEvent->GetId(… in IMPL_LINK()
146 ProcessWindowEvent( *(VclWindowEvent*)pEvent ); in IMPL_LINK()
152 IMPL_LINK( VCLXAccessibleComponent, WindowChildEventListener, VclSimpleEvent*, pEvent ) in IMPL_LINK() argument
156 DBG_ASSERT( pEvent && pEvent->ISA( VclWindowEvent ), "Unknown WindowEvent!" ); in IMPL_LINK()
157 if ( pEvent && pEvent->ISA( VclWindowEvent ) && mxWindow.is() /* #i68079# */ ) in IMPL_LINK()
159 DBG_ASSERT( ((VclWindowEvent*)pEvent)->GetWindow(), "Window???" ); in IMPL_LINK()
160 if( !((VclWindowEvent*)pEvent)->GetWindow()->IsAccessibilityEventsSuppressed() ) in IMPL_LINK()
165 ProcessWindowChildEvent( *(VclWindowEvent*)pEvent ); in IMPL_LINK()