Lines Matching refs:rAnchorRect
2953 void SdrObjCustomShape::TakeTextAnchorRect( Rectangle& rAnchorRect ) const in TakeTextAnchorRect()
2955 if ( GetTextBounds( rAnchorRect ) ) in TakeTextAnchorRect()
2958 rAnchorRect.Left() += GetTextLeftDistance(); in TakeTextAnchorRect()
2959 rAnchorRect.Top() += GetTextUpperDistance(); in TakeTextAnchorRect()
2960 rAnchorRect.Right() -= GetTextRightDistance(); in TakeTextAnchorRect()
2961 rAnchorRect.Bottom() -= GetTextLowerDistance(); in TakeTextAnchorRect()
2962 ImpJustifyRect( rAnchorRect ); in TakeTextAnchorRect()
2964 if ( rAnchorRect.GetWidth() < 2 ) in TakeTextAnchorRect()
2965 rAnchorRect.Right() = rAnchorRect.Left() + 1; // minimal width is 2 in TakeTextAnchorRect()
2966 if ( rAnchorRect.GetHeight() < 2 ) in TakeTextAnchorRect()
2967 rAnchorRect.Bottom() = rAnchorRect.Top() + 1; // minimal height is 2 in TakeTextAnchorRect()
2970 Point aP( rAnchorRect.TopLeft() ); in TakeTextAnchorRect()
2972 rAnchorRect.SetPos( aP ); in TakeTextAnchorRect()
2976 SdrTextObj::TakeTextAnchorRect( rAnchorRect ); in TakeTextAnchorRect()