Lines Matching refs:pImpl

142 	: pResMgr( pMgrP ), bDummy( bDummyP ), pImpl(0L)  in SfxModule()
161 pImpl = new SfxModule_Impl; in Construct_Impl()
162 pImpl->pSlotPool = new SfxSlotPool( &pApp->GetAppSlotPool_Impl(), pResMgr ); in Construct_Impl()
164 pImpl->pTbxCtrlFac=0; in Construct_Impl()
165 pImpl->pStbCtrlFac=0; in Construct_Impl()
166 pImpl->pMenuCtrlFac=0; in Construct_Impl()
167 pImpl->pFactArr=0; in Construct_Impl()
168 pImpl->pImgListSmall=0; in Construct_Impl()
169 pImpl->pImgListBig=0; in Construct_Impl()
170 pImpl->pImgListHiSmall=0; in Construct_Impl()
171 pImpl->pImgListHiBig=0; in Construct_Impl()
196 delete pImpl; in ~SfxModule()
207 return pImpl->pSlotPool; in GetSlotPool()
214 DBG_ASSERT( pImpl, "Kein echtes Modul!" ); in RegisterChildWindow()
216 if (!pImpl->pFactArr) in RegisterChildWindow()
217 pImpl->pFactArr = new SfxChildWinFactArr_Impl; in RegisterChildWindow()
220 for (sal_uInt16 nFactory=0; nFactory<pImpl->pFactArr->Count(); ++nFactory) in RegisterChildWindow()
222 if (pFact->nId == (*pImpl->pFactArr)[nFactory]->nId) in RegisterChildWindow()
224 pImpl->pFactArr->Remove( nFactory ); in RegisterChildWindow()
231 pImpl->pFactArr->C40_INSERT( in RegisterChildWindow()
232 SfxChildWinFactory, pFact, pImpl->pFactArr->Count() ); in RegisterChildWindow()
240 DBG_ASSERT( pImpl, "Kein echtes Modul!" ); in RegisterChildWindowContext()
242 sal_uInt16 nCount = pImpl->pFactArr->Count(); in RegisterChildWindowContext()
245 SfxChildWinFactory *pF = (*pImpl->pFactArr)[nFactory]; in RegisterChildWindowContext()
262 if (!pImpl->pTbxCtrlFac) in RegisterToolBoxControl()
263 pImpl->pTbxCtrlFac = new SfxTbxCtrlFactArr_Impl; in RegisterToolBoxControl()
266 for ( sal_uInt16 n=0; n<pImpl->pTbxCtrlFac->Count(); n++ ) in RegisterToolBoxControl()
268 SfxTbxCtrlFactory *pF = (*pImpl->pTbxCtrlFac)[n]; in RegisterToolBoxControl()
277 pImpl->pTbxCtrlFac->C40_INSERT( SfxTbxCtrlFactory, pFact, pImpl->pTbxCtrlFac->Count() ); in RegisterToolBoxControl()
284 if (!pImpl->pStbCtrlFac) in RegisterStatusBarControl()
285 pImpl->pStbCtrlFac = new SfxStbCtrlFactArr_Impl; in RegisterStatusBarControl()
288 for ( sal_uInt16 n=0; n<pImpl->pStbCtrlFac->Count(); n++ ) in RegisterStatusBarControl()
290 SfxStbCtrlFactory *pF = (*pImpl->pStbCtrlFac)[n]; in RegisterStatusBarControl()
299 pImpl->pStbCtrlFac->C40_INSERT( SfxStbCtrlFactory, pFact, pImpl->pStbCtrlFac->Count() ); in RegisterStatusBarControl()
306 if (!pImpl->pMenuCtrlFac) in RegisterMenuControl()
307 pImpl->pMenuCtrlFac = new SfxMenuCtrlFactArr_Impl; in RegisterMenuControl()
310 for ( sal_uInt16 n=0; n<pImpl->pMenuCtrlFac->Count(); n++ ) in RegisterMenuControl()
312 SfxMenuCtrlFactory *pF = (*pImpl->pMenuCtrlFac)[n]; in RegisterMenuControl()
321 pImpl->pMenuCtrlFac->C40_INSERT( SfxMenuCtrlFactory, pFact, pImpl->pMenuCtrlFac->Count() ); in RegisterMenuControl()
328 return pImpl->pTbxCtrlFac; in GetTbxCtrlFactories_Impl()
335 return pImpl->pStbCtrlFac; in GetStbCtrlFactories_Impl()
342 return pImpl->pMenuCtrlFac; in GetMenuCtrlFactories_Impl()
349 return pImpl->pFactArr; in GetChildWinFactories_Impl()
354 return pImpl->GetImageList( pResMgr, bBig, sal_False ); in GetImageList_Impl()
359 return pImpl->GetImageList( pResMgr, bBig, bHiContrast ); in GetImageList_Impl()