summaryrefslogtreecommitdiff
path: root/oox/inc
diff options
context:
space:
mode:
authorRadek Doulik <rodo@novell.com>2010-10-08 14:42:23 +0200
committerRadek Doulik <rodo@novell.com>2010-10-08 14:42:23 +0200
commit0cbc98860cb1740ed787887cc4245db963285600 (patch)
treed9ba2151899e3a7693f0c577469d07052c652f95 /oox/inc
parent62576115393f4cbb20e22fa6ed7da262e94ecb6a (diff)
oox-pptx-import-fix-customshapes-and-groups.diff: fix group shapes and guides.
n#621739
Diffstat (limited to 'oox/inc')
-rw-r--r--oox/inc/oox/drawingml/shape.hxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/oox/inc/oox/drawingml/shape.hxx b/oox/inc/oox/drawingml/shape.hxx
index d6cab48f6bb5..fdbda167e69a 100644
--- a/oox/inc/oox/drawingml/shape.hxx
+++ b/oox/inc/oox/drawingml/shape.hxx
@@ -116,6 +116,9 @@ public:
table::TablePropertiesPtr getTableProperties();
+ void setChildPosition( com::sun::star::awt::Point nPosition ){ maChPosition = nPosition; }
+ void setChildSize( com::sun::star::awt::Size aSize ){ maChSize = aSize; }
+
void setPosition( com::sun::star::awt::Point nPosition ){ maPosition = nPosition; }
void setSize( com::sun::star::awt::Size aSize ){ maSize = aSize; }
void setRotation( sal_Int32 nRotation ) { mnRotation = nRotation; }
@@ -182,6 +185,9 @@ protected:
ShapeIdMap* pShapeMap );
std::vector< ShapePtr > maChildren; // only used for group shapes
+ com::sun::star::awt::Size maChSize; // only used for group shapes
+ com::sun::star::awt::Point maChPosition; // only used for group shapes
+
TextBodyPtr mpTextBody;
LinePropertiesPtr mpLinePropertiesPtr;
FillPropertiesPtr mpFillPropertiesPtr;