Lines Matching refs:maArray

392     maArray.Initialize( mbVer ? 2 : 1, mbHor ? 2 : 1 );  in InitBorderGeometry()
393 maArray.SetUseDiagDoubleClipping( true ); in InitBorderGeometry()
395 maArray.SetXOffset( mnLine1 ); in InitBorderGeometry()
396 maArray.SetAllColWidths( (mbVer ? mnLine2 : mnLine3) - mnLine1 ); in InitBorderGeometry()
398 maArray.SetYOffset( mnLine1 ); in InitBorderGeometry()
399 maArray.SetAllRowHeights( (mbHor ? mnLine2 : mnLine3) - mnLine1 ); in InitBorderGeometry()
401 Rectangle aTLRect( maArray.GetCellRect( 0, 0 ) ); in InitBorderGeometry()
415 for( nCol = 0, nCols = maArray.GetColCount(); nCol < nCols; ++nCol ) in InitBorderGeometry()
417 for( nRow = 0, nRows = maArray.GetRowCount(); nRow < nRows; ++nRow ) in InitBorderGeometry()
419 Rectangle aRect( maArray.GetCellRect( nCol, nRow ) ); in InitBorderGeometry()
420 …long nDiagFocusOffsX = frame::GetTLDiagOffset( -mnFocusOffs, mnFocusOffs, maArray.GetHorDiagAngle(… in InitBorderGeometry()
421 …long nDiagFocusOffsY = frame::GetTLDiagOffset( -mnFocusOffs, mnFocusOffs, maArray.GetVerDiagAngle(… in InitBorderGeometry()
469 for( nCol = 0, nCols = maArray.GetColCount(); nCol < nCols; ++nCol ) in InitBorderGeometry()
471 for( nRow = 0, nRows = maArray.GetRowCount(); nRow < nRows; ++nRow ) in InitBorderGeometry()
474 Rectangle aRect( maArray.GetCellRect( nCol, nRow ) ); in InitBorderGeometry()
639 maArray.SetColumnStyleLeft( 0, maLeft.GetUIStyle() ); in DrawAllFrameBorders()
640 if( mbVer ) maArray.SetColumnStyleLeft( 1, maVer.GetUIStyle() ); in DrawAllFrameBorders()
641 maArray.SetColumnStyleRight( mbVer ? 1 : 0, maRight.GetUIStyle() ); in DrawAllFrameBorders()
643 maArray.SetRowStyleTop( 0, maTop.GetUIStyle() ); in DrawAllFrameBorders()
644 if( mbHor ) maArray.SetRowStyleTop( 1, maHor.GetUIStyle() ); in DrawAllFrameBorders()
645 maArray.SetRowStyleBottom( mbHor ? 1 : 0, maBottom.GetUIStyle() ); in DrawAllFrameBorders()
647 for( size_t nCol = 0; nCol < maArray.GetColCount(); ++nCol ) in DrawAllFrameBorders()
648 for( size_t nRow = 0; nRow < maArray.GetRowCount(); ++nRow ) in DrawAllFrameBorders()
649 maArray.SetCellStyleDiag( nCol, nRow, maTLBR.GetUIStyle(), maBLTR.GetUIStyle() ); in DrawAllFrameBorders()
652 maArray.DrawArray( maVirDev ); in DrawAllFrameBorders()