diff options
Diffstat (limited to 'include/vcl/metaact.hxx')
-rw-r--r-- | include/vcl/metaact.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/vcl/metaact.hxx b/include/vcl/metaact.hxx index b71c59b5144f..c59257433daa 100644 --- a/include/vcl/metaact.hxx +++ b/include/vcl/metaact.hxx @@ -909,6 +909,11 @@ public: const Size& GetDestSize() const { return maDstSz; } const Point& GetSrcPoint() const { return maSrcPt; } const Size& GetSrcSize() const { return maSrcSz; } + void SetBitmapEx(BitmapEx& rBmpEx) { maBmpEx = rBmpEx; } + void SetDestPoint(Point& rDstPt) { maDstPt = rDstPt; } + void SetDestSize(Size& rDstSz) { maDstSz = rDstSz; } + void SetSrcPoint(Point& rSrcPt) { maSrcPt = rSrcPt; } + void SetSrcSize(Size& rSrcSz) { maSrcSz = rSrcSz; } bool IsTransparent() const override { return GetBitmapEx().IsAlpha(); } }; |