Lines Matching refs:aBrowser
147 Browser aBrowser; member in AppWindow
514 aBrowser( this, 0 ), in AppWindow()
561 aBrowser.Show(); in AppWindow()
579 aBrowser.GoToRow( pEdit->GetText().ToInt32() ); in IMPL_LINK_INLINE_START()
580 aBrowser.GrabFocus(); in IMPL_LINK_INLINE_START()
601 aBrowser.SetMode( eCurMode | BROWSER_AUTOSIZE_LASTCOL ); in IMPL_LINK_INLINE_END()
608 aBrowser.Invalidate(); in IMPL_LINK_INLINE_END()
612 if ( aBrowser.GetCurRow() == 0 ) in IMPL_LINK_INLINE_END()
617 nPos = aBrowser.GetCurRow() - 1; in IMPL_LINK_INLINE_END()
618 aBrowser.aRows.Insert( nNewRowNo++, nPos ); in IMPL_LINK_INLINE_END()
619 aBrowser.RowInserted( aBrowser.GetCurRow()-1 ); in IMPL_LINK_INLINE_END()
623 nPos = aBrowser.GetCurRow(); in IMPL_LINK_INLINE_END()
626 aBrowser.aRows.Insert( nNewRowNo++, nPos ); in IMPL_LINK_INLINE_END()
627 aBrowser.RowInserted( nPos ); in IMPL_LINK_INLINE_END()
631 nPos = aBrowser.GetCurRow() + 1; in IMPL_LINK_INLINE_END()
632 aBrowser.aRows.Insert( nNewRowNo++, nPos ); in IMPL_LINK_INLINE_END()
633 aBrowser.RowInserted( nPos ); in IMPL_LINK_INLINE_END()
637 if ( aBrowser.GetCurRow() == 0 ) in IMPL_LINK_INLINE_END()
642 nPos = aBrowser.GetCurRow() - 1; in IMPL_LINK_INLINE_END()
643 aBrowser.aRows.Remove( nPos ); in IMPL_LINK_INLINE_END()
644 aBrowser.RowRemoved( nPos ); in IMPL_LINK_INLINE_END()
648 nPos = aBrowser.GetCurRow(); in IMPL_LINK_INLINE_END()
649 aBrowser.aRows.Remove( nPos ); in IMPL_LINK_INLINE_END()
650 aBrowser.RowRemoved( nPos ); in IMPL_LINK_INLINE_END()
654 if ( (aBrowser.GetCurRow()+1) >= aBrowser.GetRowCount() ) in IMPL_LINK_INLINE_END()
659 nPos = aBrowser.GetCurRow() + 1; in IMPL_LINK_INLINE_END()
660 aBrowser.aRows.Remove( nPos ); in IMPL_LINK_INLINE_END()
661 aBrowser.RowRemoved( nPos ); in IMPL_LINK_INLINE_END()
665 if ( aBrowser.GetCurRow() == 0 ) in IMPL_LINK_INLINE_END()
670 nPos = aBrowser.GetCurRow() - 1; in IMPL_LINK_INLINE_END()
671 aBrowser.aRows.Replace( nNewRowNo++, nPos ); in IMPL_LINK_INLINE_END()
672 aBrowser.RowModified( nPos ); in IMPL_LINK_INLINE_END()
676 nPos = aBrowser.GetCurRow(); in IMPL_LINK_INLINE_END()
677 aBrowser.aRows.Replace( nNewRowNo++, nPos ); in IMPL_LINK_INLINE_END()
678 aBrowser.RowModified( nPos ); in IMPL_LINK_INLINE_END()
682 if ( (aBrowser.GetCurRow()+1) >= aBrowser.GetRowCount() ) in IMPL_LINK_INLINE_END()
687 nPos = aBrowser.GetCurRow() + 1; in IMPL_LINK_INLINE_END()
688 aBrowser.aRows.Replace( nNewRowNo++, nPos ); in IMPL_LINK_INLINE_END()
689 aBrowser.RowModified( nPos ); in IMPL_LINK_INLINE_END()
705 aBrowser.CursorMoved(); in IMPL_LINK_INLINE_END()
706 aBrowser.Select(); in IMPL_LINK_INLINE_END()
711 aBrowser.SelectRow( aBrowser.GetCurRow(), in IMPL_LINK_INLINE_END()
712 !aBrowser.IsRowSelected( aBrowser.GetCurRow() ) ); in IMPL_LINK_INLINE_END()
716 aBrowser.SelectAll(); in IMPL_LINK_INLINE_END()
720 aBrowser.SetNoSelection(); in IMPL_LINK_INLINE_END()
727 aBrowser.SetInverseSelection( !bChecked ); in IMPL_LINK_INLINE_END()
732 aBrowser.Clear(); in IMPL_LINK_INLINE_END()
737 nPos = aBrowser.GetCurRow(); in IMPL_LINK_INLINE_END()
738 aBrowser.SelectRow( nPos + 1, sal_True ); in IMPL_LINK_INLINE_END()
739 aBrowser.aRows.Remove( nPos ); in IMPL_LINK_INLINE_END()
740 aBrowser.RowRemoved( nPos ); in IMPL_LINK_INLINE_END()
758 aBrowser.SetPosSizePixel( in Resize()
768 aBrowser.GrabFocus(); in Activate()