Lines Matching refs:lpt1

32     procedure RenderShapeCircle(const lpt1: TFPReportPoint; const ALayout: TFPReportLayout);
33 procedure RenderShapeEllipse(const lpt1: TFPReportPoint; const ALayout: TFPReportLayout);
34 …procedure RenderShapeLine(lpt1: TFPReportPoint; const AOrientation: TFPReportOrientation; const AL…
35 procedure RenderShapeRect(const lpt1: TFPReportPoint; const ALayout: TFPReportLayout);
40 Procedure RenderShape(const lpt1: TFPReportPoint; const AShape: TFPReportCustomShape);
41 procedure RenderImage(const lpt1: TFPReportPoint; const AImage: TFPReportCustomImage);overload;
129 procedure TFPReportCanvasHelper.RenderShape(const lpt1: TFPReportPoint; const AShape: TFPReportCust…
140 stEllipse: RenderShapeEllipse(lpt1,AShape.RTLayout);
141 stCircle: RenderShapeCircle(lpt1,AShape.RTLayout);
142 stLine: RenderShapeLine(lpt1,TFPReportShape(AShape).Orientation, AShape.RTLayout);
143 stSquare: RenderShapeRect(lpt1,AShape.RTLayout);
144 stTriangle: RenderShapeTriangle(lpt1,TFPReportShape(AShape).Orientation, AShape.RTLayout);
159 procedure TFPReportCanvasHelper.RenderImage(const lpt1: TFPReportPoint;
176 procedure TFPReportCanvasHelper.RenderShapeCircle(const lpt1: TFPReportPoint;
193 procedure TFPReportCanvasHelper.RenderShapeEllipse(const lpt1: TFPReportPoint;
199 R:=CoordToRect(lpt1,ALayout.Width,ALayout.Height);
203 procedure TFPReportCanvasHelper.RenderShapeLine(lpt1: TFPReportPoint;
236 R1:=CoordToPoint(lpt1);
241 procedure TFPReportCanvasHelper.RenderShapeRect(const lpt1: TFPReportPoint;
281 lpt1,lPt2,lpt3: TFPReportPoint; // original Report points for 3 corners of triangle.
358 DrawLine(lpt1,lpt2);
360 DrawLine(lpt3,lpt1);