Lines Matching refs:aFrmRect
597 Rectangle aFrmRect(Point(lXPos, lYPos), aFrmSize); in Paint() local
604 if (aFrmRect.Left() < pOuterFrame->Left()) in Paint()
605 aFrmRect.Move(pOuterFrame->Left() - aFrmRect.Left(), 0); in Paint()
606 if (aFrmRect.Right() > pOuterFrame->Right()) in Paint()
607 aFrmRect.Move(pOuterFrame->Right() - aFrmRect.Right(), 0); in Paint()
609 if (aFrmRect.Top() < pOuterFrame->Top()) in Paint()
610 aFrmRect.Move(0, pOuterFrame->Top() - aFrmRect.Top()); in Paint()
611 if (aFrmRect.Bottom() > pOuterFrame->Bottom()) in Paint()
612 aFrmRect.Move(0, pOuterFrame->Bottom() - aFrmRect.Bottom()); in Paint()
654 … if (aTxt.IsOver(aFrmRect) && nAnchor != TextContentAnchorType_AS_CHARACTER && !bIgnoreWrap) in Paint()
659 aTxt.Top() = aFrmRect.Bottom() + nTxtLineHeight; in Paint()
664 aTxt.Right() = aFrmRect.Left(); in Paint()
668 aTxt.Left() = aFrmRect.Right(); in Paint()
706 …sal_Bool bDontFill = (nAnchor == TextContentAnchorType_AT_CHARACTER && aFrmRect.IsOver(aAutoCharFr… in Paint()
707 DrawRect_Impl( aFrmRect, bDontFill? m_aTransColor : m_aBgCol, m_aFrameColor ); in Paint()