Lines Matching refs:m_aOrderedLines

473 		sal_Bool bNeedScrollbar = m_aOrderedLines.size() > (sal_uInt32)CalcVisibleLines();  in Resize()
496 for ( sal_uInt16 i = 0; i < m_aOrderedLines.size(); ++i ) in Resize()
598 if ( _nIndex < m_aOrderedLines.size() ) in PositionLine()
600 m_aOrderedLines[ _nIndex ]->second.pLine->SetPosSizePixel( aPos, aSize ); in PositionLine()
602 m_aOrderedLines[ _nIndex ]->second.pLine->SetTitleWidth( m_nTheNameSize + 2 * FRAME_OFFSET ); in PositionLine()
605 if ( !m_aOrderedLines[ _nIndex ]->second.pLine->IsVisible() ) in PositionLine()
606 m_aOrderedLines[ _nIndex ]->second.pLine->Show(); in PositionLine()
618 …DBG_ASSERT( *aLoop < m_aOrderedLines.size(), "OBrowserListBox::UpdatePosNSize: invalid line index!… in UpdatePosNSize()
619 if ( *aLoop < m_aOrderedLines.size() ) in UpdatePosNSize()
632 if (nEnd >= m_aOrderedLines.size()) in UpdatePlayGround()
633 nEnd = (sal_uInt16)m_aOrderedLines.size()-1; in UpdatePlayGround()
635 if ( !m_aOrderedLines.empty() ) in UpdatePlayGround()
684 for ( OrderedListBoxLines::const_iterator linePos = m_aOrderedLines.begin(); in GetPropertyPos()
685 linePos != m_aOrderedLines.end(); in GetPropertyPos()
691 nRet = (sal_uInt16)( linePos - m_aOrderedLines.begin() ); in GetPropertyPos()
747 if ( nInsertPos > m_aOrderedLines.size() ) in InsertEntry()
751 nInsertPos = (sal_uInt16)m_aOrderedLines.size(); in InsertEntry()
752 m_aOrderedLines.push_back( insertPoint.first ); in InsertEntry()
755 m_aOrderedLines.insert( m_aOrderedLines.begin() + nInsertPos, insertPoint.first ); in InsertEntry()
769 while ( nUpdatePos < m_aOrderedLines.size() ) in InsertEntry()
802 if ( _nPos < m_aOrderedLines.size() ) in ShowEntry()
969 for ( OrderedListBoxLines::const_iterator search = m_aOrderedLines.begin(); in impl_getControlPos()
970 search != m_aOrderedLines.end(); in impl_getControlPos()
974 return sal_uInt16( search - m_aOrderedLines.begin() ); in impl_getControlPos()
1026 while ( (size_t)nLine < m_aOrderedLines.size() ) in activateNextControl()
1028 if ( m_aOrderedLines[nLine]->second.pLine->GrabFocus() ) in activateNextControl()
1033 if ( ( (size_t)nLine >= m_aOrderedLines.size() ) in activateNextControl()
1034 && ( m_aOrderedLines.size() > 0 ) in activateNextControl()
1037 m_aOrderedLines[0]->second.pLine->GrabFocus(); in activateNextControl()
1077 clearContainer( m_aOrderedLines ); in Clear()
1087 OrderedListBoxLines::iterator orderedPos = m_aOrderedLines.begin() + nPos; in RemoveEntry()
1093 m_aOrderedLines.erase( orderedPos ); in RemoveEntry()
1094 m_aOutOfDateLines.erase( (sal_uInt16)m_aOrderedLines.size() ); in RemoveEntry()
1098 while ( nPos < m_aOrderedLines.size() ) in RemoveEntry()
1115 if ( nPos < m_aOrderedLines.size() ) in ChangeEntry()
1119 pRefWindow = m_aOrderedLines[nPos-1]->second.pLine->GetRefWindow(); in ChangeEntry()
1122 ListBoxLine& rLine = m_aOrderedLines[nPos]->second; in ChangeEntry()
1260 if ( nFocusControlPos < m_aOrderedLines.size() ) in PreNotify()
1262 m_aOrderedLines[ nFocusControlPos ]->second.pLine->GrabFocus(); in PreNotify()