Home
last modified time | relevance | path

Searched refs:rShadow (Results 1 – 25 of 26) sorted by relevance

12

/trunk/main/drawinglayer/source/primitive3d/
H A Dsdrdecompositiontools3d.cxx287 const attribute::SdrShadowAttribute& rShadow, in createShadowPrimitive3D() argument
291 if(rSource.hasElements() && !basegfx::fTools::moreOrEqual(rShadow.getTransparence(), 1.0)) in createShadowPrimitive3D()
295 aShadowOffset.set(0, 2, rShadow.getOffset().getX()); in createShadowPrimitive3D()
296 aShadowOffset.set(1, 2, rShadow.getOffset().getY()); in createShadowPrimitive3D()
299 …Primitive3DReference xRef(new ShadowPrimitive3D(aShadowOffset, rShadow.getColor(), rShadow.getTran… in createShadowPrimitive3D()
/trunk/main/sw/source/ui/frmdlg/
H A Dfrmmgr.cxx524 const SvxShadowItem& rShadow = GetShadow(); in CalcTopSpace() local
526 return rShadow.CalcShadowSpace(SHADOW_TOP ) + rBox.CalcLineSpace(BOX_LINE_TOP); in CalcTopSpace()
531 const SvxShadowItem& rShadow = GetShadow(); in CalcBottomSpace() local
533 return rShadow.CalcShadowSpace(SHADOW_BOTTOM) + rBox.CalcLineSpace(BOX_LINE_BOTTOM); in CalcBottomSpace()
538 const SvxShadowItem& rShadow = GetShadow(); in CalcLeftSpace() local
540 return rShadow.CalcShadowSpace(SHADOW_LEFT) + rBox.CalcLineSpace(BOX_LINE_LEFT); in CalcLeftSpace()
545 const SvxShadowItem& rShadow = GetShadow(); in CalcRightSpace() local
547 return rShadow.CalcShadowSpace(SHADOW_RIGHT) + rBox.CalcLineSpace(BOX_LINE_RIGHT); in CalcRightSpace()
/trunk/main/svx/source/sdr/primitive2d/
H A Dsdrdecompositiontools.cxx473 const attribute::SdrShadowAttribute& rShadow) in createEmbeddedShadowPrimitive() argument
481 aShadowOffset.set(0, 2, rShadow.getOffset().getX()); in createEmbeddedShadowPrimitive()
482 aShadowOffset.set(1, 2, rShadow.getOffset().getY()); in createEmbeddedShadowPrimitive()
488 rShadow.getColor(), in createEmbeddedShadowPrimitive()
491 if(0.0 != rShadow.getTransparence()) in createEmbeddedShadowPrimitive()
499 rShadow.getTransparence())); in createEmbeddedShadowPrimitive()
/trunk/main/editeng/inc/editeng/
H A Dshdditem.hxx62 inline SvxShadowedItem& operator=(const SvxShadowedItem& rShadow) { in operator =() argument
63 SetValue(rShadow.GetValue()); in operator =()
/trunk/main/svx/source/sdr/attribute/
H A Dsdrshadowtextattribute.cxx35 const SdrShadowAttribute& rShadow, in SdrShadowTextAttribute() argument
37 : maShadow(rShadow), in SdrShadowTextAttribute()
H A Dsdrlineshadowtextattribute.cxx37 const SdrShadowAttribute& rShadow, in SdrLineShadowTextAttribute() argument
39 : SdrShadowTextAttribute(rShadow, rTextAttribute), in SdrLineShadowTextAttribute()
H A Dsdrlinefillshadowtextattribute.cxx38 const SdrShadowAttribute& rShadow, in SdrLineFillShadowTextAttribute() argument
41 : SdrLineShadowTextAttribute(rLine, rLineStartEnd, rShadow, rTextAttribute), in SdrLineFillShadowTextAttribute()
/trunk/main/drawinglayer/source/attribute/
H A Dsdrallattribute3d.cxx39 const SdrShadowAttribute& rShadow, in SdrLineFillShadowAttribute3D() argument
44 maShadow(rShadow), in SdrLineFillShadowAttribute3D()
/trunk/main/sw/source/core/layout/
H A Dssfrm.cxx788 const SvxShadowItem &rShadow = rAttrs.GetShadow(); in UnionFrm() local
789 nLeft -= rShadow.CalcShadowSpace( SHADOW_LEFT ); in UnionFrm()
790 nAdd += rShadow.CalcShadowSpace( SHADOW_RIGHT ); in UnionFrm()
H A Dfrmtool.cxx1882 rShadow ( rAttrSet.GetShadow() ), in SwBorderAttrs()
2011 nTopLine = nTopLine + rShadow.CalcShadowSpace(SHADOW_TOP); in _CalcTopLine()
2020 nBottomLine = nBottomLine + rShadow.CalcShadowSpace(SHADOW_BOTTOM); in _CalcBottomLine()
2029 nLeftLine = nLeftLine + rShadow.CalcShadowSpace(SHADOW_LEFT); in _CalcLeftLine()
2038 nRightLine = nRightLine + rShadow.CalcShadowSpace(SHADOW_RIGHT); in _CalcRightLine()
2097 if ( rShadow == rCmpAttrs.GetShadow() && in _JoinWithCmp()
H A Dpaintfrm.cxx1266 const SvxShadowItem &rShadow = rAttrs.GetShadow(); in lcl_CalcBorderRect() local
1268 (rRect.*fnRect->fnSubTop)(rShadow.CalcShadowSpace(SHADOW_TOP)); in lcl_CalcBorderRect()
1269 (rRect.*fnRect->fnSubLeft)(rShadow.CalcShadowSpace(SHADOW_LEFT)); in lcl_CalcBorderRect()
1272 (rShadow.CalcShadowSpace( SHADOW_BOTTOM )); in lcl_CalcBorderRect()
1273 (rRect.*fnRect->fnAddRight)(rShadow.CalcShadowSpace(SHADOW_RIGHT)); in lcl_CalcBorderRect()
3942 const SvxShadowItem &rShadow = rAttrs.GetShadow(); in PaintShadow() local
3943 const long nWidth = ::lcl_AlignWidth ( rShadow.GetWidth() ); in PaintShadow()
3944 const long nHeight = ::lcl_AlignHeight( rShadow.GetWidth() ); in PaintShadow()
3953 SvxShadowLocation eLoc = rShadow.GetLocation(); in PaintShadow()
4100 Color aShadowColor( rShadow.GetColor() ); in PaintShadow()
/trunk/main/sw/source/core/inc/
H A Dfrmtool.hxx265 const SvxShadowItem &rShadow; member in SwBorderAttrs
355 inline const SvxShadowItem &GetShadow() const { return rShadow; } in GetShadow()
/trunk/main/cui/source/tabpages/
H A Dpage.cxx175 Size GetMinBorderSpace_Impl( const SvxShadowItem& rShadow, const SvxBoxItem& rBox ) in GetMinBorderSpace_Impl() argument
178 aSz.Height() = rShadow.CalcShadowSpace( SHADOW_BOTTOM ) + rBox.CalcLineSpace( BOX_LINE_BOTTOM ); in GetMinBorderSpace_Impl()
179 aSz.Height() += rShadow.CalcShadowSpace( SHADOW_TOP ) + rBox.CalcLineSpace( BOX_LINE_TOP ); in GetMinBorderSpace_Impl()
180 aSz.Width() = rShadow.CalcShadowSpace( SHADOW_LEFT ) + rBox.CalcLineSpace( BOX_LINE_LEFT ); in GetMinBorderSpace_Impl()
181 aSz.Width() += rShadow.CalcShadowSpace( SHADOW_RIGHT ) + rBox.CalcLineSpace( BOX_LINE_RIGHT ); in GetMinBorderSpace_Impl()
/trunk/main/svx/inc/svx/sdr/attribute/
H A Dsdrshadowtextattribute.hxx45 const SdrShadowAttribute& rShadow,
H A Dsdrlineshadowtextattribute.hxx48 const SdrShadowAttribute& rShadow,
H A Dsdrlinefillshadowtextattribute.hxx49 const SdrShadowAttribute& rShadow,
/trunk/main/drawinglayer/inc/drawinglayer/attribute/
H A Dsdrallattribute3d.hxx58 const SdrShadowAttribute& rShadow,
/trunk/main/svx/inc/svx/sdr/primitive2d/
H A Dsdrdecompositiontools.hxx81 const attribute::SdrShadowAttribute& rShadow);
/trunk/main/drawinglayer/inc/drawinglayer/primitive3d/
H A Dsdrdecompositiontools3d.hxx85 const attribute::SdrShadowAttribute& rShadow,
/trunk/main/sw/source/filter/ww8/
H A Drtfattributeoutput.hxx291 virtual void CharShadow( const SvxShadowedItem& rShadow );
H A Ddocxattributeoutput.hxx357 virtual void CharShadow( const SvxShadowedItem& rShadow );
H A Dww8par6.cxx1591 bool SwWW8ImplReader::SetShadow(SvxShadowItem& rShadow, const short *pSizeArray, in SetShadow() argument
1601 rShadow.SetColor(Color(COL_BLACK)); in SetShadow()
1607 rShadow.SetWidth(nVal); in SetShadow()
1608 rShadow.SetLocation(SVX_SHADOW_BOTTOMRIGHT); in SetShadow()
H A Ddocxattributeoutput.cxx2347 void DocxAttributeOutput::CharShadow( const SvxShadowedItem& rShadow ) in CharShadow() argument
2349 if ( rShadow.GetValue() ) in CharShadow()
H A Drtfattributeoutput.cxx2184 void RtfAttributeOutput::CharShadow( const SvxShadowedItem& rShadow ) in CharShadow() argument
2189 if ( !rShadow.GetValue() ) in CharShadow()
H A Dww8par.hxx1323 bool SetShadow(SvxShadowItem& rShadow, const short *pSizeArray,

Completed in 211 milliseconds

12