Lines Matching refs:nLastCol

97 …lVec& rCells, size_t nWidth, size_t nFirstCol, size_t nFirstRow, size_t nLastCol, size_t nLastRow )  in lclSetMergedRange()  argument
99 for( size_t nCol = nFirstCol; nCol <= nLastCol; ++nCol ) in lclSetMergedRange()
167 size_t nLastCol = nCol + 1; in GetMergedLastCol() local
168 while( (nLastCol < mnWidth) && GetCell( nLastCol, nRow ).mbOverlapX ) ++nLastCol; in GetMergedLastCol()
169 return nLastCol - 1; in GetMergedLastCol()
246 long ArrayImpl::GetColWidth( size_t nFirstCol, size_t nLastCol ) const in GetColWidth()
248 return GetColPosition( nLastCol + 1 ) - GetColPosition( nFirstCol ); in GetColWidth()
598 size_t nLastCol = mxImpl->GetMergedLastCol( nCol, nRow ); in GetCellStyleBR() local
600 return ((nCol == nLastCol) && (nRow == nLastRow)) ? in GetCellStyleBR()
623 size_t nLastCol = mxImpl->GetMergedLastCol( nCol, nRow ); in GetCellStyleTR() local
624 return ((nCol == nLastCol) && (nRow == nFirstRow)) ? in GetCellStyleTR()
630 void Array::SetMergedRange( size_t nFirstCol, size_t nFirstRow, size_t nLastCol, size_t nLastRow ) in SetMergedRange() argument
633 DBG_FRAME_CHECK_COLROW( nLastCol, nLastRow, "SetMergedRange" ); in SetMergedRange()
637 for( size_t nCurrCol = nFirstCol; !bFound && (nCurrCol <= nLastCol); ++nCurrCol ) in SetMergedRange()
643 if( mxImpl->IsValidPos( nFirstCol, nFirstRow ) && mxImpl->IsValidPos( nLastCol, nLastRow ) ) in SetMergedRange()
644 … lclSetMergedRange( mxImpl->maCells, mxImpl->mnWidth, nFirstCol, nFirstRow, nLastCol, nLastRow ); in SetMergedRange()
741 size_t nFirstCol, nFirstRow, nLastCol, nLastRow; in GetMergedSize() local
742 GetMergedRange( nFirstCol, nFirstRow, nLastCol, nLastRow, nCol, nRow ); in GetMergedSize()
743 rnWidth = nLastCol - nFirstCol + 1; in GetMergedSize()
757 void Array::SetClipRange( size_t nFirstCol, size_t nFirstRow, size_t nLastCol, size_t nLastRow ) in SetClipRange() argument
760 DBG_FRAME_CHECK_COLROW( nLastCol, nLastRow, "SetClipRange" ); in SetClipRange()
763 mxImpl->mnLastClipCol = nLastCol; in SetClipRange()
846 long Array::GetColWidth( size_t nFirstCol, size_t nLastCol ) const in GetColWidth()
849 DBG_FRAME_CHECK_COL( nLastCol, "GetColWidth" ); in GetColWidth()
850 return GetColPosition( nLastCol + 1 ) - GetColPosition( nFirstCol ); in GetColWidth()
887 size_t nLastCol = bSimple ? nCol : mxImpl->GetMergedLastCol( nCol, nRow ); in GetCellSize() local
889 return Size( GetColWidth( nFirstCol, nLastCol ) + 1, GetRowHeight( nFirstRow, nLastRow ) + 1 ); in GetCellSize()
954 size_t nLastCol = mxImpl->GetMergedLastCol( nCol, nRow ); in MirrorSelfX() local
957 mxImpl->GetMirrorCol( nLastCol ), nRow, in MirrorSelfX()
988 size_t nLastCol = mxImpl->GetMergedLastCol( nCol, nRow ); in MirrorSelfY() local
992 nLastCol, mxImpl->GetMirrorRow( nRow ) ); in MirrorSelfY()
1010 size_t nFirstCol, size_t nFirstRow, size_t nLastCol, size_t nLastRow, in DrawRange() argument
1014 DBG_FRAME_CHECK_COLROW( nLastCol, nLastRow, "DrawRange" ); in DrawRange()
1025 for( nCol = nFirstCol; nCol <= nLastCol; ++nCol ) in DrawRange()
1079 for( nCol = nFirstCol + 1; nCol <= nLastCol; ++nCol ) in DrawRange()
1137 for( nCol = nFirstCol; nCol <= nLastCol + 1; ++nCol ) in DrawRange()