diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-05-06 17:00:40 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-05-06 17:11:44 +0200 |
commit | f0d6137c4e61bea3bed2b201a83a8e7a66065114 (patch) | |
tree | 21fb7e92907d18a8f4543166bdd572a461a1bd45 /include/oox | |
parent | d3832fc60d42fedf2ba9a49b8d353a3d1265a38f (diff) |
oox: prepare for importing a TextBox property on shapes
Writer's SwXShape doesn't have that property yet, though.
Change-Id: I997eb188574fab93d35595972fdc2eaebabc015b
Diffstat (limited to 'include/oox')
-rw-r--r-- | include/oox/drawingml/shape.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
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<com::sun::star::beans::PropertyValue> & getDiagramDoms() { return maDiagramDoms; } void setDiagramDoms(const com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue>& 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 ? |