Lines Matching refs:m_lbNewColumnNames
98 ,m_lbNewColumnNames( this, ModuleRes( LB_NEW_COLUMN_NAMES ) ) in OWizColumnSelect()
107 m_lbNewColumnNames.EnableMultiSelection(sal_True); in OWizColumnSelect()
110 m_lbNewColumnNames.SetDoubleClickHdl(LINK(this,OWizColumnSelect,ListDoubleClickHdl)); in OWizColumnSelect()
117 while ( m_lbNewColumnNames.GetEntryCount() ) in ~OWizColumnSelect()
119 void* pData = m_lbNewColumnNames.GetEntryData(0); in ~OWizColumnSelect()
123 m_lbNewColumnNames.RemoveEntry(0); in ~OWizColumnSelect()
125 m_lbNewColumnNames.Clear(); in ~OWizColumnSelect()
135 clearListBox(m_lbNewColumnNames); in Reset()
164 clearListBox(m_lbNewColumnNames); in ActivatePage()
172 sal_uInt16 nPos = m_lbNewColumnNames.InsertEntry((*aIter)->first); in ActivatePage()
173 m_lbNewColumnNames.SetEntryData(nPos,new OFieldDescription(*((*aIter)->second))); in ActivatePage()
176 m_pParent->GetOKButton().Enable(m_lbNewColumnNames.GetEntryCount() != 0); in ActivatePage()
177 …m_pParent->EnableButton(OCopyTableWizard::WIZARD_NEXT,m_lbNewColumnNames.GetEntryCount() && m_pPar… in ActivatePage()
188 for(sal_uInt16 i=0 ; i< m_lbNewColumnNames.GetEntryCount();++i) in LeavePage()
190 OFieldDescription* pField = static_cast<OFieldDescription*>(m_lbNewColumnNames.GetEntryData(i)); in LeavePage()
195 clearListBox(m_lbNewColumnNames); in LeavePage()
215 pRight = &m_lbNewColumnNames; in IMPL_LINK()
219 pLeft = &m_lbNewColumnNames; in IMPL_LINK()
225 pRight = &m_lbNewColumnNames; in IMPL_LINK()
230 pLeft = &m_lbNewColumnNames; in IMPL_LINK()
276 pRight = &m_lbNewColumnNames; in IMPL_LINK()
281 pLeft = &m_lbNewColumnNames; in IMPL_LINK()
353 if(_pRight == &m_lbNewColumnNames) in moveColumn()
440 sal_Bool bEntries = m_lbNewColumnNames.GetEntryCount() != 0; in enableButtons()