Home
last modified time | relevance | path

Searched refs:iPane (Results 1 – 5 of 5) sorted by relevance

/AOO41X/main/sdext/source/presenter/
H A DPresenterPaneContainer.cxx124 PaneList::iterator iPane (maPanes.begin()); in disposing() local
126 for ( ; iPane!=iEnd; ++iPane) in disposing()
127 if ((*iPane)->mxPaneId.is()) in disposing()
128 RemovePane((*iPane)->mxPaneId); in disposing()
299 PaneList::const_iterator iPane; in FindBorderWindow() local
301 for (iPane=maPanes.begin(); iPane!=iEnd; ++iPane) in FindBorderWindow()
303 if ((*iPane)->mxBorderWindow == rxBorderWindow) in FindBorderWindow()
304 return *iPane; in FindBorderWindow()
315 PaneList::const_iterator iPane; in FindContentWindow() local
317 for (iPane=maPanes.begin(); iPane!=iEnd; ++iPane) in FindContentWindow()
[all …]
H A DPresenterController.cxx403 PresenterPaneContainer::PaneList::const_iterator iPane; in UpdatePaneTitles() local
404 for (iPane=mpPaneContainer->maPanes.begin(); iPane!=mpPaneContainer->maPanes.end(); ++iPane) in UpdatePaneTitles()
406 OSL_ASSERT((*iPane).get() != NULL); in UpdatePaneTitles()
409 ? (*iPane)->msAccessibleTitleTemplate in UpdatePaneTitles()
410 : (*iPane)->msTitleTemplate); in UpdatePaneTitles()
449 (*iPane)->msTitle = sResult.makeStringAndClear(); in UpdatePaneTitles()
450 if ((*iPane)->mxPane.is()) in UpdatePaneTitles()
451 (*iPane)->mxPane->SetTitle((*iPane)->msTitle); in UpdatePaneTitles()
461 PresenterPaneContainer::PaneList::const_iterator iPane; in UpdateViews() local
462 for (iPane=mpPaneContainer->maPanes.begin(); iPane!=mpPaneContainer->maPanes.end(); ++iPane) in UpdateViews()
[all …]
H A DPresenterPaneAnimator.cxx1122 vector<PaneDescriptor>::iterator iPane; in Restore() local
1123 for (iPane=maPanes.begin(); iPane!=maPanes.end(); ++iPane) in Restore()
1125 iPane->Restore(); in Restore()
1167 vector<PaneDescriptor>::iterator iPane; in MovePanes() local
1168 for (iPane=maPanes.begin(); iPane!=maPanes.end(); ++iPane) in MovePanes()
1170 awt::Rectangle aBox (iPane->mpPaneDescriptor->mxBorderWindow->getPosSize()); in MovePanes()
1174 iPane->mpPaneDescriptor->mxPaneId->getResourceURL(), in MovePanes()
1190 vector<PaneDescriptor>::iterator iPane; in ActivatePanes() local
1191 for (iPane=maPanes.begin(); iPane!=maPanes.end(); ++iPane) in ActivatePanes()
1193 iPane->mpPaneDescriptor->SetActivationState(true); in ActivatePanes()
[all …]
H A DPresenterWindowManager.cxx170 PresenterPaneContainer::PaneList::const_iterator iPane; in disposing() local
172 for (iPane=mpPaneContainer->maPanes.begin(); iPane!=iEnd; ++iPane) in disposing()
174 if ((*iPane)->mxBorderWindow.is()) in disposing()
176 (*iPane)->mxBorderWindow->removeWindowListener(this); in disposing()
177 (*iPane)->mxBorderWindow->removeFocusListener(this); in disposing()
179 (*iPane)->mxBorderWindow->removeMouseListener(this); in disposing()
556 PresenterPaneContainer::PaneList::const_iterator iPane; in PaintChildren() local
558 for (iPane=mpPaneContainer->maPanes.begin(); iPane!=iEnd; ++iPane) in PaintChildren()
563 if ( ! (*iPane)->mbIsActive) in PaintChildren()
565 if ((*iPane)->mbIsSprite) in PaintChildren()
[all …]
H A DPresenterPaneFactory.cxx151 ResourceContainer::const_iterator iPane (mpResourceCache->begin()); in disposing() local
153 for ( ; iPane!=iEnd; ++iPane) in disposing()
155 Reference<lang::XComponent> xPaneComponent (iPane->second, UNO_QUERY); in disposing()