From fa10779da55ff13c95a0cd39bffdf57dcdfc9cc5 Mon Sep 17 00:00:00 2001 From: Neil Date: Sat, 20 Mar 2021 09:56:18 +1100 Subject: Implement LineDraw and PolyLine. --- cocoa/PlatCocoa.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cocoa/PlatCocoa.h') diff --git a/cocoa/PlatCocoa.h b/cocoa/PlatCocoa.h index c14ca1928..29a3626ce 100644 --- a/cocoa/PlatCocoa.h +++ b/cocoa/PlatCocoa.h @@ -96,6 +96,8 @@ public: int DeviceHeightFont(int points) override; void MoveTo(int x_, int y_) override; void LineTo(int x_, int y_) override; + void LineDraw(Point start, Point end, Stroke stroke) override; + void PolyLine(const Point *pts, size_t npts, Stroke stroke) override; void Polygon(Scintilla::Point *pts, size_t npts, ColourDesired fore, ColourDesired back) override; void Polygon(const Scintilla::Point *pts, size_t npts, FillStroke fillStroke) override; void RectangleDraw(PRectangle rc, ColourDesired fore, ColourDesired back) override; -- cgit v1.2.3