Lines Matching refs:rSet
86 sal_uInt8 impGetStrokeTransparence(bool bShadow, const SfxItemSet& rSet) in impGetStrokeTransparence() argument
92 …nRetval = (sal_uInt8)((((SdrShadowTransparenceItem&)(rSet.Get(SDRATTR_SHADOWTRANSPARENCE))).GetVal… in impGetStrokeTransparence()
96 …nRetval = (sal_uInt8)((((XLineTransparenceItem&)(rSet.Get(XATTR_LINETRANSPARENCE))).GetValue() * 2… in impGetStrokeTransparence()
102 drawinglayer::attribute::LineAttribute impGetLineAttribute(bool bShadow, const SfxItemSet& rSet) in impGetLineAttribute() argument
108 const Color aShadowColor(((SdrShadowColorItem&)(rSet.Get(SDRATTR_SHADOWCOLOR))).GetColorValue()); in impGetLineAttribute()
113 const Color aLineColor(((XLineColorItem&)(rSet.Get(XATTR_LINECOLOR))).GetColorValue()); in impGetLineAttribute()
117 const sal_uInt32 nLineWidth = ((const XLineWidthItem&)(rSet.Get(XATTR_LINEWIDTH))).GetValue(); in impGetLineAttribute()
118 …const com::sun::star::drawing::LineJoint eLineJoint = ((const XLineJointItem&)(rSet.Get(XATTR_LINE… in impGetLineAttribute()
119 …const com::sun::star::drawing::LineCap eLineCap = ((const XLineCapItem&)(rSet.Get(XATTR_LINECAP)))… in impGetLineAttribute()
128 drawinglayer::attribute::StrokeAttribute impGetStrokeAttribute(const SfxItemSet& rSet) in impGetStrokeAttribute() argument
130 const XLineStyle eLineStyle = ((XLineStyleItem&)(rSet.Get(XATTR_LINESTYLE))).GetValue(); in impGetStrokeAttribute()
136 const XDash& rDash = ((const XLineDashItem&)(rSet.Get(XATTR_LINEDASH))).GetDashValue(); in impGetStrokeAttribute()
140 … const sal_uInt32 nLineWidth = ((const XLineWidthItem&)(rSet.Get(XATTR_LINEWIDTH))).GetValue(); in impGetStrokeAttribute()
181 ImpSdrFormTextAttribute(const SfxItemSet& rSet) in ImpSdrFormTextAttribute() argument
183 mnFormTextDistance(((const XFormTextDistanceItem&)rSet.Get(XATTR_FORMTXTDISTANCE)).GetValue()), in ImpSdrFormTextAttribute()
184 mnFormTextStart(((const XFormTextStartItem&)rSet.Get(XATTR_FORMTXTSTART)).GetValue()), in ImpSdrFormTextAttribute()
185 … mnFormTextShdwXVal(((const XFormTextShadowXValItem&)rSet.Get(XATTR_FORMTXTSHDWXVAL)).GetValue()), in ImpSdrFormTextAttribute()
186 … mnFormTextShdwYVal(((const XFormTextShadowYValItem&)rSet.Get(XATTR_FORMTXTSHDWYVAL)).GetValue()), in ImpSdrFormTextAttribute()
187 …mnFormTextShdwTransp(((const XFormTextShadowTranspItem&)rSet.Get(XATTR_FORMTXTSHDWTRANSP)).GetValu… in ImpSdrFormTextAttribute()
188 meFormTextStyle(((const XFormTextStyleItem&)rSet.Get(XATTR_FORMTXTSTYLE)).GetValue()), in ImpSdrFormTextAttribute()
189 meFormTextAdjust(((const XFormTextAdjustItem&)rSet.Get(XATTR_FORMTXTADJUST)).GetValue()), in ImpSdrFormTextAttribute()
190 meFormTextShadow(((const XFormTextShadowItem&)rSet.Get(XATTR_FORMTXTSHADOW)).GetValue()), in ImpSdrFormTextAttribute()
191 …maFormTextShdwColor(((const XFormTextShadowColorItem&)rSet.Get(XATTR_FORMTXTSHDWCOLOR)).GetColorVa… in ImpSdrFormTextAttribute()
194 mbFormTextMirror(((const XFormTextMirrorItem&)rSet.Get(XATTR_FORMTXTMIRROR)).GetValue()), in ImpSdrFormTextAttribute()
195 mbFormTextOutline(((const XFormTextOutlineItem&)rSet.Get(XATTR_FORMTXTOUTLINE)).GetValue()) in ImpSdrFormTextAttribute()
199 const StrokeAttribute aStrokeAttribute(impGetStrokeAttribute(rSet)); in ImpSdrFormTextAttribute()
203 const LineAttribute aLineAttribute(impGetLineAttribute(false, rSet)); in ImpSdrFormTextAttribute()
204 const sal_uInt8 nTransparence(impGetStrokeTransparence(false, rSet)); in ImpSdrFormTextAttribute()
213 const LineAttribute aLineAttribute(impGetLineAttribute(true, rSet)); in ImpSdrFormTextAttribute()
214 const sal_uInt8 nTransparence(impGetStrokeTransparence(true, rSet)); in ImpSdrFormTextAttribute()
289 SdrFormTextAttribute::SdrFormTextAttribute(const SfxItemSet& rSet) in SdrFormTextAttribute() argument
290 : mpSdrFormTextAttribute(new ImpSdrFormTextAttribute(rSet)) in SdrFormTextAttribute()