diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-26 02:52:52 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-27 20:53:28 +1000 |
commit | 2fb91049670664966dc674831cea2617d528fba4 (patch) | |
tree | 130bb844110ecfcb7bf06559b773e162f0725f7f /include/vcl | |
parent | 0ff8f8e680c9d815dff9ee04a7f989048efe5080 (diff) |
VCL: Group pixel functions in OutputDevice
Change-Id: Ifaa6c8099bbef4a6d1c6b410474c922b9ad66131
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/outdev.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index 28505e89fe11..62464f843a9c 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -834,12 +834,17 @@ private: // not implemented; to detect misuses of DrawOutDev(...OutputDevice&); void DrawOutDev( const Point&, const Size&, const Point&, const Size&, const Printer&); + /** @name Pixel functions + */ + ///@{ public: void DrawPixel( const Point& rPt ); void DrawPixel( const Point& rPt, const Color& rColor ); void DrawPixel( const Polygon& rPts, const Color* pColors = NULL ); void DrawPixel( const Polygon& rPts, const Color& rColor ); + ///@} +public: void DrawRect( const Rectangle& rRect ); void DrawRect( const Rectangle& rRect, sal_uLong nHorzRount, sal_uLong nVertRound ); |