diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-11-11 15:52:51 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-11-11 20:36:14 +0100 |
commit | c3da84a10260b3260ee42df900e2ff01119e4f7c (patch) | |
tree | 0de88d7f184bd74b14e6fd30393354bb0280d666 /vcl/inc/image.h | |
parent | c2c37eadf32c80bcd8f168b9fc67f32002b3cb07 (diff) |
Resolves: tdf#151898 get hidpi font/highlight color icons
Most of this wouldn't be necessary if we could solve the split alpha
problem. In the meantime, let Image take a MetaFile as an arg, record
what we want to do in the metafile, and play it back when we need to
generate the bitmap for to render the image. That way we don't have
alpha to worry about during the recording, and we only have one alpha in
the final rendering, as opposed to having two alphas in a source and in
destination VirtualDevice, which is problematic in most backends.
Change-Id: I5b0d7c498473271f4ab2743f75614b1b93a0e9c9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142593
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/inc/image.h')
-rw-r--r-- | vcl/inc/image.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/vcl/inc/image.h b/vcl/inc/image.h index 5d0cc9fcb671..cb75b45b837d 100644 --- a/vcl/inc/image.h +++ b/vcl/inc/image.h @@ -21,6 +21,7 @@ #define INCLUDED_VCL_INC_IMAGE_H #include <vcl/bitmapex.hxx> +#include <vcl/gdimtf.hxx> class SalGraphics; @@ -32,7 +33,8 @@ private: Size maSizePixel; /// If set - defines the bitmap via images.zip* OUString maStockName; - + /// rare case of dynamically created Image contents + std::unique_ptr<GDIMetaFile> mxMetaFile; /// Original bitmap - or cache of a potentially scaled bitmap BitmapEx maBitmapEx; @@ -42,6 +44,7 @@ private: public: ImplImage(const BitmapEx& rBitmapEx); + ImplImage(const GDIMetaFile& rMetaFile); ImplImage(OUString aStockName); bool isStock() const |