summaryrefslogtreecommitdiff
path: root/xmloff/source/text/XMLTextHeaderFooterContext.cxx
diff options
context:
space:
mode:
authorMichael Brauer <mib@openoffice.org>2000-10-26 08:29:25 +0000
committerMichael Brauer <mib@openoffice.org>2000-10-26 08:29:25 +0000
commit19078e8786e6fa9179a06ef5cacc94fbff113dc6 (patch)
treee7e692c9c3689b4bbc531fdd0fadabdb10f498d6 /xmloff/source/text/XMLTextHeaderFooterContext.cxx
parent3eb2ecd4eda1251d554f7a1929de79e35b1b199c (diff)
tables within headers and footers
Diffstat (limited to 'xmloff/source/text/XMLTextHeaderFooterContext.cxx')
-rw-r--r--xmloff/source/text/XMLTextHeaderFooterContext.cxx37
1 files changed, 30 insertions, 7 deletions
diff --git a/xmloff/source/text/XMLTextHeaderFooterContext.cxx b/xmloff/source/text/XMLTextHeaderFooterContext.cxx
index 8a928f190cbd..6493c734e444 100644
--- a/xmloff/source/text/XMLTextHeaderFooterContext.cxx
+++ b/xmloff/source/text/XMLTextHeaderFooterContext.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: XMLTextHeaderFooterContext.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mib $ $Date: 2000-10-23 11:56:25 $
+ * last change: $Author: mib $ $Date: 2000-10-26 09:25:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -62,6 +62,9 @@
#ifndef _COM_SUN_STAR_TEXT_XTEXT_HPP_
#include <com/sun/star/text/XText.hpp>
#endif
+#ifndef _COM_SUN_STAR_TEXT_XRELATIVETEXTCONTENTREMOVE_HPP_
+#include <com/sun/star/text/XRelativeTextContentRemove.hpp>
+#endif
#ifndef _XMLOFF_NMSPMAP_HXX
#include "nmspmap.hxx"
#endif
@@ -74,6 +77,9 @@
#ifndef _XMLOFF_TEXTHEADERFOOTERCONTEXT_HXX_
#include "XMLTextHeaderFooterContext.hxx"
#endif
+#ifndef _XMLOFF_TEXTTABLECONTEXT_HXX_
+#include "XMLTextTableContext.hxx"
+#endif
#ifndef _XMLOFF_XMLIMP_HXX
#include "xmlimp.hxx"
#endif
@@ -103,7 +109,7 @@ XMLTextHeaderFooterContext::XMLTextHeaderFooterContext( SvXMLImport& rImport, sa
xPropSet( rPageStylePropSet ),
sOn( OUString::createFromAscii( bFooter ? "FooterIsOn" : "HeaderIsOn" ) ),
sShareContent( OUString::createFromAscii( bFooter ? "FooterIsShared"
- : "HeaderShared" ) ),
+ : "HeaderIsShared" ) ),
sText( OUString::createFromAscii( bFooter ? "FooterText" : "HeaderText" ) ),
sTextLeft( OUString::createFromAscii( bFooter ? "FooterTextLeft"
: "HeaderTextLeft" ) ),
@@ -207,10 +213,16 @@ SvXMLImportContext *XMLTextHeaderFooterContext::CreateChildContext(
}
pContext =
- GetImport().GetTextImport()->CreateTextChildContext(GetImport(),
- nPrefix,
- rLocalName,
- xAttrList);
+ GetImport().GetTextImport()->CreateTextChildContext(
+ GetImport(), nPrefix, rLocalName, xAttrList,
+ XML_TEXT_TYPE_HEADER_FOOTER );
+ if( pContext && pContext->ISA( XMLTextTableContext ) )
+ {
+ xTextContent = PTR_CAST( XMLTextTableContext, pContext )
+ ->GetXTextContent();
+ }
+ else
+ xTextContent = 0;
}
if( !pContext )
pContext = new SvXMLImportContext( GetImport(), nPrefix, rLocalName );
@@ -229,6 +241,17 @@ void XMLTextHeaderFooterContext::EndElement()
GetImport().GetTextImport()->GetCursorAsRange(), sEmpty,
sal_True );
}
+ else if( xTextContent.is() )
+ {
+ Reference< XRelativeTextContentRemove > xRemove(
+ GetImport().GetTextImport()->GetText(), UNO_QUERY );
+ if( xRemove.is() )
+ {
+ GetImport().GetTextImport()->ResetCursor();
+ xRemove->removeTextContentAfter( xTextContent );
+ }
+ }
+
GetImport().GetTextImport()->SetCursor( xOldTextCursor );
}
else if( !bLeft )