Lines Matching refs:_rLB

1353                             ListBox& _rLB )  in FillPosLB()  argument
1356 sOldEntry = _rLB.GetSelectEntry(); in FillPosLB()
1358 _rLB.Clear(); in FillPosLB()
1381 if (_rLB.GetEntryPos(sEntry) == LISTBOX_ENTRY_NOTFOUND) in FillPosLB()
1384 _rLB.InsertEntry(sEntry); in FillPosLB()
1396 _rLB.SelectEntry(sSelEntry); in FillPosLB()
1397 if (!_rLB.GetSelectEntryCount()) in FillPosLB()
1398 _rLB.SelectEntry(sOldEntry); in FillPosLB()
1400 if (!_rLB.GetSelectEntryCount()) in FillPosLB()
1401 _rLB.SelectEntryPos(0); in FillPosLB()
1403 PosHdl(&_rLB); in FillPosLB()
1405 return GetMapPos(_pMap, _rLB); in FillPosLB()
1415 ListBox& _rLB, in FillRelLB() argument
1422 _rLB.Clear(); in FillRelLB()
1428 String sOldEntry(_rLB.GetSelectEntry()); in FillRelLB()
1451 sal_uInt16 nPos = _rLB.InsertEntry(sEntry); in FillRelLB()
1452 _rLB.SetEntryData(nPos, &aAsCharRelationMap[nRelPos]); in FillRelLB()
1461 _rLB.SelectEntry(sSelEntry); in FillRelLB()
1464 _rLB.SelectEntry(sOldEntry); in FillRelLB()
1466 if (!_rLB.GetSelectEntryCount()) in FillRelLB()
1468 for (sal_uInt16 i = 0; i < _rLB.GetEntryCount(); i++) in FillRelLB()
1470 RelationMap *pEntry = (RelationMap *)_rLB.GetEntryData(i); in FillRelLB()
1473 _rLB.SelectEntryPos(i); in FillRelLB()
1517 sal_uInt16 nPos = _rLB.InsertEntry(sEntry); in FillRelLB()
1518 _rLB.SetEntryData(nPos, &aRelationMap[nRelPos]); in FillRelLB()
1526 _rLB.SelectEntry(sSelEntry); in FillRelLB()
1542 if (_rLB.GetEntryCount()) in FillRelLB()
1544 … RelationMap *pEntry = (RelationMap *)_rLB.GetEntryData(_rLB.GetEntryCount() - 1); in FillRelLB()
1550 for (sal_uInt16 i = 0; i < _rLB.GetEntryCount(); i++) in FillRelLB()
1552 RelationMap *pEntry = (RelationMap *)_rLB.GetEntryData(i); in FillRelLB()
1555 _rLB.SelectEntryPos(i); in FillRelLB()
1560 if (!_rLB.GetSelectEntryCount()) in FillRelLB()
1561 _rLB.SelectEntryPos(0); in FillRelLB()
1566 const bool bEnable = _rLB.GetEntryCount() != 0 in FillRelLB()
1567 && (&_rLB != &aVertRelationLB || m_bAllowVertPositioning); in FillRelLB()
1568 _rLB.Enable( bEnable ); in FillRelLB()
1571 RelHdl(&_rLB); in FillRelLB()