diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2020-02-10 18:27:23 +0100 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2020-02-11 18:54:11 +0100 |
commit | 203abaaaaa33e6631315c735f6d42ad2c088a973 (patch) | |
tree | 95e1914c0e18b7014b9bfb4ab9b863b57db76264 /include | |
parent | 71395766532cace8cd981a77599b8ac74260ab57 (diff) |
move GraphicReader class out of graph.hxx
Change-Id: Id78995bfb8e8308a388ed542690ad85e4d19ce12
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88425
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/graph.hxx | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/include/vcl/graph.hxx b/include/vcl/graph.hxx index a30b3909e899..c1fadb49d9cb 100644 --- a/include/vcl/graph.hxx +++ b/include/vcl/graph.hxx @@ -32,7 +32,6 @@ #include <basegfx/vector/b2dsize.hxx> #include <vcl/GraphicExternalLink.hxx> - enum class GraphicType { NONE, @@ -49,28 +48,7 @@ class GDIMetaFile; class SvStream; class ImpGraphic; class OutputDevice; -class ReaderData; - -class GraphicReader -{ -public: - virtual ~GraphicReader(); - - const OUString& GetUpperFilterName() const { return maUpperName; } - - // TODO: when incompatible changes are possible again - // the preview size hint should be redone - void DisablePreviewMode(); - void SetPreviewSize( const Size& ); - Size GetPreviewSize() const; - -protected: - OUString maUpperName; - - GraphicReader(); -private: - std::unique_ptr<ReaderData> mpReaderData; -}; +class GraphicReader; class VCL_DLLPUBLIC GraphicConversionParameters { |