Lines Matching refs:pEntry

63 	SvLBoxEntry* pEntry = pTreeModel->First();  in IMPL_LINK()  local
65 while( pEntry ) in IMPL_LINK()
67 if(pTreeModel->IsAtRootDepth(pEntry) && GetCheckButtonState( pEntry ) == SV_BUTTON_CHECKED ) in IMPL_LINK()
69 pEntry = pTreeModel->Next( pEntry ); in IMPL_LINK()
72 pEntry = pTreeModel->First(); in IMPL_LINK()
73 SetCheckButtonState( pEntry, SV_BUTTON_CHECKED ); in IMPL_LINK()
90 SvLBoxEntry* pEntry = new SvLBoxEntry; in InsertPage() local
92 pEntry->AddItem( new SvLBoxButton( pEntry, SvLBoxButtonKind_enabledCheckbox, in InsertPage()
94 pEntry->AddItem( new SvLBoxContextBmp( pEntry, 0, Image(), Image(), 0)); // Sonst Puff! in InsertPage()
95 pEntry->AddItem( new SvLBoxString( pEntry, 0, rPageName ) ); in InsertPage()
97 GetModel()->Insert( pEntry ); in InsertPage()
99 return pEntry; in InsertPage()
104 SvLBoxEntry* pEntry = new SvLBoxEntry; in InsertTitle() local
105 pEntry->AddItem( new SvLBoxString( pEntry, 0, String() ) ); in InsertTitle()
106 pEntry->AddItem( new SvLBoxContextBmp( pEntry, 0, Image(), Image(), 0)); // Sonst Puff! in InsertTitle()
107 pEntry->AddItem( new SvLBoxString( pEntry, 0, rTitle ) ); in InsertTitle()
108 GetModel()->Insert( pEntry,pParent ); in InsertTitle()
122 SvLBoxEntry* pEntry = InsertPage( pPage->GetName() ); in Fill() local
123 SetCheckButtonState(pEntry, SvButtonState( SV_BUTTON_CHECKED ) ); in Fill()
160 InsertTitle( pEntry, aParaText ); in Fill()
180 SvLBoxEntry* pEntry = pTreeModel->First(); in GetSelectedPage() local
182 while( pEntry && pEntry != pSelEntry ) in GetSelectedPage()
184 if(pTreeModel->IsAtRootDepth(pEntry)) in GetSelectedPage()
186 pEntry = pTreeModel->Next( pEntry ); in GetSelectedPage()
197 SvLBoxEntry* pEntry = GetModel()->GetEntry(nPage); in IsPageChecked() local
198 return pEntry?(sal_Bool)(GetCheckButtonState( pEntry ) == SV_BUTTON_CHECKED): sal_False; in IsPageChecked()