LibreOffice Module sd (master) 1
|
This is one trivial bitmap compressor. More...
#include <SlsBitmapCompressor.hxx>
Classes | |
class | DummyReplacement |
This dummy replacement simply stores a shared pointer to the original preview bitmap. More... | |
Public Member Functions | |
virtual | ~NoBitmapCompression () |
virtual std::shared_ptr< BitmapReplacement > | Compress (const BitmapEx &rpBitmap) const override |
Compress the given bitmap into a replacement format that is specific to the compressor class. More... | |
virtual BitmapEx | Decompress (const BitmapReplacement &rBitmapData) const override |
Decompress the given replacement data into a preview bitmap. More... | |
virtual bool | IsLossless () const override |
Return whether the compression and decompression is lossless. More... | |
virtual std::shared_ptr< BitmapReplacement > | Compress (const BitmapEx &rBitmap) const =0 |
Compress the given bitmap into a replacement format that is specific to the compressor class. More... | |
virtual BitmapEx | Decompress (const BitmapReplacement &rBitmapData) const =0 |
Decompress the given replacement data into a preview bitmap. More... | |
virtual bool | IsLossless () const =0 |
Return whether the compression and decompression is lossless. More... | |
Additional Inherited Members | |
![]() | |
~BitmapCompressor () | |
This is one trivial bitmap compressor.
It stores bitmaps unmodified instead of compressing them. This compressor is lossless.
Definition at line 78 of file SlsBitmapCompressor.hxx.
|
inlinevirtual |
Definition at line 83 of file SlsBitmapCompressor.hxx.
|
overridevirtual |
Compress the given bitmap into a replacement format that is specific to the compressor class.
Implements sd::slidesorter::cache::BitmapCompressor.
Definition at line 45 of file SlsBitmapCompressor.cxx.
|
overridevirtual |
Decompress the given replacement data into a preview bitmap.
Depending on the compression technique the returned bitmap may differ from the original bitmap given to the Compress() method. It may even of the wrong size or empty or the NULL pointer. It is the task of the caller to create a new preview bitmap if the returned one is not as desired.
Implements sd::slidesorter::cache::BitmapCompressor.
Definition at line 50 of file SlsBitmapCompressor.cxx.
|
overridevirtual |
Return whether the compression and decompression is lossless.
This value is used by the caller of Decompress() to decide whether to use the returned bitmap as is or if a new preview has to be created.
Implements sd::slidesorter::cache::BitmapCompressor.
Definition at line 55 of file SlsBitmapCompressor.cxx.