Home
last modified time | relevance | path

Searched refs:rR (Results 1 – 25 of 50) sorted by last modified time

12

/trunk/main/svx/source/svdraw/
H A Dsvdoashp.cxx2619 Rectangle aR0(rR); in AdjustTextFrameWidthAndHeight()
2703 long nWdtGrow = nWdt-(rR.Right()-rR.Left()); in AdjustTextFrameWidthAndHeight()
2704 long nHgtGrow = nHgt-(rR.Bottom()-rR.Top()); in AdjustTextFrameWidthAndHeight()
2715 rR.Right()+=nWdtGrow; in AdjustTextFrameWidthAndHeight()
2717 rR.Left()-=nWdtGrow; in AdjustTextFrameWidthAndHeight()
2721 rR.Left()-=nWdtGrow2; in AdjustTextFrameWidthAndHeight()
2722 rR.Right()=rR.Left()+nWdt; in AdjustTextFrameWidthAndHeight()
2729 rR.Bottom()+=nHgtGrow; in AdjustTextFrameWidthAndHeight()
2731 rR.Top()-=nHgtGrow; in AdjustTextFrameWidthAndHeight()
2735 rR.Top()-=nHgtGrow2; in AdjustTextFrameWidthAndHeight()
[all …]
H A Dsvdobj.cxx1237 const Rectangle& rR=GetSnapRect(); in GetHdl() local
1239 case 0: pH=new SdrHdl(rR.TopLeft(), HDL_UPLFT); break; // Oben links in GetHdl()
1240 case 1: pH=new SdrHdl(rR.TopCenter(), HDL_UPPER); break; // Oben in GetHdl()
1241 case 2: pH=new SdrHdl(rR.TopRight(), HDL_UPRGT); break; // Oben rechts in GetHdl()
1242 case 3: pH=new SdrHdl(rR.LeftCenter(), HDL_LEFT ); break; // Links in GetHdl()
1243 case 4: pH=new SdrHdl(rR.RightCenter(), HDL_RIGHT); break; // Rechts in GetHdl()
1244 case 5: pH=new SdrHdl(rR.BottomLeft(), HDL_LWLFT); break; // Unten links in GetHdl()
1245 case 6: pH=new SdrHdl(rR.BottomCenter(),HDL_LOWER); break; // Unten in GetHdl()
1246 case 7: pH=new SdrHdl(rR.BottomRight(), HDL_LWRGT); break; // Unten rechts in GetHdl()
H A Dsvdotxat.cxx76 if (bTextFrame && pModel!=NULL && !rR.IsEmpty()) in AdjustTextFrameWidthAndHeight()
89 Rectangle aR0(rR); in AdjustTextFrameWidthAndHeight()
92 Size aSiz(rR.GetSize()); aSiz.Width()--; aSiz.Height()--; in AdjustTextFrameWidthAndHeight()
169 long nWdtGrow=nWdt-(rR.Right()-rR.Left()); in AdjustTextFrameWidthAndHeight()
170 long nHgtGrow=nHgt-(rR.Bottom()-rR.Top()); in AdjustTextFrameWidthAndHeight()
180 rR.Left()-=nWdtGrow2; in AdjustTextFrameWidthAndHeight()
181 rR.Right()=rR.Left()+nWdt; in AdjustTextFrameWidthAndHeight()
190 rR.Top()-=nHgtGrow2; in AdjustTextFrameWidthAndHeight()
191 rR.Bottom()=rR.Top()+nHgt; in AdjustTextFrameWidthAndHeight()
195 Point aD1(rR.TopLeft()); in AdjustTextFrameWidthAndHeight()
[all …]
H A Dsvdocirc.cxx61 Point GetWinkPnt(const Rectangle& rR, long nWink) in GetWinkPnt() argument
63 Point aCenter(rR.Center()); in GetWinkPnt()
64 long nWdt=rR.Right()-rR.Left(); in GetWinkPnt()
65 long nHgt=rR.Bottom()-rR.Top(); in GetWinkPnt()
963 void Union(Rectangle& rR, const Point& rP) in Union() argument
965 if (rP.X()<rR.Left ()) rR.Left ()=rP.X(); in Union()
966 if (rP.X()>rR.Right ()) rR.Right ()=rP.X(); in Union()
967 if (rP.Y()<rR.Top ()) rR.Top ()=rP.Y(); in Union()
968 if (rP.Y()>rR.Bottom()) rR.Bottom()=rP.Y(); in Union()
H A Dsvdmrkv1.cxx348 Rectangle& rR=eKind==HDL_GLUE ? aGlue : aPnts; in ImpSetPointsRects() local
349 if (rR.IsEmpty()) { in ImpSetPointsRects()
350 rR=Rectangle(aPt,aPt); in ImpSetPointsRects()
352 if (aPt.X()<rR.Left ()) rR.Left ()=aPt.X(); in ImpSetPointsRects()
353 if (aPt.X()>rR.Right ()) rR.Right ()=aPt.X(); in ImpSetPointsRects()
354 if (aPt.Y()<rR.Top ()) rR.Top ()=aPt.Y(); in ImpSetPointsRects()
355 if (aPt.Y()>rR.Bottom()) rR.Bottom()=aPt.Y(); in ImpSetPointsRects()
/trunk/main/sw/source/filter/ww8/
H A Dww8par.hxx577 WW8FormulaControl(const String& rN, SwWW8ImplReader &rR) in WW8FormulaControl() argument
578 : OCX_Control(rN), rRdr(rR), fUnknown(0), fDropdownIndex(0), in WW8FormulaControl()
621 WW8FormulaCheckBox(SwWW8ImplReader &rR);
640 WW8FormulaListBox(SwWW8ImplReader &rR);
656 WW8FormulaEditBox(SwWW8ImplReader &rR);
H A Dww8par3.cxx2396 WW8FormulaListBox::WW8FormulaListBox(SwWW8ImplReader &rR) in WW8FormulaListBox() argument
2397 : WW8FormulaControl( CREATE_CONST_ASC(SL::aListBox), rR) in WW8FormulaListBox()
2605 WW8FormulaCheckBox::WW8FormulaCheckBox(SwWW8ImplReader &rR) in WW8FormulaCheckBox() argument
2606 : WW8FormulaControl( CREATE_CONST_ASC(SL::aCheckBox), rR) in WW8FormulaCheckBox()
2671 WW8FormulaEditBox::WW8FormulaEditBox(SwWW8ImplReader &rR) in WW8FormulaEditBox() argument
2672 : WW8FormulaControl( CREATE_CONST_ASC(SL::aTextField) ,rR) in WW8FormulaEditBox()
/trunk/main/svx/source/table/
H A Dsvdotable.cxx2233 FASTBOOL SdrTableObj::AdjustTextFrameWidthAndHeight(Rectangle& rR, FASTBOOL bHeight, FASTBOOL bWidt… in AdjustTextFrameWidthAndHeight() argument
2235 if((pModel == NULL) || rR.IsEmpty() || !mpImpl || !mpImpl->mxTable.is() ) in AdjustTextFrameWidthAndHeight()
2238 Rectangle aRectangle( rR ); in AdjustTextFrameWidthAndHeight()
2241 if( aRectangle != rR ) in AdjustTextFrameWidthAndHeight()
2243 rR = aRectangle; in AdjustTextFrameWidthAndHeight()
/trunk/main/svx/inc/svx/
H A Dsvdotext.hxx336 …virtual FASTBOOL AdjustTextFrameWidthAndHeight(Rectangle& rR, FASTBOOL bHgt=sal_True, FASTBOOL bWd…
H A Dsvdoashp.hxx214 …virtual FASTBOOL AdjustTextFrameWidthAndHeight(Rectangle& rR, FASTBOOL bHgt=sal_True, FASTBOOL bWd…
H A Dsvdotable.hxx222 …virtual FASTBOOL AdjustTextFrameWidthAndHeight(Rectangle& rR, FASTBOOL bHgt=sal_True, FASTBOOL bWd…
H A Dsvddrag.hxx181 void SetActionRect(const Rectangle& rR) { aActionRect=rR; } in SetActionRect() argument
H A Dframelink.hxx175 bool operator==( const Style& rL, const Style& rR );
176 SVX_DLLPUBLIC bool operator<( const Style& rL, const Style& rR );
178 inline bool operator!=( const Style& rL, const Style& rR ) { return !(rL == rR); } in operator !=() argument
179 inline bool operator>( const Style& rL, const Style& rR ) { return rR < rL; } in operator >() argument
180 inline bool operator<=( const Style& rL, const Style& rR ) { return !(rR < rL); } in operator <=() argument
181 inline bool operator>=( const Style& rL, const Style& rR ) { return !(rL < rR); } in operator >=() argument
/trunk/main/sc/source/ui/unoobj/
H A Dcursuno.cxx52 ScCellCursorObj::ScCellCursorObj(ScDocShell* pDocSh, const ScRange& rR) : in ScCellCursorObj() argument
53 ScCellRangeObj( pDocSh, rR ) in ScCellCursorObj()
H A Dnameuno.cxx1028 ScLabelRangeObj::ScLabelRangeObj(ScDocShell* pDocSh, sal_Bool bCol, const ScRange& rR) : in ScLabelRangeObj() argument
1031 aRange( rR ) in ScLabelRangeObj()
/trunk/main/sw/source/core/text/
H A Dfrmcrsr.cxx554 SwFillData( const SwCrsrMoveState *pC, SwPosition* pP, const SwRect& rR, in SwFillData()
555 const Point& rPt ) : aFrm( rR ), pCMS( pC ), pPos( pP ), rPoint( rPt ), in SwFillData()
/trunk/main/sw/source/core/doc/
H A Ddocfmt.cxx2268 const SwNumRule& rR = *rArr[ n ]; in ReplaceStyles() local
2269 if( !rR.IsAutoRule() ) in ReplaceStyles()
2271 SwNumRule* pNew = FindNumRulePtr( rR.GetName()); in ReplaceStyles()
2273 pNew->CopyNumRule( this, rR ); in ReplaceStyles()
2275 MakeNumRule( rR.GetName(), &rR ); in ReplaceStyles()
/trunk/main/sw/source/core/access/
H A Daccmap.cxx383 const SwRect& rR ) in SwAccessibleEvent_Impl()
384 : maOldBox( rR ), in SwAccessibleEvent_Impl()
414 const SwRect& rR ) : in SwAccessibleEvent_Impl()
415 maOldBox( rR ), in SwAccessibleEvent_Impl()
/trunk/main/svx/source/dialog/
H A Dframelink.cxx1312 bool operator==( const Style& rL, const Style& rR ) in operator ==() argument
1314 return (rL.Prim() == rR.Prim()) && (rL.Dist() == rR.Dist()) && (rL.Secn() == rR.Secn()) && in operator ==()
1315 …(rL.GetColor() == rR.GetColor()) && (rL.GetRefMode() == rR.GetRefMode()) && (rL.Dotted() == rR.Dot… in operator ==()
1318 bool operator<( const Style& rL, const Style& rR ) in operator <() argument
1322 sal_uInt16 nRW = rR.GetWidth(); in operator <()
1326 if( (rL.Secn() == 0) != (rR.Secn() == 0) ) return rL.Secn() == 0; in operator <()
1329 if( (rL.Secn() && rR.Secn()) && (rL.Dist() != rR.Dist()) ) return rL.Dist() > rR.Dist(); in operator <()
1332 if( (nLW == 1) && (rL.Dotted() != rR.Dotted()) ) return rL.Dotted(); in operator <()
/trunk/main/svtools/source/dialogs/
H A Dmcvmath.cxx293 void ImpPolarToCart( const Fix& rR, const sal_uInt16 Phi, short& rX, short& rY ) in ImpPolarToCart() argument
296 fc.GetReal().MultBig( rR ); in ImpPolarToCart()
298 fc.GetImag().MultBig( rR ); in ImpPolarToCart()
H A Dmcvmath.hxx218 void ImpPolarToCart( const Fix& rR, const sal_uInt16 Phi, short& rX, short& rY );
/trunk/main/svl/source/items/
H A Dstylepool.cxx310 Iterator( std::map< const SfxItemSet*, Node >& rR, in Iterator() argument
313 : mrRoot( rR ), in Iterator()
314 mpCurrNode( rR.begin() ), in Iterator()
/trunk/main/svgio/inc/svgio/svgreader/
H A Dsvgcirclenode.hxx67 void setR(const SvgNumber& rR = SvgNumber()) { maR = rR; } in setR() argument
H A Dsvggradientnode.hxx108 void setR(const SvgNumber& rR = SvgNumber()) { maR = rR; } in setR() argument
/trunk/main/sc/source/ui/view/
H A Dselectionstate.cxx62 bool operator==( const ScSelectionState& rL, const ScSelectionState& rR ) in operator ==() argument
64 bool bEqual = rL.GetSelectionType() == rR.GetSelectionType(); in operator ==()
68 bEqual &= ( rL.GetEditSelection().IsEqual( rR.GetEditSelection() ) != sal_False ); in operator ==()
71 bEqual &= (rL.GetSheetSelection() == rR.GetSheetSelection()) == sal_True; in operator ==()
74 bEqual &= rL.GetCellCursor() == rR.GetCellCursor(); in operator ==()

Completed in 192 milliseconds

12