summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorpanoskorovesis <panoskorovesis@outlook.com>2021-07-15 12:23:31 +0300
committerTomaž Vajngerl <quikee@gmail.com>2021-07-27 08:07:46 +0200
commit913cb8b32eb5346699770d52d288e02cc090011e (patch)
tree6b228897a4b874f819e5a1273f348269cba7930d /include
parent96294b206f02c9856dbcb8a21a0b20ce1180dd8c (diff)
Add Handler for Comment Read
The handler separates MetaCommentAction::Read from metaact.hxx Read implementation is now in SvmReader.hxx Change-Id: Ic37db0ecb30482b3503ede88cd9d72de2ed0efde Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119194 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/filter/SvmReader.hxx1
-rw-r--r--include/vcl/metaact.hxx4
2 files changed, 5 insertions, 0 deletions
diff --git a/include/vcl/filter/SvmReader.hxx b/include/vcl/filter/SvmReader.hxx
index 3ef53c4a7962..f075e2899f6f 100644
--- a/include/vcl/filter/SvmReader.hxx
+++ b/include/vcl/filter/SvmReader.hxx
@@ -87,6 +87,7 @@ public:
rtl::Reference<MetaAction> FloatTransparentHandler(ImplMetaReadData* pData);
rtl::Reference<MetaAction> EPSHandler();
rtl::Reference<MetaAction> RefPointHandler();
+ rtl::Reference<MetaAction> CommentHandler();
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/vcl/metaact.hxx b/include/vcl/metaact.hxx
index fe79942ac28e..be174299d1f1 100644
--- a/include/vcl/metaact.hxx
+++ b/include/vcl/metaact.hxx
@@ -1796,6 +1796,10 @@ public:
sal_Int32 GetValue() const { return mnValue; }
sal_uInt32 GetDataSize() const { return mnDataSize; }
const sal_uInt8* GetData() const { return mpData.get(); }
+ void SetComment(const OString& rComment) { maComment = rComment; }
+ void SetValue(const sal_Int32 nValue) { mnValue = nValue; }
+ void SetDataSize(const sal_Int32 nDataSize) { mnDataSize = nDataSize; }
+ void SetData(const sal_uInt8* pData, const sal_uInt32 nDataSize) { ImplInitDynamicData(pData, nDataSize); }
};
class UNLESS_MERGELIBS(VCL_DLLPUBLIC) MetaLayoutModeAction final : public MetaAction