Lines Matching refs:maLstBox

496     ListBox         maLstBox;  member in DbgWindow
505 void Update() { WorkWindow::Update(); maLstBox.Update(); } in Update()
600 maLstBox( this, WB_AUTOHSCROLL ) in DbgWindow()
604 maLstBox.Show(); in DbgWindow()
605 maLstBox.SetPosPixel( Point( 0, 0 ) ); in DbgWindow()
642 maLstBox.SetSizePixel( GetOutputSizePixel() ); in Resize()
652 if ( maLstBox.GetEntryData( nFirst ) != NULL ) in GetAssertionEntryRange()
656 sal_uInt16 nEntryCount = maLstBox.GetEntryCount(); in GetAssertionEntryRange()
660 if ( maLstBox.GetEntryData( nLast ) != NULL ) in GetAssertionEntryRange()
672 if ( maLstBox.IsWindowOrChild( rNEvt.GetWindow() ) ) in PreNotify()
685 … Rectangle aEntryRect( maLstBox.GetBoundingRectangle( maLstBox.GetSelectEntryPos() ) ); in PreNotify()
694 … GetAssertionEntryRange( maLstBox.GetSelectEntryPos(), nAssertionFirst, nAssertionLast ); in PreNotify()
702 sAssertion += maLstBox.GetEntry( nAssertionFirst++ ); in PreNotify()
725 if ( maLstBox.GetEntryCount() >= DBGWIN_MAXLINES ) in InsertLine()
726 maLstBox.RemoveEntry( 0 ); in InsertLine()
728 sal_uInt16 nInsertionPos = maLstBox.InsertEntry( aStr.Copy( 0, nPos ) ); in InsertLine()
730 maLstBox.SetEntryData( nInsertionPos, reinterpret_cast< void* >( 0x00000001 ) ); in InsertLine()
736 if ( maLstBox.GetEntryCount() >= DBGWIN_MAXLINES ) in InsertLine()
737 maLstBox.RemoveEntry( 0 ); in InsertLine()
738 sal_uInt16 nInsertionPos = maLstBox.InsertEntry( aStr ); in InsertLine()
740 maLstBox.SetEntryData( nInsertionPos, reinterpret_cast< void* >( 0x00000001 ) ); in InsertLine()
741 maLstBox.SetTopEntry( DBGWIN_MAXLINES-1 ); in InsertLine()
742 maLstBox.Update(); in InsertLine()