Lines Matching refs:pImp

142 :	pImp(0),  in SfxShell()
147 pImp = new SfxShell_Impl; in SfxShell()
148 pImp->pViewSh = 0; in SfxShell()
149 pImp->pFrame = 0; in SfxShell()
150 pImp->pRepeatTarget = 0; in SfxShell()
151 pImp->bInAppBASIC = sal_False; in SfxShell()
152 pImp->nHelpId = 0L; in SfxShell()
153 pImp->bActive = sal_False; in SfxShell()
154 pImp->nDisableFlags = 0; in SfxShell()
168 : pImp(0), in SfxShell()
173 pImp = new SfxShell_Impl; in SfxShell()
174 pImp->pViewSh = pViewSh; in SfxShell()
175 pImp->pFrame = 0; in SfxShell()
176 pImp->pRepeatTarget = 0; in SfxShell()
177 pImp->bInAppBASIC = sal_False; in SfxShell()
178 pImp->nHelpId = 0L; in SfxShell()
179 pImp->bActive = sal_False; in SfxShell()
197 delete pImp; in ~SfxShell()
211 pImp->aObjectName = rName; in SetName()
225 return pImp->aObjectName; in GetName()
258 return pImp->pFrame ? pImp->pFrame->GetDispatcher() : 0; in GetDispatcher()
272 return pImp->pViewSh; in GetViewShell()
303 if ( pImp->pFrame ) in GetFrame()
304 return pImp->pFrame; in GetFrame()
305 if ( pImp->pViewSh ) in GetFrame()
306 return pImp->pViewSh->GetViewFrame(); in GetFrame()
335 for ( sal_uInt16 nPos = 0; nPos < pImp->aItems.Count(); ++nPos ) in GetItem()
336 if ( pImp->aItems.GetObject(nPos)->Which() == nSlotId ) in GetItem()
337 return pImp->aItems.GetObject(nPos); in GetItem()
364 for ( sal_uInt16 nPos = 0; nPos < pImp->aItems.Count(); ++nPos ) in RemoveItem()
365 if ( pImp->aItems.GetObject(nPos)->Which() == nSlotId ) in RemoveItem()
368 SfxPoolItem *pItem = pImp->aItems.GetObject(nPos); in RemoveItem()
370 pImp->aItems.Remove(nPos); in RemoveItem()
417 SfxPoolItem **ppLoopItem = (SfxPoolItem**) pImp->aItems.GetData(); in PutItem()
419 for ( nPos = 0; nPos < pImp->aItems.Count(); ++nPos, ++ppLoopItem ) in PutItem()
425 pImp->aItems.Remove(nPos); in PutItem()
426 pImp->aItems.Insert( (SfxPoolItemPtr) pItem, nPos ); in PutItem()
447 pImp->aItems.Insert((SfxPoolItemPtr)pItem, nPos ); in PutItem()
480 return pImp; in GetBroadcaster()
551 return pImp->pRepeatTarget; in GetRepeatTarget()
576 pImp->pRepeatTarget = pTarget; in SetRepeatTarget()
682 pImp->pFrame = pFrame; in DoActivate_Impl()
683 pImp->bActive = sal_True; in DoActivate_Impl()
723 if ( bMDI && pImp->pFrame == pFrame ) in DoDeactivate_Impl()
726 pImp->pFrame = 0; in DoDeactivate_Impl()
727 pImp->bActive = sal_False; in DoDeactivate_Impl()
738 return pImp->bActive; in IsActive()
894 if( !pImp->pExecuter ) in ExecuteSlot()
895 pImp->pExecuter = new svtools::AsynchronLink( in ExecuteSlot()
897 pImp->pExecuter->Call( new SfxRequest( rReq ) ); in ExecuteSlot()
1090 sal_uInt16 nCount = pImp->aSlotArr.Count(); in SFX_EXEC_STUB()
1124 if (pImp->aSlotArr.Count()) in SFX_EXEC_STUB()
1126 SfxSlot *pSlot = (pImp->aSlotArr)[0]; in SFX_EXEC_STUB()
1133 pImp->aSlotArr.Insert(pNewSlot, (sal_uInt16) n); in SFX_EXEC_STUB()
1136 pImp->aVerbList = aVerbs; in SFX_EXEC_STUB()
1152 return pImp->aVerbList; in GetVerbs()
1195 com::sun::star::uno::Sequence < com::sun::star::embed::VerbDescriptor > rList = pImp->aVerbList; in GetVerbSlot_Impl()
1202 return pImp->aSlotArr[nIndex]; in GetVerbSlot_Impl()
1211 pImp->nHelpId = nId; in SetHelpId()
1218 return pImp->nHelpId; in GetHelpId()
1253 if ( !pImp->pUpdater ) in UIFeatureChanged()
1254 pImp->pUpdater = new svtools::AsynchronLink( Link( this, DispatcherUpdate_Impl ) ); in UIFeatureChanged()
1257 pImp->pUpdater->Call( pFrame->GetDispatcher(), sal_True ); in UIFeatureChanged()
1263 pImp->nDisableFlags = nFlags; in SetDisableFlags()
1268 return pImp->nDisableFlags; in GetDisableFlags()
1282 pImp->maContextChangeBroadcaster.Initialize(rsContextName); in SetContextName()
1287 pImp->pViewSh = pView; in SetViewShell_Impl()
1298 pImp->maContextChangeBroadcaster.Activate(pViewFrame->GetFrame().GetFrameInterface()); in BroadcastContextForActivation()
1300 pImp->maContextChangeBroadcaster.Deactivate(pViewFrame->GetFrame().GetFrameInterface()); in BroadcastContextForActivation()
1308 return pImp->maContextChangeBroadcaster.SetBroadcasterEnabled(bIsEnabled); in SetContextBroadcasterEnabled()