diff options
Diffstat (limited to 'xmloff/source/draw/ximppage.hxx')
-rw-r--r-- | xmloff/source/draw/ximppage.hxx | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/xmloff/source/draw/ximppage.hxx b/xmloff/source/draw/ximppage.hxx index 9b627ef9f089..ef5e97a6ac7a 100644 --- a/xmloff/source/draw/ximppage.hxx +++ b/xmloff/source/draw/ximppage.hxx @@ -2,9 +2,9 @@ * * $RCSfile: ximppage.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: cl $ $Date: 2001-01-25 12:48:39 $ + * last change: $Author: cl $ $Date: 2001-05-28 13:32:20 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -95,9 +95,20 @@ class SdXMLGenericPageContext : public SvXMLImportContext com::sun::star::uno::Reference< com::sun::star::drawing::XShapes > mxShapes; protected: + rtl::OUString maPageLayoutName; + void SetLocalShapesContext(com::sun::star::uno::Reference< com::sun::star::drawing::XShapes >& rNew) { mxShapes = rNew; } + /** sets the presentation layout at this page. It is used for drawing pages and for the handout master */ + void SetLayout(); + + /** deletes all shapes on this drawing page */ + void DeleteAllShapes(); + + const SdXMLImport& GetSdImport() const { return (const SdXMLImport&)GetImport(); } + SdXMLImport& GetSdImport() { return (SdXMLImport&)GetImport(); } + public: TYPEINFO(); |