Lines Matching refs:m_pListBox
102 ,m_pListBox(NULL) in DBG_NAME()
134 if (m_pListBox) in ~OTableWindow()
136 OSL_ENSURE(m_pListBox->GetEntryCount()==0,"Forgot to call EmptyListbox()!"); in ~OTableWindow()
137 ::std::auto_ptr<Window> aTemp(m_pListBox); in ~OTableWindow()
138 m_pListBox = NULL; in ~OTableWindow()
198 m_pListBox->Clear(); in FillListBox()
206 ModuleRes TmpRes(isHiContrast(m_pListBox) ? IMG_JOINS_H : IMG_JOINS); in FillListBox()
212 SvLBoxEntry* pEntry = m_pListBox->InsertEntry( ::rtl::OUString::createFromAscii("*") ); in FillListBox()
240 pEntry = m_pListBox->InsertEntry(*pIter, aPrimKeyImage, aPrimKeyImage); in FillListBox()
242 pEntry = m_pListBox->InsertEntry(*pIter); in FillListBox()
271 if ( m_pListBox ) in clearListBox()
273 SvLBoxEntry* pEntry = m_pListBox->First(); in clearListBox()
279 SvLBoxEntry* pNextEntry = m_pListBox->Next(pEntry); in clearListBox()
280 m_pListBox->GetModel()->Remove(pEntry); in clearListBox()
309 if ( !m_pListBox ) in Init()
311 m_pListBox = CreateListBox(); in Init()
312 … DBG_ASSERT( m_pListBox != NULL, "OTableWindow::Init() : CreateListBox hat NULL geliefert !" ); in Init()
313 m_pListBox->SetSelectionMode( MULTIPLE_SELECTION ); in Init()
320 m_pListBox->Show(); in Init()
326 m_pListBox->SelectAll( sal_False ); in Init()
519 m_pListBox->SetPosSizePixel( in Resize()
541 if(m_pListBox) in GetFocus()
542 m_pListBox->GrabFocus(); in GetFocus()
549 if (!_bActive && m_pListBox && m_pListBox->GetSelectionCount() != 0) in setActive()
550 m_pListBox->SelectAll(sal_False); in setActive()
590 if ( m_pListBox ) in EnumValidFields()
592 arrstrFields.reserve(m_pListBox->GetEntryCount()); in EnumValidFields()
593 SvLBoxEntry* pEntryLoop = m_pListBox->First(); in EnumValidFields()
596 arrstrFields.push_back(m_pListBox->GetEntryText(pEntryLoop)); in EnumValidFields()
597 pEntryLoop = m_pListBox->Next(pEntryLoop); in EnumValidFields()
616 m_pListBox->SetZoom(GetZoom()); in StateChanged()
643 SvLBoxEntry* pCurrent = m_pListBox->GetCurEntry(); in Command()
645 ptWhere = m_pListBox->GetEntryPosition(pCurrent); in Command()