1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#include "PageMasterImportPropMapper.hxx"
#include "PageMasterPropMapper.hxx"
#include <xmloff/PageMasterStyleMap.hxx>
#include <xmloff/maptype.hxx>
#include <com/sun/star/table/BorderLine2.hpp>
#include <com/sun/star/container/XNameContainer.hpp>
#include <xmloff/xmlimp.hxx>
#define XML_LINE_LEFT 0
#define XML_LINE_RIGHT 1
#define XML_LINE_TOP 2
#define XML_LINE_BOTTOM 3
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::container;
PageMasterImportPropertyMapper::PageMasterImportPropertyMapper(
const UniReference< XMLPropertySetMapper >& rMapper,
SvXMLImport& rImp ) :
SvXMLImportPropertyMapper( rMapper, rImp ),
rImport( rImp )
{
}
PageMasterImportPropertyMapper::~PageMasterImportPropertyMapper()
{
}
bool PageMasterImportPropertyMapper::handleSpecialItem(
XMLPropertyState& rProperty,
::std::vector< XMLPropertyState >& rProperties,
const ::rtl::OUString& rValue,
const SvXMLUnitConverter& rUnitConverter,
const SvXMLNamespaceMap& rNamespaceMap ) const
{
sal_Bool bRet = sal_False;
sal_Int16 nContextID =
getPropertySetMapper()->GetEntryContextId(rProperty.mnIndex);
if( CTF_PM_REGISTER_STYLE==nContextID )
{
::rtl::OUString sDisplayName( rImport.GetStyleDisplayName(
XML_STYLE_FAMILY_TEXT_PARAGRAPH, rValue ) );
Reference < XNameContainer > xParaStyles =
rImport.GetTextImport()->GetParaStyles();
if( xParaStyles.is() && xParaStyles->hasByName( sDisplayName ) )
{
rProperty.maValue <<= sDisplayName;
bRet = sal_True;
}
}
else
{
bRet = SvXMLImportPropertyMapper::handleSpecialItem(
rProperty, rProperties, rValue,
rUnitConverter, rNamespaceMap );
}
return bRet;
}
void PageMasterImportPropertyMapper::finished(::std::vector< XMLPropertyState >& rProperties, sal_Int32 nStartIndex, sal_Int32 nEndIndex ) const
{
SvXMLImportPropertyMapper::finished(rProperties, nStartIndex, nEndIndex);
XMLPropertyState* pAllPaddingProperty = NULL;
XMLPropertyState* pPadding[4] = { NULL, NULL, NULL, NULL };
XMLPropertyState* pNewPadding[4] = { NULL, NULL, NULL, NULL };
XMLPropertyState* pAllBorderProperty = NULL;
XMLPropertyState* pBorders[4] = { NULL, NULL, NULL, NULL };
XMLPropertyState* pNewBorders[4] = { NULL, NULL, NULL, NULL };
XMLPropertyState* pAllBorderWidthProperty = NULL;
XMLPropertyState* pBorderWidths[4] = { NULL, NULL, NULL, NULL };
XMLPropertyState* pAllHeaderPaddingProperty = NULL;
XMLPropertyState* pHeaderPadding[4] = { NULL, NULL, NULL, NULL };
XMLPropertyState* pHeaderNewPadding[4] = { NULL, NULL, NULL, NULL };
XMLPropertyState* pAllHeaderBorderProperty = NULL;
XMLPropertyState* pHeaderBorders[4] = { NULL, NULL, NULL, NULL };
XMLPropertyState* pHeaderNewBorders[4] = { NULL, NULL, NULL, NULL };
XMLPropertyState* pAllHeaderBorderWidthProperty = NULL;
XMLPropertyState* pHeaderBorderWidths[4] = { NULL, NULL, NULL, NULL };
XMLPropertyState* pAllFooterPaddingProperty = NULL;
XMLPropertyState* pFooterPadding[4] = { NULL, NULL, NULL, NULL };
XMLPropertyState* pFooterNewPadding[4] = { NULL, NULL, NULL, NULL };
XMLPropertyState* pAllFooterBorderProperty = NULL;
XMLPropertyState* pFooterBorders[4] = { NULL, NULL, NULL, NULL };
XMLPropertyState* pFooterNewBorders[4] = { NULL, NULL, NULL, NULL };
XMLPropertyState* pAllFooterBorderWidthProperty = NULL;
XMLPropertyState* pFooterBorderWidths[4] = { NULL, NULL, NULL, NULL };
XMLPropertyState* pHeaderHeight = NULL;
XMLPropertyState* pHeaderMinHeight = NULL;
XMLPropertyState* pHeaderDynamic = NULL;
XMLPropertyState* pFooterHeight = NULL;
XMLPropertyState* pFooterMinHeight = NULL;
XMLPropertyState* pFooterDynamic = NULL;
XMLPropertyState* pAllMarginProperty = NULL;
XMLPropertyState* pMargins[4] = { NULL, NULL, NULL, NULL };
SAL_WNODEPRECATED_DECLARATIONS_PUSH
::std::auto_ptr<XMLPropertyState> pNewMargins[4];
SAL_WNODEPRECATED_DECLARATIONS_POP
XMLPropertyState* pAllHeaderMarginProperty = NULL;
XMLPropertyState* pHeaderMargins[4] = { NULL, NULL, NULL, NULL };
SAL_WNODEPRECATED_DECLARATIONS_PUSH
::std::auto_ptr<XMLPropertyState> pNewHeaderMargins[4];
SAL_WNODEPRECATED_DECLARATIONS_POP
XMLPropertyState* pAllFooterMarginProperty = NULL;
XMLPropertyState* pFooterMargins[4] = { NULL, NULL, NULL, NULL };
SAL_WNODEPRECATED_DECLARATIONS_PUSH
::std::auto_ptr<XMLPropertyState> pNewFooterMargins[4];
SAL_WNODEPRECATED_DECLARATIONS_POP
::std::vector< XMLPropertyState >::iterator aEnd = rProperties.end();
for (::std::vector< XMLPropertyState >::iterator aIter = rProperties.begin(); aIter != aEnd; ++aIter)
{
XMLPropertyState *property = &(*aIter);
sal_Int16 nContextID = getPropertySetMapper()->GetEntryContextId(property->mnIndex);
if (property->mnIndex >= nStartIndex && property->mnIndex < nEndIndex)
{
switch (nContextID)
{
case CTF_PM_PADDINGALL : pAllPaddingProperty = property; break;
case CTF_PM_PADDINGLEFT : pPadding[XML_LINE_LEFT] = property; break;
case CTF_PM_PADDINGRIGHT : pPadding[XML_LINE_RIGHT] = property; break;
case CTF_PM_PADDINGTOP : pPadding[XML_LINE_TOP] = property; break;
case CTF_PM_PADDINGBOTTOM : pPadding[XML_LINE_BOTTOM] = property; break;
case CTF_PM_BORDERALL : pAllBorderProperty = property; break;
case CTF_PM_BORDERLEFT : pBorders[XML_LINE_LEFT] = property; break;
case CTF_PM_BORDERRIGHT : pBorders[XML_LINE_RIGHT] = property; break;
case CTF_PM_BORDERTOP : pBorders[XML_LINE_TOP] = property; break;
case CTF_PM_BORDERBOTTOM : pBorders[XML_LINE_BOTTOM] = property; break;
case CTF_PM_BORDERWIDTHALL : pAllBorderWidthProperty = property; break;
case CTF_PM_BORDERWIDTHLEFT : pBorderWidths[XML_LINE_LEFT] = property; break;
case CTF_PM_BORDERWIDTHRIGHT : pBorderWidths[XML_LINE_RIGHT] = property; break;
case CTF_PM_BORDERWIDTHTOP : pBorderWidths[XML_LINE_TOP] = property; break;
case CTF_PM_BORDERWIDTHBOTTOM : pBorderWidths[XML_LINE_BOTTOM] = property; break;
case CTF_PM_HEADERPADDINGALL : pAllHeaderPaddingProperty = property; break;
case CTF_PM_HEADERPADDINGLEFT : pHeaderPadding[XML_LINE_LEFT] = property; break;
case CTF_PM_HEADERPADDINGRIGHT : pHeaderPadding[XML_LINE_RIGHT] = property; break;
case CTF_PM_HEADERPADDINGTOP : pHeaderPadding[XML_LINE_TOP] = property; break;
case CTF_PM_HEADERPADDINGBOTTOM : pHeaderPadding[XML_LINE_BOTTOM] = property; break;
case CTF_PM_HEADERBORDERALL : pAllHeaderBorderProperty = property; break;
case CTF_PM_HEADERBORDERLEFT : pHeaderBorders[XML_LINE_LEFT] = property; break;
case CTF_PM_HEADERBORDERRIGHT : pHeaderBorders[XML_LINE_RIGHT] = property; break;
case CTF_PM_HEADERBORDERTOP : pHeaderBorders[XML_LINE_TOP] = property; break;
case CTF_PM_HEADERBORDERBOTTOM : pHeaderBorders[XML_LINE_BOTTOM] = property; break;
case CTF_PM_HEADERBORDERWIDTHALL : pAllHeaderBorderWidthProperty = property; break;
case CTF_PM_HEADERBORDERWIDTHLEFT : pHeaderBorderWidths[XML_LINE_LEFT] = property; break;
case CTF_PM_HEADERBORDERWIDTHRIGHT : pHeaderBorderWidths[XML_LINE_RIGHT] = property; break;
case CTF_PM_HEADERBORDERWIDTHTOP : pHeaderBorderWidths[XML_LINE_TOP] = property; break;
case CTF_PM_HEADERBORDERWIDTHBOTTOM : pHeaderBorderWidths[XML_LINE_BOTTOM] = property; break;
case CTF_PM_FOOTERPADDINGALL : pAllFooterPaddingProperty = property; break;
case CTF_PM_FOOTERPADDINGLEFT : pFooterPadding[XML_LINE_LEFT] = property; break;
case CTF_PM_FOOTERPADDINGRIGHT : pFooterPadding[XML_LINE_RIGHT] = property; break;
case CTF_PM_FOOTERPADDINGTOP : pFooterPadding[XML_LINE_TOP] = property; break;
case CTF_PM_FOOTERPADDINGBOTTOM : pFooterPadding[XML_LINE_BOTTOM] = property; break;
case CTF_PM_FOOTERBORDERALL : pAllFooterBorderProperty = property; break;
case CTF_PM_FOOTERBORDERLEFT : pFooterBorders[XML_LINE_LEFT] = property; break;
case CTF_PM_FOOTERBORDERRIGHT : pFooterBorders[XML_LINE_RIGHT] = property; break;
case CTF_PM_FOOTERBORDERTOP : pFooterBorders[XML_LINE_TOP] = property; break;
case CTF_PM_FOOTERBORDERBOTTOM : pFooterBorders[XML_LINE_BOTTOM] = property; break;
case CTF_PM_FOOTERBORDERWIDTHALL : pAllFooterBorderWidthProperty = property; break;
case CTF_PM_FOOTERBORDERWIDTHLEFT : pFooterBorderWidths[XML_LINE_LEFT] = property; break;
case CTF_PM_FOOTERBORDERWIDTHRIGHT : pFooterBorderWidths[XML_LINE_RIGHT] = property; break;
case CTF_PM_FOOTERBORDERWIDTHTOP : pFooterBorderWidths[XML_LINE_TOP] = property; break;
case CTF_PM_FOOTERBORDERWIDTHBOTTOM : pFooterBorderWidths[XML_LINE_BOTTOM] = property; break;
case CTF_PM_HEADERHEIGHT : pHeaderHeight = property; break;
case CTF_PM_HEADERMINHEIGHT : pHeaderMinHeight = property; break;
case CTF_PM_FOOTERHEIGHT : pFooterHeight = property; break;
case CTF_PM_FOOTERMINHEIGHT : pFooterMinHeight = property; break;
case CTF_PM_MARGINALL :
pAllMarginProperty = property; break;
case CTF_PM_MARGINTOP :
pMargins[XML_LINE_TOP] = property; break;
case CTF_PM_MARGINBOTTOM:
pMargins[XML_LINE_BOTTOM] = property; break;
case CTF_PM_MARGINLEFT :
pMargins[XML_LINE_LEFT] = property; break;
case CTF_PM_MARGINRIGHT :
pMargins[XML_LINE_RIGHT] = property; break;
case CTF_PM_HEADERMARGINALL :
pAllHeaderMarginProperty = property; break;
case CTF_PM_HEADERMARGINTOP :
pHeaderMargins[XML_LINE_TOP] = property; break;
case CTF_PM_HEADERMARGINBOTTOM:
pHeaderMargins[XML_LINE_BOTTOM] = property; break;
case CTF_PM_HEADERMARGINLEFT :
pHeaderMargins[XML_LINE_LEFT] = property; break;
case CTF_PM_HEADERMARGINRIGHT :
pHeaderMargins[XML_LINE_RIGHT] = property; break;
case CTF_PM_FOOTERMARGINALL :
pAllFooterMarginProperty = property; break;
case CTF_PM_FOOTERMARGINTOP :
pFooterMargins[XML_LINE_TOP] = property; break;
case CTF_PM_FOOTERMARGINBOTTOM:
pFooterMargins[XML_LINE_BOTTOM] = property; break;
case CTF_PM_FOOTERMARGINLEFT :
pFooterMargins[XML_LINE_LEFT] = property; break;
case CTF_PM_FOOTERMARGINRIGHT :
pFooterMargins[XML_LINE_RIGHT] = property; break;
}
}
}
for (sal_uInt16 i = 0; i < 4; i++)
{
if (pAllMarginProperty && !pMargins[i])
{
pNewMargins[i].reset(new XMLPropertyState(
pAllMarginProperty->mnIndex + 1 + i,
pAllMarginProperty->maValue));
}
if (pAllHeaderMarginProperty && !pHeaderMargins[i])
{
pNewHeaderMargins[i].reset(new XMLPropertyState(
pAllHeaderMarginProperty->mnIndex + 1 + i,
pAllHeaderMarginProperty->maValue));
}
if (pAllFooterMarginProperty && !pFooterMargins[i])
{
pNewFooterMargins[i].reset(new XMLPropertyState(
pAllFooterMarginProperty->mnIndex + 1 + i,
pAllFooterMarginProperty->maValue));
}
if (pAllPaddingProperty && !pPadding[i])
pNewPadding[i] = new XMLPropertyState(pAllPaddingProperty->mnIndex + 1 + i, pAllPaddingProperty->maValue);
if (pAllBorderProperty && !pBorders[i])
{
pNewBorders[i] = new XMLPropertyState(pAllBorderProperty->mnIndex + 1 + i, pAllBorderProperty->maValue);
pBorders[i] = pNewBorders[i];
}
if( !pBorderWidths[i] )
pBorderWidths[i] = pAllBorderWidthProperty;
else
pBorderWidths[i]->mnIndex = -1;
if( pBorders[i] )
{
table::BorderLine2 aBorderLine;
pBorders[i]->maValue >>= aBorderLine;
if( pBorderWidths[i] )
{
table::BorderLine2 aBorderLineWidth;
pBorderWidths[i]->maValue >>= aBorderLineWidth;
aBorderLine.OuterLineWidth = aBorderLineWidth.OuterLineWidth;
aBorderLine.InnerLineWidth = aBorderLineWidth.InnerLineWidth;
aBorderLine.LineDistance = aBorderLineWidth.LineDistance;
aBorderLine.LineWidth = aBorderLineWidth.LineWidth;
pBorders[i]->maValue <<= aBorderLine;
}
}
if (pAllHeaderPaddingProperty && !pHeaderPadding[i])
pHeaderNewPadding[i] = new XMLPropertyState(pAllHeaderPaddingProperty->mnIndex + 1 + i, pAllHeaderPaddingProperty->maValue);
if (pAllHeaderBorderProperty && !pHeaderBorders[i])
pHeaderNewBorders[i] = new XMLPropertyState(pAllHeaderBorderProperty->mnIndex + 1 + i, pAllHeaderBorderProperty->maValue);
if( !pHeaderBorderWidths[i] )
pHeaderBorderWidths[i] = pAllHeaderBorderWidthProperty;
else
pHeaderBorderWidths[i]->mnIndex = -1;
if( pHeaderBorders[i] )
{
table::BorderLine2 aBorderLine;
pHeaderBorders[i]->maValue >>= aBorderLine;
if( pHeaderBorderWidths[i] )
{
table::BorderLine2 aBorderLineWidth;
pHeaderBorderWidths[i]->maValue >>= aBorderLineWidth;
aBorderLine.OuterLineWidth = aBorderLineWidth.OuterLineWidth;
aBorderLine.InnerLineWidth = aBorderLineWidth.InnerLineWidth;
aBorderLine.LineDistance = aBorderLineWidth.LineDistance;
aBorderLine.LineWidth = aBorderLineWidth.LineWidth;
pHeaderBorders[i]->maValue <<= aBorderLine;
}
}
if (pAllFooterPaddingProperty && !pFooterPadding[i])
pFooterNewPadding[i] = new XMLPropertyState(pAllFooterPaddingProperty->mnIndex + 1 + i, pAllFooterPaddingProperty->maValue);
if (pAllFooterBorderProperty && !pFooterBorders[i])
pFooterNewBorders[i] = new XMLPropertyState(pAllFooterBorderProperty->mnIndex + 1 + i, pAllFooterBorderProperty->maValue);
if( !pFooterBorderWidths[i] )
pFooterBorderWidths[i] = pAllFooterBorderWidthProperty;
else
pFooterBorderWidths[i]->mnIndex = -1;
if( pFooterBorders[i] )
{
table::BorderLine2 aBorderLine;
pFooterBorders[i]->maValue >>= aBorderLine;
if( pFooterBorderWidths[i] )
{
table::BorderLine2 aBorderLineWidth;
pFooterBorderWidths[i]->maValue >>= aBorderLineWidth;
aBorderLine.OuterLineWidth = aBorderLineWidth.OuterLineWidth;
aBorderLine.InnerLineWidth = aBorderLineWidth.InnerLineWidth;
aBorderLine.LineDistance = aBorderLineWidth.LineDistance;
aBorderLine.LineWidth = aBorderLineWidth.LineWidth;
pFooterBorders[i]->maValue <<= aBorderLine;
}
}
}
if (pHeaderHeight)
{
sal_Bool bValue(sal_False);
uno::Any aAny;
aAny.setValue( &bValue, ::getBooleanCppuType() );
pHeaderDynamic = new XMLPropertyState(pHeaderHeight->mnIndex + 2, aAny);
}
if (pHeaderMinHeight)
{
sal_Bool bValue(sal_True);
uno::Any aAny;
aAny.setValue( &bValue, ::getBooleanCppuType() );
pHeaderDynamic = new XMLPropertyState(pHeaderMinHeight->mnIndex + 1, aAny);
}
if (pFooterHeight)
{
sal_Bool bValue(sal_False);
uno::Any aAny;
aAny.setValue( &bValue, ::getBooleanCppuType() );
pFooterDynamic = new XMLPropertyState(pFooterHeight->mnIndex + 2, aAny);
}
if (pFooterMinHeight)
{
sal_Bool bValue(sal_True);
uno::Any aAny;
aAny.setValue( &bValue, ::getBooleanCppuType() );
pFooterDynamic = new XMLPropertyState(pFooterMinHeight->mnIndex + 1, aAny);
}
for (sal_uInt16 i = 0; i < 4; i++)
{
if (pNewMargins[i].get())
{
rProperties.push_back(*pNewMargins[i]);
}
if (pNewHeaderMargins[i].get())
{
rProperties.push_back(*pNewHeaderMargins[i]);
}
if (pNewFooterMargins[i].get())
{
rProperties.push_back(*pNewFooterMargins[i]);
}
if (pNewPadding[i])
{
rProperties.push_back(*pNewPadding[i]);
delete pNewPadding[i];
}
if (pNewBorders[i])
{
rProperties.push_back(*pNewBorders[i]);
delete pNewBorders[i];
}
if (pHeaderNewPadding[i])
{
rProperties.push_back(*pHeaderNewPadding[i]);
delete pHeaderNewPadding[i];
}
if (pHeaderNewBorders[i])
{
rProperties.push_back(*pHeaderNewBorders[i]);
delete pHeaderNewBorders[i];
}
if (pFooterNewPadding[i])
{
rProperties.push_back(*pFooterNewPadding[i]);
delete pFooterNewPadding[i];
}
if (pFooterNewBorders[i])
{
rProperties.push_back(*pFooterNewBorders[i]);
delete pFooterNewBorders[i];
}
}
if(pHeaderDynamic)
{
rProperties.push_back(*pHeaderDynamic);
delete pHeaderDynamic;
}
if(pFooterDynamic)
{
rProperties.push_back(*pFooterDynamic);
delete pFooterDynamic;
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|