diff options
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/filter/SvmReader.hxx | 1 | ||||
-rw-r--r-- | include/vcl/metaact.hxx | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/include/vcl/filter/SvmReader.hxx b/include/vcl/filter/SvmReader.hxx index 7baae24379b0..230a725c0ca9 100644 --- a/include/vcl/filter/SvmReader.hxx +++ b/include/vcl/filter/SvmReader.hxx @@ -53,6 +53,7 @@ public: rtl::Reference<MetaAction> PolyPolygonHandler(); rtl::Reference<MetaAction> TextHandler(ImplMetaReadData* pData); rtl::Reference<MetaAction> TextArrayHandler(ImplMetaReadData* pData); + rtl::Reference<MetaAction> StretchTextHandler(ImplMetaReadData* pData); }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/vcl/metaact.hxx b/include/vcl/metaact.hxx index 28a5373329c6..19ed80859f33 100644 --- a/include/vcl/metaact.hxx +++ b/include/vcl/metaact.hxx @@ -606,6 +606,11 @@ public: sal_uInt32 GetWidth() const { return mnWidth; } sal_Int32 GetIndex() const { return mnIndex; } sal_Int32 GetLen() const { return mnLen; } + void SetPoint(Point& rPt) { maPt = rPt; } + void SetText(OUString& rStr) { maStr = rStr; } + void SetWidth(sal_uInt32 rWidth) { mnWidth = rWidth; } + void SetIndex(sal_uInt32 rIndex) { mnIndex = rIndex; } + void SetLen(sal_uInt32 rLen) { mnLen = rLen; } }; class SAL_DLLPUBLIC_RTTI MetaTextRectAction final : public MetaAction |