Lines Matching refs:pShell
67 ShellDescriptor (SfxShell* pShell, ShellId nId);
83 IsShell (const SfxShell* pShell) : mpShell(pShell) {} in IsShell() argument
144 void TakeShellsFromStack (const SfxShell* pShell);
239 void Deactivate (SfxShell* pShell);
242 SfxShell* pShell,
304 void ViewShellManager::DeactivateViewShell (const ViewShell* pShell) in DeactivateViewShell() argument
306 if (mbValid && pShell!=NULL) in DeactivateViewShell()
307 mpImpl->DeactivateViewShell(*pShell); in DeactivateViewShell()
363 void ViewShellManager::ActivateShell (SfxShell* pShell) in ActivateShell() argument
365 if (mbValid && pShell!=NULL) in ActivateShell()
366 mpImpl->ActivateShell(*pShell); in ActivateShell()
372 void ViewShellManager::DeactivateShell (const SfxShell* pShell) in DeactivateShell() argument
374 if (mbValid && pShell!=NULL) in DeactivateShell()
375 mpImpl->DeactivateShell(*pShell); in DeactivateShell()
708 SfxShell* pShell = iShell->mpShell; in DeactivateSubShell() local
709 if (pShell == NULL) in DeactivateSubShell()
718 TakeShellsFromStack(pShell); in DeactivateSubShell()
835 SfxShell* pShell = NULL; in GetShell() local
844 pShell = iShell->mpShell; in GetShell()
856 pShell = iSubShell->mpShell; in GetShell()
862 return pShell; in GetShell()
966 SfxShell* pShell = aSfxShellStack.back(); in UpdateShellStack() local
969 OSL_TRACE("removing shell %p from stack\r", pShell); in UpdateShellStack()
971 mrBase.RemoveSubShell(pShell); in UpdateShellStack()
1013 void ViewShellManager::Implementation::TakeShellsFromStack (const SfxShell* pShell) in TakeShellsFromStack() argument
1024 OSL_TRACE("TakeShellsFromStack(%p)\r", pShell); in TakeShellsFromStack()
1037 pShell = NULL; in TakeShellsFromStack()
1040 else if (pShellOnStack == pShell) in TakeShellsFromStack()
1044 if (pShell != NULL) in TakeShellsFromStack()
1052 if (pShellOnStack == pShell) in TakeShellsFromStack()
1064 if (pShellOnStack == pShell) in TakeShellsFromStack()
1321 SfxShell* pShell = maActiveViewShells.front().mpShell; in Shutdown() local
1322 if (pShell != NULL) in Shutdown()
1324 ViewShell* pViewShell = dynamic_cast<ViewShell*>(pShell); in Shutdown()
1328 DeactivateShell(*pShell); in Shutdown()
1377 void ViewShellManager::Implementation::Deactivate (SfxShell* pShell) in Deactivate() argument
1379 OSL_ASSERT(pShell!=NULL); in Deactivate()
1383 ViewShell* pViewShell = dynamic_cast<ViewShell*>(pShell); in Deactivate()
1398 pShell->Deactivate(sal_True); in Deactivate()
1433 SfxShell* pShell, in ShellDescriptor() argument
1435 : mpShell(pShell), in ShellDescriptor()