Lines Matching refs:xChild

49 VCLXTabControl::ChildData::ChildData( uno::Reference< awt::XLayoutConstrains > const& xChild )  in ChildData()  argument
50 : Box_Base::ChildData( xChild ) in ChildData()
56 VCLXTabControl::createChild( uno::Reference< awt::XLayoutConstrains > const& xChild ) in createChild() argument
58 return new ChildData( xChild ); in createChild()
250 void VCLXTabControl::AddChild (uno::Reference< awt::XLayoutConstrains > const& xChild) in AddChild() argument
256 mIdMap[ xChild ] = mTabId++; in AddChild()
257 Box_Base::AddChild( xChild ); in AddChild()
264 const uno::Reference< awt::XLayoutConstrains > &xChild ) in addChild()
267 mIdMap[ xChild ] = insertTab(); in addChild()
268 Box_Base::addChild( xChild ); in addChild()
271 void SAL_CALL VCLXTabControl::removeChild( const uno::Reference< awt::XLayoutConstrains > &xChild ) in removeChild() argument
274 removeTab( mIdMap[xChild] ); in removeChild()
275 mIdMap[ xChild ] = -1; in removeChild()
276 Box_Base::removeChild( xChild ); in removeChild()
279 static void setChildrenVisible( uno::Reference < awt::XLayoutConstrains > xChild, bool visible ) in setChildrenVisible() argument
281 uno::Reference< awt::XWindow > xWin( xChild, uno::UNO_QUERY); in setChildrenVisible()
287 uno::Reference < awt::XLayoutContainer > xCont( xChild, uno::UNO_QUERY ); in setChildrenVisible()
391 < awt::XLayoutConstrains > xChild( child->mxChild ); in allocateArea() local
392 if ( xChild.is() ) in allocateArea()
394 uno::Reference< awt::XWindow > xWin( xChild, uno::UNO_QUERY ); in allocateArea()
403 setChildrenVisible( xChild, active ); in allocateArea()
417 allocateChildAt( xChild, childRect ); in allocateArea()