Home
last modified time | relevance | path

Searched refs:strokeAttributes (Results 1 – 11 of 11) sorted by relevance

/aoo41x/main/canvas/source/tools/
H A Dverifyinput.cxx500 if( !::rtl::math::isFinite( strokeAttributes.StrokeWidth ) || in verifyInput()
501 strokeAttributes.StrokeWidth < 0.0 ) in verifyInput()
507 ::rtl::OUString::valueOf(strokeAttributes.StrokeWidth) + in verifyInput()
516 if( !::rtl::math::isFinite( strokeAttributes.MiterLimit ) || in verifyInput()
517 strokeAttributes.MiterLimit < 0.0 ) in verifyInput()
523 ::rtl::OUString::valueOf(strokeAttributes.MiterLimit) + in verifyInput()
532 ::std::for_each( strokeAttributes.DashArray.getConstArray(), in verifyInput()
533strokeAttributes.DashArray.getConstArray() + strokeAttributes.DashArray.getLength(), in verifyInput()
536 ::std::for_each( strokeAttributes.LineArray.getConstArray(), in verifyInput()
537strokeAttributes.LineArray.getConstArray() + strokeAttributes.LineArray.getLength(), in verifyInput()
[all …]
/aoo41x/main/canvas/inc/canvas/base/
H A Dcanvasbase.hxx217 …const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes ) throw (::com::sun… in strokePolyPolygon()
220 tools::verifyArgs(xPolyPolygon, viewState, renderState, strokeAttributes, in strokePolyPolygon()
229 …n maCanvasHelper.strokePolyPolygon( this, xPolyPolygon, viewState, renderState, strokeAttributes ); in strokePolyPolygon()
237 …const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes ) throw (::com::sun… in strokeTexturedPolyPolygon()
240 tools::verifyArgs(xPolyPolygon, viewState, renderState, strokeAttributes, in strokeTexturedPolyPolygon()
249 …trokeTexturedPolyPolygon( this, xPolyPolygon, viewState, renderState, textures, strokeAttributes ); in strokeTexturedPolyPolygon()
261 … tools::verifyArgs(xPolyPolygon, viewState, renderState, textures, xMapping, strokeAttributes, in strokeTextureMappedPolyPolygon()
270 …pedPolyPolygon( this, xPolyPolygon, viewState, renderState, textures, xMapping, strokeAttributes ); in strokeTextureMappedPolyPolygon()
277 …const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes ) throw (::com::sun… in queryStrokeShapes()
280 tools::verifyArgs(xPolyPolygon, viewState, renderState, strokeAttributes, in queryStrokeShapes()
[all …]
/aoo41x/main/canvas/source/directx/
H A Ddx_canvashelper.cxx335 … const rendering::StrokeAttributes& strokeAttributes ) in strokePolyPolygon() argument
353 static_cast< Gdiplus::REAL >(strokeAttributes.StrokeWidth) ); in strokePolyPolygon()
364 const bool bIsMiter(rendering::PathJoinType::MITER == strokeAttributes.JoinType); in strokePolyPolygon()
365 const bool bIsNone(rendering::PathJoinType::NONE == strokeAttributes.JoinType); in strokePolyPolygon()
368 aPen.SetMiterLimit( static_cast< Gdiplus::REAL >(strokeAttributes.MiterLimit) ); in strokePolyPolygon()
372 strokeAttributes.DashArray ) ); in strokePolyPolygon()
378 aPen.SetLineCap( gdiCapFromCap(strokeAttributes.StartCapType), in strokePolyPolygon()
379 gdiCapFromCap(strokeAttributes.EndCapType), in strokePolyPolygon()
382 aPen.SetLineJoin( gdiJoinFromJoin(strokeAttributes.JoinType) ); in strokePolyPolygon()
H A Ddx_canvashelper.hxx120 … const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes );
129 … const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes );
140 … const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes );
147 … const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes );
/aoo41x/main/canvas/source/vcl/
H A Dcanvashelper.cxx340 … const rendering::StrokeAttributes& strokeAttributes ) in strokePolyPolygon() argument
352 ::basegfx::B2DSize aLinePixelSize(strokeAttributes.StrokeWidth, in strokePolyPolygon()
353 strokeAttributes.StrokeWidth); in strokePolyPolygon()
366 if( strokeAttributes.DashArray.getLength() ) in strokePolyPolygon()
369 … ::comphelper::sequenceToContainer< ::std::vector<double> >(strokeAttributes.DashArray) ); in strokePolyPolygon()
412 strokeAttributes.StrokeWidth*0.5, in strokePolyPolygon()
413 b2DJoineFromJoin(strokeAttributes.JoinType), in strokePolyPolygon()
414 unoCapeFromCap(strokeAttributes.StartCapType))); in strokePolyPolygon()
H A Dcanvashelper.hxx134 … const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes );
143 … const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes );
154 … const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes );
161 … const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes );
/aoo41x/main/canvas/source/null/
H A Dnull_canvashelper.hxx106 … const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes );
115 … const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes );
126 … const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes );
133 … const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes );
/aoo41x/main/canvas/source/cairo/
H A Dcairo_canvashelper.cxx1129 … const rendering::StrokeAttributes& strokeAttributes ) in strokePolyPolygon() argument
1142 double w = strokeAttributes.StrokeWidth, h = 0; in strokePolyPolygon()
1147 cairo_set_miter_limit( mpCairo.get(), strokeAttributes.MiterLimit ); in strokePolyPolygon()
1150 switch( strokeAttributes.StartCapType ) { in strokePolyPolygon()
1164 switch( strokeAttributes.JoinType ) { in strokePolyPolygon()
1179 if( strokeAttributes.DashArray.getLength() > 0 ) { in strokePolyPolygon()
1180 double* pDashArray = new double[ strokeAttributes.DashArray.getLength() ]; in strokePolyPolygon()
1181 for( sal_Int32 i=0; i<strokeAttributes.DashArray.getLength(); i++ ) in strokePolyPolygon()
1182 pDashArray[i]=strokeAttributes.DashArray[i]; in strokePolyPolygon()
1183 cairo_set_dash( mpCairo.get(), pDashArray, strokeAttributes.DashArray.getLength(), 0 ); in strokePolyPolygon()
H A Dcairo_canvashelper.hxx119 … const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes );
128 … const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes );
139 … const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes );
146 … const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes );
/aoo41x/main/canvas/inc/canvas/rendering/
H A Dbitmap.hxx205 const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes );
222 const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes );
241 const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes );
/aoo41x/main/canvas/inc/canvas/
H A Dverifyinput.hxx303 void verifyInput( const ::com::sun::star::rendering::StrokeAttributes& strokeAttributes,

Completed in 70 milliseconds