diff options
author | Neil <nyamatongwe@gmail.com> | 2021-03-25 09:20:08 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-03-25 09:20:08 +1100 |
commit | 20bb1c7c0f6931819745d9756ab14246c20c4e9f (patch) | |
tree | f7e10e6097b99c44a03a246b07eda940581445cd /src | |
parent | d3deaacf51e0d459c8025d6a411acf0bc8b17945 (diff) | |
download | scintilla-mirror-20bb1c7c0f6931819745d9756ab14246c20c4e9f.tar.gz |
Implement translucent FillRectangle.
Diffstat (limited to 'src')
-rw-r--r-- | src/Platform.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Platform.h b/src/Platform.h index 45c04abdc..abad8abfa 100644 --- a/src/Platform.h +++ b/src/Platform.h @@ -191,6 +191,7 @@ public: virtual void Polygon(Point *pts, size_t npts, ColourDesired fore, ColourDesired back)=0; virtual void RectangleDraw(PRectangle rc, ColourDesired fore, ColourDesired back)=0; virtual void FillRectangle(PRectangle rc, ColourDesired back)=0; + virtual void FillRectangle(PRectangle rc, Fill fill)=0; virtual void FillRectangle(PRectangle rc, Surface &surfacePattern)=0; virtual void RoundedRectangle(PRectangle rc, ColourDesired fore, ColourDesired back)=0; virtual void AlphaRectangle(PRectangle rc, int cornerSize, ColourDesired fill, int alphaFill, |