Lines Matching refs:m_aSelFields

312 		,m_aSelFields			(this, ModuleRes(LB_SELECTED_FIELDS))  in OGridFieldsSelection()
324 m_aSelFields.SetSelectHdl(LINK(this, OGridFieldsSelection, OnEntrySelected)); in OGridFieldsSelection()
326 m_aSelFields.SetDoubleClickHdl(LINK(this, OGridFieldsSelection, OnEntryDoubleClicked)); in OGridFieldsSelection()
351 m_aSelFields.Clear(); in initializePage()
357 m_aSelFields.InsertEntry(*pSelected); in initializePage()
371 sal_uInt16 nSelected = m_aSelFields.GetEntryCount(); in commitPage()
377 *pSelected = m_aSelFields.GetEntry(i); in commitPage()
388 m_aDeselectOne.Enable(m_aSelFields.GetSelectEntryCount() != 0); in implCheckButtons()
389 m_aDeselectAll.Enable(m_aSelFields.GetEntryCount() != 0); in implCheckButtons()
391 getDialog()->enableButtons(WZB_FINISH, 0 != m_aSelFields.GetEntryCount()); in implCheckButtons()
415 ListBox& rMoveTo = bMoveRight ? m_aSelFields : m_aExistFields; in IMPL_LINK()
418 …sal_uInt16 nSelected = bMoveRight ? m_aExistFields.GetSelectEntryPos() : m_aSelFields.GetSelectEnt… in IMPL_LINK()
420 …ast<sal_IntPtr>(bMoveRight ? m_aExistFields.GetEntryData(nSelected) : m_aSelFields.GetEntryData(nS… in IMPL_LINK()
435 …String sMovingEntry = bMoveRight ? m_aExistFields.GetEntry(nSelected) : m_aSelFields.GetEntry(nSel… in IMPL_LINK()
454 sal_uInt16 nSelectPos = m_aSelFields.GetSelectEntryPos(); in IMPL_LINK()
455 m_aSelFields.RemoveEntry(nSelected); in IMPL_LINK()
456 if ((LISTBOX_ENTRY_NOTFOUND != nSelectPos) && (nSelectPos < m_aSelFields.GetEntryCount())) in IMPL_LINK()
457 m_aSelFields.SelectEntryPos(nSelectPos); in IMPL_LINK()
459 m_aSelFields.GrabFocus(); in IMPL_LINK()
471 m_aSelFields.Clear(); in IMPL_LINK()
472 fillListBox(bMoveRight ? m_aSelFields : m_aExistFields, getContext().aFieldNames); in IMPL_LINK()