From f0d6137c4e61bea3bed2b201a83a8e7a66065114 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Tue, 6 May 2014 17:00:40 +0200 Subject: oox: prepare for importing a TextBox property on shapes Writer's SwXShape doesn't have that property yet, though. Change-Id: I997eb188574fab93d35595972fdc2eaebabc015b --- include/oox/drawingml/shape.hxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/oox/drawingml/shape.hxx') diff --git a/include/oox/drawingml/shape.hxx b/include/oox/drawingml/shape.hxx index 926f223ecd08..fcb499940019 100644 --- a/include/oox/drawingml/shape.hxx +++ b/include/oox/drawingml/shape.hxx @@ -180,6 +180,7 @@ public: bool getLockedCanvas(); void setWps(bool bWps); bool getWps(); + void setTextBox(bool bTextBox); const com::sun::star::uno::Sequence & getDiagramDoms() { return maDiagramDoms; } void setDiagramDoms(const com::sun::star::uno::Sequence& rDiagramDoms) { maDiagramDoms = rDiagramDoms; } @@ -293,6 +294,7 @@ private: // to propagate it when applying reference shape bool mbLockedCanvas; ///< Is this shape part of a locked canvas? bool mbWps; ///< Is this a wps shape? + bool mbTextBox; ///< This shape has a textbox. LinkedTxbxAttr maLinkedTxbxAttr; bool mbHasLinkedTxbx; // this text box has linked text box ? -- cgit