Home
last modified time | relevance | path

Searched refs:aFrmRect (Results 1 – 4 of 4) sorted by relevance

/AOO41X/main/sw/source/core/layout/
H A Dflylay.cxx403 SwRect aFrmRect( Frm() ); in CheckClip() local
408 nDiff -= aFrmRect.Top(); //nDiff ist die verfuegbare Strecke. in CheckClip()
409 nDiff = aFrmRect.Height() - nDiff; in CheckClip()
410 aFrmRect.Height( aFrmRect.Height() - nDiff ); in CheckClip()
416 nDiff -= aFrmRect.Left();//nDiff ist die verfuegbare Strecke. in CheckClip()
417 nDiff = aFrmRect.Width() - nDiff; in CheckClip()
418 aFrmRect.Width( aFrmRect.Width() - nDiff ); in CheckClip()
438 if ( aFrmRect.Width() != aOldSize.Width() && in CheckClip()
439 aFrmRect.Height()!= aOldSize.Height() ) in CheckClip()
441 if ( (aOldSize.Width() - aFrmRect.Width()) > in CheckClip()
[all …]
H A Dpaintfrm.cxx5862 SwRect aFrmRect; in PaintBackground() local
5871 aFrmRect = pFrm->PaintArea(); in PaintBackground()
5872 if ( aFrmRect.IsOver( aBorderRect ) ) in PaintBackground()
5880 aFrmRect.IsOver( aRect ) ) in PaintBackground()
5886 !aShortCut.Stop( aFrmRect ) ); in PaintBackground()
/AOO41X/main/svx/source/dialog/
H A Dswframeexample.cxx597 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()
[all …]
/AOO41X/main/sw/source/ui/frmdlg/
H A Dcolex.cxx404 Rectangle aFrmRect(aTL, m_aFrmSize); in Paint() local
409 aFrmRect.Left() = nSum + pCol->GetLeft();//nSum + pCol->GetLeft() + aTL.X(); in Paint()
411 aFrmRect.Right() = nSum - pCol->GetRight(); in Paint()
412 DrawRect(aFrmRect); in Paint()