Lines Matching refs:basegfx
127 basegfx::B2DPolygon aTriangle; in Create()
128 aTriangle.append(basegfx::B2DPoint(10.0, 0.0)); in Create()
129 aTriangle.append(basegfx::B2DPoint(0.0, 30.0)); in Create()
130 aTriangle.append(basegfx::B2DPoint(20.0, 30.0)); in Create()
132 Insert( new XLineEndEntry( basegfx::B2DPolyPolygon(aTriangle), SVX_RESSTR( RID_SVXSTR_ARROW ) ) ); in Create()
134 basegfx::B2DPolygon aSquare; in Create()
135 aSquare.append(basegfx::B2DPoint(0.0, 0.0)); in Create()
136 aSquare.append(basegfx::B2DPoint(10.0, 0.0)); in Create()
137 aSquare.append(basegfx::B2DPoint(10.0, 10.0)); in Create()
138 aSquare.append(basegfx::B2DPoint(0.0, 10.0)); in Create()
140 Insert( new XLineEndEntry( basegfx::B2DPolyPolygon(aSquare), SVX_RESSTR( RID_SVXSTR_SQUARE ) ) ); in Create()
142 …basegfx::B2DPolygon aCircle(basegfx::tools::createPolygonFromCircle(basegfx::B2DPoint(0.0, 0.0), 1… in Create()
143 Insert( new XLineEndEntry( basegfx::B2DPolyPolygon(aCircle), SVX_RESSTR( RID_SVXSTR_CIRCLE ) ) ); in Create()
160 basegfx::B2DPolygon aLine; in CreateBitmapForUI()
163 aLine.append(basegfx::B2DPoint(fBorderDistance, aSize.Height() / 2)); in CreateBitmapForUI()
164 aLine.append(basegfx::B2DPoint(aSize.Width() - fBorderDistance, aSize.Height() / 2)); in CreateBitmapForUI()
167 const basegfx::BColor aLineColor(rStyleSettings.GetFieldTextColor().getBColor()); in CreateBitmapForUI()
173 const basegfx::B2DPolyPolygon aLineEnd(GetLineEnd(nIndex)->GetLineEnd()); in CreateBitmapForUI()