Lines Matching refs:pPage

88             OBrowserPage* pPage = static_cast<OBrowserPage*>(m_aTabControl.GetTabPage(nID));  in ClearAll()  local
89 if (pPage) in ClearAll()
91 pPage->EnableInput(sal_False); in ClearAll()
93 delete pPage; in ClearAll()
105 delete m_aHiddenPages.begin()->second.pPage; in ClearAll()
124 … OBrowserPage* pPage = static_cast< OBrowserPage* >( m_aTabControl.GetTabPage( nFirstID ) ); in getMinimumHeight() local
125 if ( pPage ) in getMinimumHeight()
126 nMinHeight += pPage->getMinimumHeight(); in getMinimumHeight()
142 OBrowserPage* pPage = static_cast<OBrowserPage*>(m_aTabControl.GetTabPage(nID)); in getMinimumWidth() local
143 if (pPage) in getMinimumWidth()
145 sal_Int32 nCurPageMinWidth = pPage->getMinimumWidth(); in getMinimumWidth()
162 OBrowserPage* pPage = static_cast< OBrowserPage* >( m_aTabControl.GetTabPage( nID ) ); in CommitModified() local
164 if ( pPage && pPage->getListBox().IsModified() ) in CommitModified()
165 pPage->getListBox().CommitModified(); in CommitModified()
178 OBrowserPage* pPage = NULL; in getPage() local
181pPage = static_cast< OBrowserPage* >( m_aTabControl.GetTabPage( aPropertyPageIdPos->second ) ); in getPage()
182 return pPage; in getPage()
227 OBrowserPage* pPage = new OBrowserPage(&m_aTabControl); in AppendPage() local
228 pPage->SetText( _rText ); in AppendPage()
230 pPage->SetSizePixel(m_aTabControl.GetTabPageSizePixel()); in AppendPage()
231 pPage->getListBox().SetListener(m_pListener); in AppendPage()
232 pPage->getListBox().SetObserver(m_pObserver); in AppendPage()
233 pPage->getListBox().EnableHelpSection( m_bHasHelpSection ); in AppendPage()
234 pPage->getListBox().SetHelpLineLimites( m_nMinHelpLines, m_nMaxHelpLines ); in AppendPage()
235 pPage->SetHelpId( _rHelpId ); in AppendPage()
238 m_aTabControl.SetTabPage(nId, pPage); in AppendPage()
254 OBrowserPage* pPage = static_cast<OBrowserPage*>(m_aTabControl.GetTabPage(nID)); in RemovePage() local
256 if (pPage) in RemovePage()
257 pPage->EnableInput(sal_False); in RemovePage()
259 if (pPage) in RemovePage()
260 delete pPage; in RemovePage()
286 OBrowserPage* pPage = static_cast<OBrowserPage*>(m_aTabControl.GetTabPage(nID)); in Update() local
287 if (pPage) in Update()
288 _aUpdateFunction(&pPage->getListBox()); in Update()
309 OBrowserPage* pPage = static_cast< OBrowserPage* >( m_aTabControl.GetTabPage( nID ) ); in forEachPage() local
310 if ( !pPage ) in forEachPage()
312 (this->*_pOperation)( *pPage, _pArgument ); in forEachPage()
396 OBrowserPage* pPage = getPage( _nPageId ); in InsertEntry() local
397 DBG_ASSERT( pPage, "OPropertyEditor::InsertEntry: don't have such a page!" ); in InsertEntry()
398 if ( !pPage ) in InsertEntry()
401 sal_uInt16 nEntry = pPage->getListBox().InsertEntry( rData, nPos ); in InsertEntry()
413 OBrowserPage* pPage = getPage( _rName ); in RemoveEntry() local
414 if ( pPage ) in RemoveEntry()
416 OSL_VERIFY( pPage->getListBox().RemoveEntry( _rName ) ); in RemoveEntry()
427 OBrowserPage* pPage = getPage( rData.sName ); in ChangeEntry() local
428 if ( pPage ) in ChangeEntry()
429 pPage->getListBox().ChangeEntry( rData, EDITOR_LIST_REPLACE_EXISTING ); in ChangeEntry()
435 OBrowserPage* pPage = getPage( rEntryName ); in SetPropertyValue() local
436 if ( pPage ) in SetPropertyValue()
437 pPage->getListBox().SetPropertyValue( rEntryName, _rValue, _bUnknownValue ); in SetPropertyValue()
444 const OBrowserPage* pPage = getPage( rEntryName ); in GetPropertyPos() local
445 if ( pPage ) in GetPropertyPos()
446 nVal = pPage->getListBox().GetPropertyPos( rEntryName ); in GetPropertyPos()
469 aPagePos->second.pPage->SetSizePixel( m_aTabControl.GetTabPageSizePixel() ); in ShowPropertyPage()
470 …m_aTabControl.InsertPage( aPagePos->first, aPagePos->second.pPage->GetText(), aPagePos->second.nPo… in ShowPropertyPage()
471 m_aTabControl.SetTabPage( aPagePos->first, aPagePos->second.pPage ); in ShowPropertyPage()
482 …OBrowserPage* pPage = static_cast< OBrowserPage* >( m_aTabControl.GetTabPage( m_aTabControl.GetPag… in EnablePropertyControls() local
483 if ( pPage ) in EnablePropertyControls()
484 pPage->getListBox().EnablePropertyControls( _rEntryName, _nControls, _bEnable ); in EnablePropertyControls()
493 …OBrowserPage* pPage = static_cast< OBrowserPage* >( m_aTabControl.GetTabPage( m_aTabControl.GetPag… in EnablePropertyLine() local
494 if ( pPage ) in EnablePropertyLine()
495 pPage->getListBox().EnablePropertyLine( _rEntryName, _bEnable ); in EnablePropertyLine()
504 …OBrowserPage* pPage = static_cast<OBrowserPage*>(m_aTabControl.GetTabPage(m_aTabControl.GetCurPage… in GetPropertyControl() local
505 if (pPage) in GetPropertyControl()
506 xControl = pPage->getListBox().GetPropertyControl(rEntryName); in GetPropertyControl()