Lines Matching refs:mpImpl

170 : mpImpl( new vcl::WindowPropertySetData )  in WindowPropertySet()
172 mpImpl->mpTopWindow = i_pTopWindow; in WindowPropertySet()
173 mpImpl->mbOwner = i_bTakeOwnership; in WindowPropertySet()
175mpImpl->mpTopWindow->AddChildEventListener( LINK( this, WindowPropertySet, ChildEventListener ) ); in WindowPropertySet()
177 mpImpl->mxPropSet = uno::Reference< beans::XPropertySet >( in WindowPropertySet()
180 …OSL_ENSURE( mpImpl->mxPropSet.is(), "could not create instance of com.sun.star.beans.PropertyBag" … in WindowPropertySet()
181mpImpl->mxPropSetAccess = uno::Reference< beans::XPropertyAccess >( mpImpl->mxPropSet, uno::UNO_QU… in WindowPropertySet()
182 OSL_ENSURE( mpImpl->mxPropSet.is(), "could not query XPropertyAccess interface" ); in WindowPropertySet()
183 if( ! mpImpl->mxPropSetAccess.is() ) in WindowPropertySet()
184 mpImpl->mxPropSet.clear(); in WindowPropertySet()
190 if( mpImpl->mxPropSet.is() ) in WindowPropertySet()
192 mpImpl->mxListener.set( mpImpl->mpListener = new WindowPropertySetListener( this ) ); in WindowPropertySet()
198mpImpl->mpTopWindow->RemoveChildEventListener( LINK( this, WindowPropertySet, ChildEventListener )… in ~WindowPropertySet()
200 delete mpImpl; in ~WindowPropertySet()
201 mpImpl = NULL; in ~WindowPropertySet()
206 return mpImpl->mxPropSet; in getPropertySet()
215 …WindowPropertySetData::PropertyMapEntry& rEntry = mpImpl->maProperties[ i_pLayout->getIdentifier()… in addLayoutToSet()
232 …WindowPropertySetData::PropertyMapEntry& rEntry = mpImpl->maProperties[ i_pWindow->getIdentifier()… in addWindowToSet()
250 uno::Reference< beans::XPropertyContainer > xCont( mpImpl->mxPropSet, uno::UNO_QUERY ); in setupProperties()
256 = mpImpl->maProperties.begin(); it != mpImpl->maProperties.end(); ++it ) in setupProperties()
276 mpImpl->maProperties.find( aIdentifier ); in propertyChange()
277 if( it != mpImpl->maProperties.end() ) in propertyChange()
290 = mpImpl->maProperties.find( pEvent->GetWindow()->getIdentifier() ); in IMPL_LINK()
291 … if( it != mpImpl->maProperties.end() ) // this is valid, some unnamed child may have sent an event in IMPL_LINK()
324 mpImpl->mpListener->suspend( true ); in IMPL_LINK()
327 mpImpl->mxPropSetAccess->setPropertyValues( aNewPropsOut ); in IMPL_LINK()
333 mpImpl->mpListener->suspend( false ); in IMPL_LINK()