Lines Matching refs:iShell
57 SubShells::const_iterator iShell (maSubShells.find(nId)); in CreateShell() local
58 if (iShell != maSubShells.end()) in CreateShell()
59 return iShell->second.mpShell; in CreateShell()
113 SubShells::iterator iShell; in RemoveSubShell() local
114 for (iShell=maSubShells.begin(); iShell!=maSubShells.end(); ++iShell) in RemoveSubShell()
115 if (iShell->second.mpShell == pShell) in RemoveSubShell()
117 if (iShell->second.mpWindow != NULL) in RemoveSubShell()
118 iShell->second.mpWindow->RemoveEventListener( in RemoveSubShell()
120 mpViewShellManager->DeactivateSubShell(mrViewShell,iShell->first); in RemoveSubShell()
121 maSubShells.erase(iShell); in RemoveSubShell()
132 SubShells::const_iterator iShell; in MoveToTop() local
133 for (iShell=maSubShells.begin(); iShell!=maSubShells.end(); ++iShell) in MoveToTop()
134 if (iShell->second.mpShell == pShell) in MoveToTop()
137 mpViewShellManager->MoveSubShellToTop(mrViewShell,iShell->first); in MoveToTop()
150 SubShells::const_iterator iShell; in IMPL_LINK() local
152 for (iShell=maSubShells.begin(); iShell!=maSubShells.end(); ++iShell) in IMPL_LINK()
153 if (iShell->second.mpWindow == pWindow) in IMPL_LINK()
155 if (iShell != maSubShells.end()) in IMPL_LINK()
159 mpViewShellManager->ActivateSubShell(mrViewShell,iShell->first); in IMPL_LINK()